]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/Makefile
Constant-time utilities
[thirdparty/openssl.git] / crypto / Makefile
CommitLineData
d02b48c6 1#
15ac9716 2# OpenSSL/crypto/Makefile
d02b48c6
RE
3#
4
5DIR= crypto
6TOP= ..
7CC= cc
cc7399e7 8INCLUDE= -I. -I$(TOP) -I../include $(ZLIB_INCLUDE)
7abbffc3 9# INCLUDES targets sudbirs!
ab8a4e54 10INCLUDES= -I.. -I../.. -I../modes -I../asn1 -I../evp -I../../include $(ZLIB_INCLUDE)
d02b48c6 11CFLAG= -g
cf1b7d96
RL
12MAKEDEPPROG= makedepend
13MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
42ba5d23 14MAKEFILE= Makefile
bb8f3c58 15RM= rm -f
d02b48c6
RE
16AR= ar r
17
02c31fa4
AP
18RECURSIVE_MAKE= [ -n "$(SDIRS)" ] && for i in $(SDIRS) ; do \
19 (cd $$i && echo "making $$target in $(DIR)/$$i..." && \
a370537b 20 $(MAKE) -e TOP=../.. DIR=$$i INCLUDES='$(INCLUDES)' $$target ) || exit 1; \
02c31fa4
AP
21 done;
22
d02b48c6
RE
23PEX_LIBS=
24EX_LIBS=
25
664b9985 26CFLAGS= $(INCLUDE) $(CFLAG)
14e21f86 27ASFLAGS= $(INCLUDE) $(ASFLAG)
16760a30 28AFLAGS=$(ASFLAGS)
167066fe 29CPUID_OBJ=mem_clr.o
58964a49 30
d02b48c6
RE
31LIBS=
32
7d7d2cbc 33GENERAL=Makefile README crypto-lib.com install.com
5a3d21c0 34TEST=constant_time_test.c
d02b48c6
RE
35
36LIB= $(TOP)/libcrypto.a
a7b42009 37SHARED_LIB= libcrypto$(SHLIB_EXT)
3f746831
DSH
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 thr_id.c lock.c fips_ers.c \
086e32a6 40 o_init.c o_fips.c
3f746831
DSH
41LIBOBJ= cryptlib.o mem.o mem_dbg.o cversion.o ex_data.o cpt_err.o \
42 ebcdic.o uid.o o_time.o o_str.o o_dir.o thr_id.o lock.o fips_ers.o \
086e32a6 43 o_init.o o_fips.o $(CPUID_OBJ)
d02b48c6
RE
44
45SRC= $(LIBSRC)
46
6852d1d8 47EXHEADER= crypto.h opensslv.h opensslconf.h ebcdic.h symhacks.h \
c0482547 48 ossl_typ.h
ff49a944 49HEADER= cryptlib.h buildinf.h md32_common.h o_str.h o_dir.h $(EXHEADER)
d02b48c6
RE
50
51ALL= $(GENERAL) $(SRC) $(HEADER)
52
53top:
54 @(cd ..; $(MAKE) DIRS=$(DIR) all)
55
919f8bcd 56all: shared
d02b48c6 57
eead69f5
DSH
58fips: cryptlib.o thr_id.o uid.o $(CPUID_OBJ)
59 [ -n "$(SDIRS)" ] && for i in $(SDIRS) ; do \
60 ( obj=`$(PERL) $(TOP)/util/fipsobj.pl $$i` && \
61 cd $$i && echo "making fips in $(DIR)/$$i..." && \
62 $(MAKE) -e TOP=../.. DIR=$$i INCLUDES='$(INCLUDES)' $$obj ) || exit 1; \
63 done;
64
42ba5d23 65buildinf.h: ../Makefile
57119943 66 ( echo "#ifndef MK1MF_BUILD"; \
42ba5d23 67 echo ' /* auto-generated by crypto/Makefile for crypto/cversion.c */'; \
1ed0c662
RL
68 echo ' #define CFLAGS "$(CC) $(CFLAG)"'; \
69 echo ' #define PLATFORM "$(PLATFORM)"'; \
294bd1e2 70 echo " #define DATE \"`LC_ALL=C LC_TIME=C date`\""; \
1ed0c662 71 echo '#endif' ) >buildinf.h
d02b48c6 72
fa8e921f
AP
73x86cpuid.s: x86cpuid.pl perlasm/x86asm.pl
74 $(PERL) x86cpuid.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
ec38ddc7 75
5b50f99e
AP
76applink.o: $(TOP)/ms/applink.c
77 $(CC) $(CFLAGS) -c -o $@ $(TOP)/ms/applink.c
51ff6bde 78
5b50f99e
AP
79uplink.o: $(TOP)/ms/uplink.c applink.o
80 $(CC) $(CFLAGS) -c -o $@ $(TOP)/ms/uplink.c
81
beef7145
AP
82uplink-x86.s: $(TOP)/ms/uplink-x86.pl
83 $(PERL) $(TOP)/ms/uplink-x86.pl $(PERLASM_SCHEME) > $@
51ff6bde 84
cb3b9b13
AP
85x86_64cpuid.s: x86_64cpuid.pl; $(PERL) x86_64cpuid.pl $(PERLASM_SCHEME) > $@
86ia64cpuid.s: ia64cpuid.S; $(CC) $(CFLAGS) -E ia64cpuid.S > $@
87ppccpuid.s: ppccpuid.pl; $(PERL) ppccpuid.pl $(PERLASM_SCHEME) $@
88pariscid.s: pariscid.pl; $(PERL) pariscid.pl $(PERLASM_SCHEME) $@
149b1807 89alphacpuid.s: alphacpuid.pl
d1cf23ac
AP
90 (preproc=/tmp/$$$$.$@; trap "rm $$preproc" INT; \
91 $(PERL) alphacpuid.pl > $$preproc && \
92 $(CC) -E $$preproc > $@ && rm $$preproc)
14e21f86 93
d02b48c6 94subdirs:
02c31fa4 95 @target=all; $(RECURSIVE_MAKE)
d02b48c6
RE
96
97files:
4e232289 98 $(PERL) $(TOP)/util/files.pl "CPUID_OBJ=$(CPUID_OBJ)" Makefile >> $(TOP)/MINFO
02c31fa4 99 @target=files; $(RECURSIVE_MAKE)
d02b48c6
RE
100
101links:
1314c344
BM
102 @$(PERL) $(TOP)/util/mklink.pl ../include/openssl $(EXHEADER)
103 @$(PERL) $(TOP)/util/mklink.pl ../test $(TEST)
104 @$(PERL) $(TOP)/util/mklink.pl ../apps $(APPS)
02c31fa4 105 @target=links; $(RECURSIVE_MAKE)
d02b48c6 106
e347b0da 107# lib: $(LIB): are splitted to avoid end-less loop
52b1fbbd
AP
108lib: $(LIB)
109 @touch lib
52b1fbbd 110$(LIB): $(LIBOBJ)
6f4b3e7c 111 $(ARX) $(LIB) $(LIBOBJ)
4e20b1a6 112 $(RANLIB) $(LIB) || echo Never mind.
d02b48c6 113
919f8bcd 114shared: buildinf.h lib subdirs
a7b42009 115 if [ -n "$(SHARED_LIBS)" ]; then \
e70a3983 116 (cd ..; $(MAKE) $(SHARED_LIB)); \
a7b42009
RL
117 fi
118
d02b48c6 119libs:
02c31fa4 120 @target=lib; $(RECURSIVE_MAKE)
d02b48c6
RE
121
122install:
734540f8 123 @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
a2ac429d 124 @headerlist="$(EXHEADER)"; for i in $$headerlist ;\
d02b48c6 125 do \
e5f3045f
BM
126 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
127 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
d02b48c6 128 done;
02c31fa4 129 @target=install; $(RECURSIVE_MAKE)
d02b48c6
RE
130
131lint:
02c31fa4 132 @target=lint; $(RECURSIVE_MAKE)
d02b48c6
RE
133
134depend:
02c31fa4
AP
135 @[ -z "$(THIS)" -o -f buildinf.h ] || touch buildinf.h # fake buildinf.h if it does not exist
136 @[ -z "$(THIS)" ] || $(MAKEDEPEND) -- $(CFLAG) $(INCLUDE) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
137 @[ -z "$(THIS)" -o -s buildinf.h ] || rm buildinf.h
138 @[ -z "$(THIS)" ] || (set -e; target=depend; $(RECURSIVE_MAKE) )
7abbffc3 139 @if [ -z "$(THIS)" ]; then $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; fi
d02b48c6
RE
140
141clean:
14e21f86 142 rm -f buildinf.h *.s *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
02c31fa4 143 @target=clean; $(RECURSIVE_MAKE)
d02b48c6
RE
144
145dclean:
99aab161 146 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
d02b48c6 147 mv -f Makefile.new $(MAKEFILE)
95553390 148 rm -f opensslconf.h
02c31fa4 149 @target=dclean; $(RECURSIVE_MAKE)
d02b48c6 150
d02b48c6 151# DO NOT DELETE THIS LINE -- make depend depends on it.
6242bb9c 152
1c4f90a0 153cpt_err.o: ../include/openssl/bio.h ../include/openssl/crypto.h
cf1b7d96
RL
154cpt_err.o: ../include/openssl/e_os2.h ../include/openssl/err.h
155cpt_err.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h
c57bc2dc
GT
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
41d2a336
RL
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
c57bc2dc
GT
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
41d2a336
RL
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
c57bc2dc
GT
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
3aecef76 173ebcdic.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h ebcdic.c
41d2a336
RL
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
c57bc2dc
GT
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
ae53b299 181fips_ers.o: ../include/openssl/opensslconf.h fips_ers.c
9d0397e9
BM
182lock.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
183lock.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
ae53b299
BM
184lock.o: ../include/openssl/err.h ../include/openssl/lhash.h
185lock.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
186lock.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
187lock.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cryptlib.h
188lock.o: lock.c
41d2a336
RL
189mem.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
190mem.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
191mem.o: ../include/openssl/err.h ../include/openssl/lhash.h
192mem.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
c57bc2dc
GT
193mem.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
194mem.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cryptlib.h
195mem.o: mem.c
df29cc8f
RL
196mem_clr.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
197mem_clr.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
9c52d2cc
GT
198mem_clr.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
199mem_clr.o: ../include/openssl/stack.h ../include/openssl/symhacks.h mem_clr.c
41d2a336
RL
200mem_dbg.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
201mem_dbg.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
202mem_dbg.o: ../include/openssl/err.h ../include/openssl/lhash.h
203mem_dbg.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
c57bc2dc
GT
204mem_dbg.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
205mem_dbg.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cryptlib.h
206mem_dbg.o: mem_dbg.c
a2400fca
RL
207o_dir.o: ../e_os.h ../include/openssl/e_os2.h ../include/openssl/opensslconf.h
208o_dir.o: LPdir_unix.c o_dir.c o_dir.h
ae53b299
BM
209o_fips.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
210o_fips.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
211o_fips.o: ../include/openssl/err.h ../include/openssl/lhash.h
212o_fips.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
213o_fips.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
214o_fips.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cryptlib.h
215o_fips.o: o_fips.c
216o_init.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/crypto.h
217o_init.o: ../include/openssl/e_os2.h ../include/openssl/err.h
218o_init.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h
219o_init.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
220o_init.o: ../include/openssl/safestack.h ../include/openssl/stack.h
221o_init.o: ../include/openssl/symhacks.h o_init.c
a7201e9a
RL
222o_str.o: ../e_os.h ../include/openssl/e_os2.h ../include/openssl/opensslconf.h
223o_str.o: o_str.c o_str.h
4cfeb00b
DSH
224o_time.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h
225o_time.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
226o_time.o: ../include/openssl/safestack.h ../include/openssl/stack.h
227o_time.o: ../include/openssl/symhacks.h crypto.h o_time.c
9d0397e9
BM
228thr_id.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
229thr_id.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
230thr_id.o: ../include/openssl/err.h ../include/openssl/lhash.h
231thr_id.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
232thr_id.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
233thr_id.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cryptlib.h
234thr_id.o: thr_id.c
cf1b7d96
RL
235uid.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
236uid.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
9c52d2cc
GT
237uid.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
238uid.o: ../include/openssl/stack.h ../include/openssl/symhacks.h uid.c