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