9d91bf5dd4a46db242516eb6ebdad6c1324a22b9
[openssl.git] / crypto / bf / Makefile.ssl
1 #
2 # SSLeay/crypto/blowfish/Makefile
3 #
4
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 MAKE=           make -f Makefile.ssl
15 MAKEDEPPROG=    makedepend
16 MAKEDEPEND=     $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
17 MAKEFILE=       Makefile.ssl
18 AR=             ar r
19
20 BF_ENC=         bf_enc.o
21 # or use
22 #DES_ENC=       bx86-elf.o
23
24 CFLAGS= $(INCLUDES) $(CFLAG)
25 ASFLAGS= $(INCLUDES) $(ASFLAG)
26
27 GENERAL=Makefile
28 TEST=bftest.c
29 APPS=
30
31 LIB=$(TOP)/libcrypto.a
32 LIBSRC=bf_skey.c bf_ecb.c bf_enc.c bf_cfb64.c bf_ofb64.c 
33 LIBOBJ=bf_skey.o bf_ecb.o $(BF_ENC) bf_cfb64.o bf_ofb64.o
34
35 SRC= $(LIBSRC)
36
37 EXHEADER= blowfish.h
38 HEADER= bf_pi.h bf_locl.h $(EXHEADER)
39
40 ALL=    $(GENERAL) $(SRC) $(HEADER)
41
42 top:
43         (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
44
45 all:    lib
46
47 lib:    $(LIBOBJ)
48         $(AR) $(LIB) $(LIBOBJ)
49         $(RANLIB) $(LIB) || echo Never mind.
50         @touch lib
51
52 # ELF
53 asm/bx86-elf.s: asm/bf-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl
54         (cd asm; $(PERL) bf-586.pl elf $(CFLAGS) $(PROCESSOR) > ../$@)
55 # COFF
56 asm/bx86-cof.s: asm/bf-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl
57         (cd asm; $(PERL) bf-586.pl coff $(CFLAGS) $(PROCESSOR) > ../$@)
58 # a.out
59 asm/bx86-out.o: asm/bf-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl
60         (cd asm; $(PERL) bf-586.pl a.out $(CFLAGS) $(PROCESSOR) | as -o ../$@)
61
62 files:
63         $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
64
65 links:
66         @sh $(TOP)/util/point.sh Makefile.ssl Makefile
67         @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
68         @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
69         @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
70
71 install: installs
72
73 installs:
74         @for i in $(EXHEADER) ; \
75         do  \
76         (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
77         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
78         done;
79
80 tags:
81         ctags $(SRC)
82
83 tests:
84
85 lint:
86         lint -DLINT $(INCLUDES) $(SRC)>fluff
87
88 depend:
89         $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
90
91 dclean:
92         $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
93         mv -f Makefile.new $(MAKEFILE)
94
95 clean:
96         rm -f asm/bx86unix.cpp asm/*.s *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
97
98 # DO NOT DELETE THIS LINE -- make depend depends on it.
99
100 bf_cfb64.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h
101 bf_cfb64.o: ../../include/openssl/opensslconf.h bf_cfb64.c bf_locl.h
102 bf_ecb.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h
103 bf_ecb.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
104 bf_ecb.o: bf_ecb.c bf_locl.h
105 bf_enc.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h
106 bf_enc.o: ../../include/openssl/opensslconf.h bf_enc.c bf_locl.h
107 bf_ofb64.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h
108 bf_ofb64.o: ../../include/openssl/opensslconf.h bf_locl.h bf_ofb64.c
109 bf_skey.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h
110 bf_skey.o: ../../include/openssl/opensslconf.h bf_locl.h bf_pi.h bf_skey.c