Makefile.ssl 3.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
#
# SSLeay/crypto/blowfish/Makefile
#

DIR=	bf
TOP=	../..
CC=	cc
CPP=	$(CC) -E
INCLUDES=
CFLAG=-g
11 12
INSTALL_PREFIX=
OPENSSLDIR=     /usr/local/ssl
13 14
INSTALLTOP=/usr/local/ssl
MAKE=		make -f Makefile.ssl
15 16
MAKEDEPPROG=	makedepend
MAKEDEPEND=	$(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
17 18 19 20 21 22 23 24 25 26 27 28 29 30
MAKEFILE=	Makefile.ssl
AR=		ar r

BF_ENC=		bf_enc.o
# or use
#DES_ENC=	bx86-elf.o

CFLAGS= $(INCLUDES) $(CFLAG)

GENERAL=Makefile
TEST=bftest.c
APPS=

LIB=$(TOP)/libcrypto.a
31 32
LIBSRC=bf_skey.c bf_ecb.c bf_enc.c bf_cfb64.c bf_ofb64.c 
LIBOBJ=bf_skey.o bf_ecb.o $(BF_ENC) bf_cfb64.o bf_ofb64.o
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47

SRC= $(LIBSRC)

EXHEADER= blowfish.h
HEADER=	bf_pi.h bf_locl.h $(EXHEADER)

ALL=    $(GENERAL) $(SRC) $(HEADER)

top:
	(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)

all:	lib

lib:	$(LIBOBJ)
	$(AR) $(LIB) $(LIBOBJ)
48
	$(RANLIB) $(LIB) || echo Never mind.
49 50 51
	@touch lib

# elf
52
asm/bx86-elf.o: asm/bx86unix.cpp
U
Ulf Möller 已提交
53
	$(CPP) -DELF -x c asm/bx86unix.cpp | as -o asm/bx86-elf.o
54 55

# solaris
56
asm/bx86-sol.o: asm/bx86unix.cpp
57 58 59 60 61
	$(CC) -E -DSOL asm/bx86unix.cpp | sed 's/^#.*//' > asm/bx86-sol.s
	as -o asm/bx86-sol.o asm/bx86-sol.s
	rm -f asm/bx86-sol.s

# a.out
62
asm/bx86-out.o: asm/bx86unix.cpp
63 64 65
	$(CPP) -DOUT asm/bx86unix.cpp | as -o asm/bx86-out.o

# bsdi
66
asm/bx86bsdi.o: asm/bx86unix.cpp
67
	$(CPP) -DBSDI asm/bx86unix.cpp | sed 's/ :/:/' | as -o asm/bx86bsdi.o
68

B
Bodo Möller 已提交
69
asm/bx86unix.cpp: asm/bf-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl
70
	(cd asm; $(PERL) bf-586.pl cpp $(PROCESSOR) >bx86unix.cpp)
71

72
files:
73
	$(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
74 75

links:
76
	@$(TOP)/util/point.sh Makefile.ssl Makefile
77 78 79
	@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
	@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
	@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
80

81 82 83
install: installs

installs:
84 85
	@for i in $(EXHEADER) ; \
	do  \
86 87
	(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
88 89 90 91 92 93 94 95 96 97 98
	done;

tags:
	ctags $(SRC)

tests:

lint:
	lint -DLINT $(INCLUDES) $(SRC)>fluff

depend:
99
	$(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC)
100 101

dclean:
102
	$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
103 104 105
	mv -f Makefile.new $(MAKEFILE)

clean:
B
Bodo Möller 已提交
106
	rm -f asm/bx86unix.cpp *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
107 108

# DO NOT DELETE THIS LINE -- make depend depends on it.
B
Ben Laurie 已提交
109

110
bf_cfb64.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h
111
bf_cfb64.o: ../../include/openssl/opensslconf.h bf_locl.h
112 113
bf_ecb.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h
bf_ecb.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
114
bf_ecb.o: bf_locl.h
115
bf_enc.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h
116
bf_enc.o: ../../include/openssl/opensslconf.h bf_locl.h
117
bf_ofb64.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h
118
bf_ofb64.o: ../../include/openssl/opensslconf.h bf_locl.h
119
bf_skey.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h
120
bf_skey.o: ../../include/openssl/opensslconf.h bf_locl.h bf_pi.h