Give everything prototypes (well, everything that's actually used).
[openssl.git] / crypto / Makefile
1 #
2 # SSLeay/crypto/Makefile
3 #
4
5 DIR=            crypto
6 TOP=            ..
7 CC=             cc
8 INCLUDE=        -I. -I$(TOP) -I../include
9 INCLUDES=       -I.. -I../.. -I../../include
10 CFLAG=          -g
11 INSTALL_PREFIX=
12 OPENSSLDIR=     /usr/local/ssl
13 INSTALLTOP=     /usr/local/ssl
14 MAKE=           make
15 MAKEDEPPROG=    makedepend
16 MAKEDEPEND=     $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
17 MAKEFILE=       Makefile
18 RM=             rm -f
19 AR=             ar r
20
21 PEX_LIBS=
22 EX_LIBS=
23  
24 CFLAGS= $(INCLUDE) $(CFLAG)
25 ASFLAGS= $(INCLUDE) $(ASFLAG)
26 AFLAGS=$(ASFLAGS)
27
28 LIBS=
29
30 SDIRS=  objects \
31         md2 md4 md5 sha mdc2 hmac ripemd \
32         des rc2 rc4 rc5 idea bf cast \
33         bn ec rsa dsa ecdsa ecdh dh dso engine aes \
34         buffer bio stack lhash rand err \
35         evp asn1 pem x509 x509v3 conf txt_db pkcs7 pkcs12 comp ocsp ui krb5 \
36         store
37
38 GENERAL=Makefile README crypto-lib.com install.com
39
40 LIB= $(TOP)/libcrypto.a
41 SHARED_LIB= libcrypto$(SHLIB_EXT)
42 LIBSRC= cryptlib.c mem.c mem_clr.c mem_dbg.c cversion.c ex_data.c tmdiff.c cpt_err.c ebcdic.c uid.c o_time.c o_str.c o_dir.c
43 LIBOBJ= cryptlib.o mem.o mem_clr.o mem_dbg.o cversion.o ex_data.o tmdiff.o cpt_err.o ebcdic.o uid.o o_time.o o_str.o o_dir.o $(CPUID_OBJ)
44
45 SRC= $(LIBSRC)
46
47 EXHEADER= crypto.h tmdiff.h opensslv.h opensslconf.h ebcdic.h symhacks.h \
48         ossl_typ.h
49 HEADER= cryptlib.h buildinf.h md32_common.h o_time.h o_str.h o_dir.h $(EXHEADER)
50
51 ALL=    $(GENERAL) $(SRC) $(HEADER)
52
53 top:
54         @(cd ..; $(MAKE) DIRS=$(DIR) all)
55
56 all: shared
57
58 buildinf.h: ../Makefile
59         ( echo "#ifndef MK1MF_BUILD"; \
60         echo '  /* auto-generated by crypto/Makefile for crypto/cversion.c */'; \
61         echo '  #define CFLAGS "$(CC) $(CFLAG)"'; \
62         echo '  #define PLATFORM "$(PLATFORM)"'; \
63         echo "  #define DATE \"`LC_ALL=C LC_TIME=C date`\""; \
64         echo '#endif' ) >buildinf.h
65
66 x86cpuid-elf.s: x86cpuid.pl perlasm/x86asm.pl
67         $(PERL) x86cpuid.pl elf $(CFLAGS) $(PROCESSOR) > $@
68 x86cpuid-cof.s: x86cpuid.pl perlasm/x86asm.pl
69         $(PERL) x86cpuid.pl coff $(CFLAGS) $(PROCESSOR) > $@
70 x86cpuid-out.s: x86cpuid.pl perlasm/x86asm.pl
71         $(PERL) x86cpuid.pl a.out $(CFLAGS) $(PROCESSOR) > $@
72
73 amd64cpuid.s: amd64cpuid.pl
74         $(PERL) amd64cpuid.pl $@
75 ia64cpuid.s: ia64cpuid.S
76         $(CC) $(CFLAGS) -E ia64cpuid.S > $@
77
78 testapps:
79         if echo ${SDIRS} | fgrep ' des '; \
80         then cd des && $(MAKE) CC='$(CC)' INCLUDES='${INCLUDES}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' AR='${AR}' PROCESSOR='${PROCESSOR}' PERL='${PERL}' RANLIB='${RANLIB}' des; fi
81         if echo ${SDIRS} | fgrep ' pkcs7 '; \
82         then cd pkcs7 && $(MAKE) CC='$(CC)' INCLUDES='${INCLUDES}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' AR='${AR}' PROCESSOR='${PROCESSOR}' PERL='${PERL}' RANLIB='${RANLIB}' testapps; fi
83
84 subdirs:
85         @for i in $(SDIRS) ;\
86         do \
87         (cd $$i && echo "making all in crypto/$$i..." && \
88         $(MAKE) -e INCLUDES='${INCLUDES}' all ) || exit 1; \
89         done;
90
91 files:
92         $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
93         @for i in $(SDIRS) ;\
94         do \
95         (cd $$i && echo "making 'files' in crypto/$$i..." && \
96         $(MAKE) PERL='${PERL}' files ); \
97         done;
98
99 links:
100         @$(PERL) $(TOP)/util/mklink.pl ../include/openssl $(EXHEADER)
101         @$(PERL) $(TOP)/util/mklink.pl ../test $(TEST)
102         @$(PERL) $(TOP)/util/mklink.pl ../apps $(APPS)
103         @for i in $(SDIRS); do \
104         (cd $$i && echo "making links in crypto/$$i..." && \
105         $(MAKE) CC='$(CC)' INCLUDES='${INCLUDES}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' AR='${AR}' PERL='${PERL}' links ); \
106         done;
107
108 lib:    $(LIBOBJ)
109         $(AR) $(LIB) $(LIBOBJ)
110         $(RANLIB) $(LIB) || echo Never mind.
111         @touch lib
112
113 shared: buildinf.h lib subdirs
114         if [ -n "$(SHARED_LIBS)" ]; then \
115                 (cd ..; $(MAKE) $(SHARED_LIB)); \
116         fi
117
118 libs:
119         @for i in $(SDIRS) ;\
120         do \
121         (cd $$i && echo "making libs in crypto/$$i..." && \
122         $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALL_PREFIX='${INSTALL_PREFIX}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' AR='${AR}' lib ); \
123         done;
124
125 tests:
126         @for i in $(SDIRS) ;\
127         do \
128         (cd $$i && echo "making tests in crypto/$$i..." && \
129         $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' AR='${AR}' tests ); \
130         done;
131
132 install:
133         @headerlist="$(EXHEADER)"; for i in $$headerlist ;\
134         do \
135         (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
136         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
137         done;
138         @for i in $(SDIRS) ;\
139         do \
140         (cd $$i && echo "making install in crypto/$$i..." && \
141         $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALL_PREFIX='${INSTALL_PREFIX}'  INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' install ); \
142         done;
143
144 lint:
145         @for i in $(SDIRS) ;\
146         do \
147         (cd $$i && echo "making lint in crypto/$$i..." && \
148         $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' lint ); \
149         done;
150
151 depend:
152         if [ ! -f buildinf.h ]; then touch buildinf.h; fi # fake buildinf.h if it does not exist
153         $(MAKEDEPEND) -- $(CFLAG) $(INCLUDE) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
154         if [ ! -s buildinf.h ]; then rm buildinf.h; fi
155         @for i in $(SDIRS) ;\
156         do \
157         (cd $$i && echo "making depend in crypto/$$i..." && \
158         $(MAKE) MAKEFILE='${MAKEFILE}' INCLUDES='${INCLUDES}' CFLAG='${CFLAG}' DEPFLAG='${DEPFLAG}' MAKEDEPPROG='${MAKEDEPPROG}' KRB5_INCLUDES='${KRB5_INCLUDES}' PERL='${PERL}' depend ); \
159         done;
160
161 clean:
162         rm -f buildinf.h *.s *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
163         @for i in $(SDIRS) ;\
164         do \
165         (cd $$i && echo "making clean in crypto/$$i..." && \
166         $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' clean ); \
167         done;
168
169 dclean:
170         $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
171         mv -f Makefile.new $(MAKEFILE)
172         @for i in $(SDIRS) ;\
173         do \
174         (cd $$i && echo "making dclean in crypto/$$i..." && \
175         $(MAKE) PERL='${PERL}' CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' dclean ); \
176         done;
177
178 # DO NOT DELETE THIS LINE -- make depend depends on it.
179
180 cpt_err.o: ../include/openssl/bio.h ../include/openssl/crypto.h
181 cpt_err.o: ../include/openssl/e_os2.h ../include/openssl/err.h
182 cpt_err.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h
183 cpt_err.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
184 cpt_err.o: ../include/openssl/safestack.h ../include/openssl/stack.h
185 cpt_err.o: ../include/openssl/symhacks.h cpt_err.c
186 cryptlib.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
187 cryptlib.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
188 cryptlib.o: ../include/openssl/err.h ../include/openssl/lhash.h
189 cryptlib.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
190 cryptlib.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
191 cryptlib.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cryptlib.c
192 cryptlib.o: cryptlib.h
193 cversion.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
194 cversion.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
195 cversion.o: ../include/openssl/err.h ../include/openssl/lhash.h
196 cversion.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
197 cversion.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
198 cversion.o: ../include/openssl/stack.h ../include/openssl/symhacks.h buildinf.h
199 cversion.o: cryptlib.h cversion.c
200 ebcdic.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h ebcdic.c
201 ex_data.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
202 ex_data.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
203 ex_data.o: ../include/openssl/err.h ../include/openssl/lhash.h
204 ex_data.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
205 ex_data.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
206 ex_data.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cryptlib.h
207 ex_data.o: ex_data.c
208 mem.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
209 mem.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
210 mem.o: ../include/openssl/err.h ../include/openssl/lhash.h
211 mem.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
212 mem.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
213 mem.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cryptlib.h
214 mem.o: mem.c
215 mem_clr.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
216 mem_clr.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
217 mem_clr.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
218 mem_clr.o: ../include/openssl/stack.h ../include/openssl/symhacks.h mem_clr.c
219 mem_dbg.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
220 mem_dbg.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
221 mem_dbg.o: ../include/openssl/err.h ../include/openssl/lhash.h
222 mem_dbg.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
223 mem_dbg.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
224 mem_dbg.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cryptlib.h
225 mem_dbg.o: mem_dbg.c
226 o_dir.o: ../e_os.h ../include/openssl/e_os2.h ../include/openssl/opensslconf.h
227 o_dir.o: LPdir_unix.c o_dir.c o_dir.h
228 o_str.o: ../e_os.h ../include/openssl/e_os2.h ../include/openssl/opensslconf.h
229 o_str.o: o_str.c o_str.h
230 o_time.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h o_time.c
231 o_time.o: o_time.h
232 tmdiff.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
233 tmdiff.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
234 tmdiff.o: ../include/openssl/err.h ../include/openssl/lhash.h
235 tmdiff.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
236 tmdiff.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
237 tmdiff.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
238 tmdiff.o: ../include/openssl/tmdiff.h cryptlib.h tmdiff.c
239 uid.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
240 uid.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
241 uid.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
242 uid.o: ../include/openssl/stack.h ../include/openssl/symhacks.h uid.c