Makefile revision 296341
1#
2# OpenSSL/crypto/Makefile
3#
4
5DIR=		crypto
6TOP=		..
7CC=		cc
8INCLUDE=	-I. -I$(TOP) -I../include $(ZLIB_INCLUDE)
9# INCLUDES targets sudbirs!
10INCLUDES=	-I.. -I../.. -I../modes -I../asn1 -I../evp -I../../include $(ZLIB_INCLUDE)
11CFLAG=		-g
12MAKEDEPPROG=	makedepend
13MAKEDEPEND=	$(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
14MAKEFILE=       Makefile
15RM=             rm -f
16ARFLAGS?=       r
17AR=             ar ${ARFLAGS}
18
19RECURSIVE_MAKE=	[ -n "$(SDIRS)" ] && for i in $(SDIRS) ; do \
20		    (cd $$i && echo "making $$target in $(DIR)/$$i..." && \
21		    $(MAKE) -e TOP=../.. DIR=$$i INCLUDES='$(INCLUDES)' $$target ) || exit 1; \
22		done;
23
24PEX_LIBS=
25EX_LIBS=
26 
27CFLAGS= $(INCLUDE) $(CFLAG)
28ASFLAGS= $(INCLUDE) $(ASFLAG)
29AFLAGS=$(ASFLAGS)
30CPUID_OBJ=mem_clr.o
31
32LIBS=
33
34GENERAL=Makefile README crypto-lib.com install.com
35TEST=constant_time_test.c
36
37LIB= $(TOP)/libcrypto.a
38SHARED_LIB= libcrypto$(SHLIB_EXT)
39LIBSRC=	cryptlib.c mem.c mem_clr.c mem_dbg.c cversion.c ex_data.c cpt_err.c \
40	ebcdic.c uid.c o_time.c o_str.c o_dir.c o_fips.c o_init.c fips_ers.c
41LIBOBJ= cryptlib.o mem.o mem_dbg.o cversion.o ex_data.o cpt_err.o ebcdic.o \
42	uid.o o_time.o o_str.o o_dir.o o_fips.o o_init.o fips_ers.o $(CPUID_OBJ)
43
44SRC= $(LIBSRC)
45
46EXHEADER= crypto.h opensslv.h opensslconf.h ebcdic.h symhacks.h \
47	ossl_typ.h
48HEADER=	cryptlib.h buildinf.h md32_common.h o_time.h o_str.h o_dir.h \
49	constant_time_locl.h $(EXHEADER)
50
51ALL=    $(GENERAL) $(SRC) $(HEADER)
52
53top:
54	@(cd ..; $(MAKE) DIRS=$(DIR) all)
55
56all: shared
57
58buildinf.h: ../Makefile
59	$(PERL) $(TOP)/util/mkbuildinf.pl "$(CC) $(CFLAGS)" "$(PLATFORM)" >buildinf.h
60
61x86cpuid.s:	x86cpuid.pl perlasm/x86asm.pl
62	$(PERL) x86cpuid.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
63
64applink.o:	$(TOP)/ms/applink.c
65	$(CC) $(CFLAGS) -c -o $@ $(TOP)/ms/applink.c
66
67uplink.o:	$(TOP)/ms/uplink.c applink.o
68	$(CC) $(CFLAGS) -c -o $@ $(TOP)/ms/uplink.c
69
70uplink-x86.s:	$(TOP)/ms/uplink-x86.pl
71	$(PERL) $(TOP)/ms/uplink-x86.pl $(PERLASM_SCHEME) > $@
72
73x86_64cpuid.s: x86_64cpuid.pl;	$(PERL) x86_64cpuid.pl $(PERLASM_SCHEME) > $@
74ia64cpuid.s: ia64cpuid.S;	$(CC) $(CFLAGS) -E ia64cpuid.S > $@
75ppccpuid.s:	ppccpuid.pl;	$(PERL) ppccpuid.pl $(PERLASM_SCHEME) $@
76pariscid.s:	pariscid.pl;	$(PERL) pariscid.pl $(PERLASM_SCHEME) $@
77alphacpuid.s:	alphacpuid.pl
78	(preproc=/tmp/$$$$.$@; trap "rm $$preproc" INT; \
79	$(PERL) alphacpuid.pl > $$preproc && \
80	$(CC) -E $$preproc > $@ && rm $$preproc)
81
82testapps:
83	[ -z "$(THIS)" ] || (	if echo $(SDIRS) | fgrep ' des '; \
84				then cd des && $(MAKE) -e des; fi )
85	[ -z "$(THIS)" ] || ( cd pkcs7 && $(MAKE) -e testapps );
86	@if [ -z "$(THIS)" ]; then $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; fi
87
88subdirs:
89	@target=all; $(RECURSIVE_MAKE)
90
91files:
92	$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
93	@target=files; $(RECURSIVE_MAKE)
94
95links:
96	@$(PERL) $(TOP)/util/mklink.pl ../include/openssl $(EXHEADER)
97	@$(PERL) $(TOP)/util/mklink.pl ../test $(TEST)
98	@$(PERL) $(TOP)/util/mklink.pl ../apps $(APPS)
99	@target=links; $(RECURSIVE_MAKE)
100
101# lib: $(LIB): are splitted to avoid end-less loop
102lib:	$(LIB)
103	@touch lib
104$(LIB):	$(LIBOBJ)
105	$(AR) $(LIB) $(LIBOBJ)
106	[ -z "$(FIPSLIBDIR)" ] || $(AR) $(LIB) $(FIPSLIBDIR)fipscanister.o
107	$(RANLIB) $(LIB) || echo Never mind.
108
109shared: buildinf.h lib subdirs
110	if [ -n "$(SHARED_LIBS)" ]; then \
111		(cd ..; $(MAKE) $(SHARED_LIB)); \
112	fi
113
114libs:
115	@target=lib; $(RECURSIVE_MAKE)
116
117install:
118	@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
119	@headerlist="$(EXHEADER)"; for i in $$headerlist ;\
120	do \
121	(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
122	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
123	done;
124	@target=install; $(RECURSIVE_MAKE)
125
126lint:
127	@target=lint; $(RECURSIVE_MAKE)
128
129update: local_depend
130	@[ -z "$(THIS)" ] || (set -e; target=update; $(RECURSIVE_MAKE) )
131	@if [ -z "$(THIS)" ]; then $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; fi
132
133depend: local_depend
134	@[ -z "$(THIS)" ] || (set -e; target=depend; $(RECURSIVE_MAKE) )
135	@if [ -z "$(THIS)" ]; then $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; fi
136local_depend:
137	@[ -z "$(THIS)" -o -f buildinf.h ] || touch buildinf.h # fake buildinf.h if it does not exist
138	@[ -z "$(THIS)" ] || $(MAKEDEPEND) -- $(CFLAG) $(INCLUDE) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
139	@[ -z "$(THIS)" -o -s buildinf.h ] || rm buildinf.h
140
141clean:
142	rm -f buildinf.h *.s *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
143	@target=clean; $(RECURSIVE_MAKE)
144
145dclean:
146	$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
147	mv -f Makefile.new $(MAKEFILE)
148	rm -f opensslconf.h
149	@target=dclean; $(RECURSIVE_MAKE)
150
151# DO NOT DELETE THIS LINE -- make depend depends on it.
152
153cpt_err.o: ../include/openssl/bio.h ../include/openssl/crypto.h
154cpt_err.o: ../include/openssl/e_os2.h ../include/openssl/err.h
155cpt_err.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h
156cpt_err.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
157cpt_err.o: ../include/openssl/safestack.h ../include/openssl/stack.h
158cpt_err.o: ../include/openssl/symhacks.h cpt_err.c
159cryptlib.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
160cryptlib.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
161cryptlib.o: ../include/openssl/err.h ../include/openssl/lhash.h
162cryptlib.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
163cryptlib.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
164cryptlib.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cryptlib.c
165cryptlib.o: cryptlib.h
166cversion.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
167cversion.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
168cversion.o: ../include/openssl/err.h ../include/openssl/lhash.h
169cversion.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
170cversion.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
171cversion.o: ../include/openssl/stack.h ../include/openssl/symhacks.h buildinf.h
172cversion.o: cryptlib.h cversion.c
173ebcdic.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h ebcdic.c
174ex_data.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
175ex_data.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
176ex_data.o: ../include/openssl/err.h ../include/openssl/lhash.h
177ex_data.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
178ex_data.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
179ex_data.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cryptlib.h
180ex_data.o: ex_data.c
181fips_ers.o: ../include/openssl/opensslconf.h fips_ers.c
182mem.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
183mem.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
184mem.o: ../include/openssl/err.h ../include/openssl/lhash.h
185mem.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
186mem.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
187mem.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cryptlib.h
188mem.o: mem.c
189mem_clr.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
190mem_clr.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
191mem_clr.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
192mem_clr.o: ../include/openssl/stack.h ../include/openssl/symhacks.h mem_clr.c
193mem_dbg.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
194mem_dbg.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
195mem_dbg.o: ../include/openssl/err.h ../include/openssl/lhash.h
196mem_dbg.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
197mem_dbg.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
198mem_dbg.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cryptlib.h
199mem_dbg.o: mem_dbg.c
200o_dir.o: ../e_os.h ../include/openssl/e_os2.h ../include/openssl/opensslconf.h
201o_dir.o: LPdir_unix.c o_dir.c o_dir.h
202o_fips.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
203o_fips.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
204o_fips.o: ../include/openssl/err.h ../include/openssl/lhash.h
205o_fips.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
206o_fips.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
207o_fips.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cryptlib.h
208o_fips.o: o_fips.c
209o_init.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/crypto.h
210o_init.o: ../include/openssl/e_os2.h ../include/openssl/err.h
211o_init.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h
212o_init.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
213o_init.o: ../include/openssl/safestack.h ../include/openssl/stack.h
214o_init.o: ../include/openssl/symhacks.h o_init.c
215o_str.o: ../e_os.h ../include/openssl/e_os2.h ../include/openssl/opensslconf.h
216o_str.o: o_str.c o_str.h
217o_time.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h o_time.c
218o_time.o: o_time.h
219uid.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
220uid.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
221uid.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
222uid.o: ../include/openssl/stack.h ../include/openssl/symhacks.h uid.c
223