Import OpenSSL-0.9.8i.
[dragonfly.git] / crypto / openssl-0.9.7e / crypto / bf / Makefile
blob0a2a4439dcf9ee2fc0bf707eadf6392b386864de
2 # SSLeay/crypto/blowfish/Makefile
5 DIR= bf
6 TOP= ../..
7 CC= cc
8 CPP= $(CC) -E
9 INCLUDES=
10 CFLAG=-g
11 INSTALL_PREFIX=
12 OPENSSLDIR= /usr/local/ssl
13 INSTALLTOP=/usr/local/ssl
14 MAKEDEPPROG= makedepend
15 MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
16 MAKEFILE= Makefile
17 AR= ar r
19 BF_ENC= bf_enc.o
20 # or use
21 #DES_ENC= bx86-elf.o
23 CFLAGS= $(INCLUDES) $(CFLAG)
24 ASFLAGS= $(INCLUDES) $(ASFLAG)
26 GENERAL=Makefile
27 TEST=bftest.c
28 APPS=
30 LIB=$(TOP)/libcrypto.a
31 LIBSRC=bf_skey.c bf_ecb.c bf_enc.c bf_cfb64.c bf_ofb64.c
32 LIBOBJ=bf_skey.o bf_ecb.o $(BF_ENC) bf_cfb64.o bf_ofb64.o
34 SRC= $(LIBSRC)
36 EXHEADER= blowfish.h
37 HEADER= bf_pi.h bf_locl.h $(EXHEADER)
39 ALL= $(GENERAL) $(SRC) $(HEADER)
41 top:
42 (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
44 all: lib
46 lib: $(LIBOBJ)
47 $(AR) $(LIB) $(LIBOBJ)
48 $(RANLIB) $(LIB) || echo Never mind.
49 @touch lib
51 # elf
52 asm/bx86-elf.s: asm/bf-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl
53 (cd asm; $(PERL) bf-586.pl elf $(CFLAGS) $(PROCESSOR) > bx86-elf.s)
55 # a.out
56 asm/bx86-out.o: asm/bx86unix.cpp
57 $(CPP) -DOUT asm/bx86unix.cpp | as -o asm/bx86-out.o
59 # bsdi
60 asm/bx86bsdi.o: asm/bx86unix.cpp
61 $(CPP) -DBSDI asm/bx86unix.cpp | sed 's/ :/:/' | as -o asm/bx86bsdi.o
63 asm/bx86unix.cpp: asm/bf-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl
64 (cd asm; $(PERL) bf-586.pl cpp $(PROCESSOR) >bx86unix.cpp)
66 files:
67 $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
69 links:
70 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
71 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
72 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
74 install: installs
76 installs:
77 @for i in $(EXHEADER) ; \
78 do \
79 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
80 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
81 done;
83 tags:
84 ctags $(SRC)
86 tests:
88 lint:
89 lint -DLINT $(INCLUDES) $(SRC)>fluff
91 depend:
92 $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
94 dclean:
95 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
96 mv -f Makefile.new $(MAKEFILE)
98 clean:
99 rm -f asm/bx86unix.cpp asm/*-elf.* *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
101 # DO NOT DELETE THIS LINE -- make depend depends on it.
103 bf_cfb64.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h
104 bf_cfb64.o: ../../include/openssl/opensslconf.h bf_cfb64.c bf_locl.h
105 bf_ecb.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h
106 bf_ecb.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
107 bf_ecb.o: bf_ecb.c bf_locl.h
108 bf_enc.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h
109 bf_enc.o: ../../include/openssl/opensslconf.h bf_enc.c bf_locl.h
110 bf_ofb64.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h
111 bf_ofb64.o: ../../include/openssl/opensslconf.h bf_locl.h bf_ofb64.c
112 bf_skey.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h
113 bf_skey.o: ../../include/openssl/opensslconf.h bf_locl.h bf_pi.h bf_skey.c