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