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