Sort openssl.ec, the configuration file for mkerr.pl.
[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
26 GENERAL=Makefile
27 TEST=bftest.c
28 APPS=
29
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
33
34 SRC= $(LIBSRC)
35
36 EXHEADER= blowfish.h
37 HEADER= bf_pi.h bf_locl.h $(EXHEADER)
38
39 ALL=    $(GENERAL) $(SRC) $(HEADER)
40
41 top:
42         (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
43
44 all:    lib
45
46 lib:    $(LIBOBJ)
47         $(AR) $(LIB) $(LIBOBJ)
48         @echo You may get an error following this line.  Please ignore.
49         - $(RANLIB) $(LIB)
50         @touch lib
51
52 # elf
53 asm/bx86-elf.o: asm/bx86unix.cpp
54         $(CPP) -DELF -x c asm/bx86unix.cpp | as -o asm/bx86-elf.o
55
56 # solaris
57 asm/bx86-sol.o: asm/bx86unix.cpp
58         $(CC) -E -DSOL asm/bx86unix.cpp | sed 's/^#.*//' > asm/bx86-sol.s
59         as -o asm/bx86-sol.o asm/bx86-sol.s
60         rm -f asm/bx86-sol.s
61
62 # a.out
63 asm/bx86-out.o: asm/bx86unix.cpp
64         $(CPP) -DOUT asm/bx86unix.cpp | as -o asm/bx86-out.o
65
66 # bsdi
67 asm/bx86bsdi.o: asm/bx86unix.cpp
68         $(CPP) -DBSDI asm/bx86unix.cpp | sed 's/ :/:/' | as -o asm/bx86bsdi.o
69
70 asm/bx86unix.cpp: asm/bf-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl
71         (cd asm; $(PERL) bf-586.pl cpp $(PROCESSOR) >bx86unix.cpp)
72
73 files:
74         $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
75
76 links:
77         @$(TOP)/util/point.sh Makefile.ssl Makefile
78         @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
79         @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
80         @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
81
82 install: installs
83
84 installs:
85         @for i in $(EXHEADER) ; \
86         do  \
87         (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
88         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
89         done;
90
91 tags:
92         ctags $(SRC)
93
94 tests:
95
96 lint:
97         lint -DLINT $(INCLUDES) $(SRC)>fluff
98
99 depend:
100         $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC)
101
102 dclean:
103         $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
104         mv -f Makefile.new $(MAKEFILE)
105
106 clean:
107         rm -f asm/bx86unix.cpp *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
108
109 # DO NOT DELETE THIS LINE -- make depend depends on it.
110
111 bf_cfb64.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h
112 bf_cfb64.o: ../../include/openssl/opensslconf.h bf_cfb64.c bf_locl.h
113 bf_ecb.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h
114 bf_ecb.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
115 bf_ecb.o: bf_ecb.c bf_locl.h
116 bf_enc.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h
117 bf_enc.o: ../../include/openssl/opensslconf.h bf_enc.c bf_locl.h
118 bf_ofb64.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h
119 bf_ofb64.o: ../../include/openssl/opensslconf.h bf_locl.h bf_ofb64.c
120 bf_skey.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h
121 bf_skey.o: ../../include/openssl/opensslconf.h bf_locl.h bf_pi.h bf_skey.c