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