Makefile 8.9 KB
Newer Older
1 2 3 4 5 6 7
#
# SSLeay/crypto/Makefile
#

DIR=		crypto
TOP=		..
CC=		cc
8
INCLUDE=	-I. -I$(TOP) -I../include
9
# INCLUDES targets sudbirs!
10
INCLUDES=	-I.. -I../.. -I../../include
11
CFLAG=		-g
12 13
MAKEDEPPROG=	makedepend
MAKEDEPEND=	$(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
B
Ben Laurie 已提交
14
MAKEFILE=       Makefile
15
RM=             rm -f
16 17 18 19 20
AR=		ar r

PEX_LIBS=
EX_LIBS=
 
21
CFLAGS= $(INCLUDE) $(CFLAG)
22
ASFLAGS= $(INCLUDE) $(ASFLAG)
23
AFLAGS=$(ASFLAGS)
24

25 26
LIBS=

27 28
SDIRS=	objects \
	md2 md4 md5 sha mdc2 hmac ripemd \
29
	des rc2 rc4 rc5 idea bf cast \
B
Bodo Möller 已提交
30
	bn ec rsa dsa ecdsa ecdh dh dso engine aes \
31
	buffer bio stack lhash rand err \
32
	evp asn1 pem x509 x509v3 conf txt_db pkcs7 pkcs12 comp ocsp ui krb5 \
B
Ben Laurie 已提交
33
	store pqueue
34

U
Ulf Möller 已提交
35
GENERAL=Makefile README crypto-lib.com install.com
36 37

LIB= $(TOP)/libcrypto.a
38
SHARED_LIB= libcrypto$(SHLIB_EXT)
39
LIBSRC=	cryptlib.c mem.c mem_clr.c mem_dbg.c cversion.c ex_data.c tmdiff.c cpt_err.c ebcdic.c uid.c o_time.c o_str.c o_dir.c
40
LIBOBJ= cryptlib.o mem.o mem_clr.o mem_dbg.o cversion.o ex_data.o tmdiff.o cpt_err.o ebcdic.o uid.o o_time.o o_str.o o_dir.o $(CPUID_OBJ)
41 42 43

SRC= $(LIBSRC)

44
EXHEADER= crypto.h tmdiff.h opensslv.h opensslconf.h ebcdic.h symhacks.h \
45
	ossl_typ.h
46
HEADER=	cryptlib.h buildinf.h md32_common.h o_time.h o_str.h o_dir.h $(EXHEADER)
47 48 49 50 51 52

ALL=    $(GENERAL) $(SRC) $(HEADER)

top:
	@(cd ..; $(MAKE) DIRS=$(DIR) all)

53
all: shared
54

B
Ben Laurie 已提交
55
buildinf.h: ../Makefile
56
	( echo "#ifndef MK1MF_BUILD"; \
B
Ben Laurie 已提交
57
	echo '  /* auto-generated by crypto/Makefile for crypto/cversion.c */'; \
58 59
	echo '  #define CFLAGS "$(CC) $(CFLAG)"'; \
	echo '  #define PLATFORM "$(PLATFORM)"'; \
60
	echo "  #define DATE \"`LC_ALL=C LC_TIME=C date`\""; \
61
	echo '#endif' ) >buildinf.h
62

63 64
x86cpuid-elf.s:	x86cpuid.pl perlasm/x86asm.pl
	$(PERL) x86cpuid.pl elf $(CFLAGS) $(PROCESSOR) > $@
65 66
x86cpuid-cof.s: x86cpuid.pl perlasm/x86asm.pl
	$(PERL) x86cpuid.pl coff $(CFLAGS) $(PROCESSOR) > $@
67 68
x86cpuid-out.s: x86cpuid.pl perlasm/x86asm.pl
	$(PERL) x86cpuid.pl a.out $(CFLAGS) $(PROCESSOR) > $@
69

70 71 72 73 74 75
uplink.o:	../ms/uplink.c
	$(CC) $(CFLAGS) -c -o $@ ../ms/uplink.c

uplink-cof.s:	../ms/uplink.pl
	$(PERL) ../ms/uplink.pl coff > $@

76 77
x86_64cpuid.s: x86_64cpuid.pl
	$(PERL) x86_64cpuid.pl $@
78 79 80
ia64cpuid.s: ia64cpuid.S
	$(CC) $(CFLAGS) -E ia64cpuid.S > $@

U
Ulf Möller 已提交
81
testapps:
82 83 84
	[ -z "$(THIS)" ] || ( if echo ${SDIRS} | fgrep ' des '; \
	then cd des && $(MAKE) des; fi )
	[ -z "$(THIS)" ] || ( cd pkcs7 && $(MAKE) testapps );
85
	@if [ -z "$(THIS)" ]; then $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; fi
U
Ulf Möller 已提交
86

87 88 89
subdirs:
	@for i in $(SDIRS) ;\
	do \
90
	(cd $$i && echo "making all in crypto/$$i..." && \
91
	$(MAKE) INCLUDES='${INCLUDES}' all ) || exit 1; \
92 93 94
	done;

files:
B
Ben Laurie 已提交
95
	$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
96 97
	@for i in $(SDIRS) ;\
	do \
98
	(cd $$i && echo "making 'files' in crypto/$$i..." && \
99
	$(MAKE) files ); \
100 101 102
	done;

links:
103 104 105
	@$(PERL) $(TOP)/util/mklink.pl ../include/openssl $(EXHEADER)
	@$(PERL) $(TOP)/util/mklink.pl ../test $(TEST)
	@$(PERL) $(TOP)/util/mklink.pl ../apps $(APPS)
106
	@for i in $(SDIRS); do \
107 108
	    (cd $$i && echo "making links in crypto/$$i..." && \
	    $(MAKE) links ); \
109 110 111 112
	done;

lib:	$(LIBOBJ)
	$(AR) $(LIB) $(LIBOBJ)
113
	$(RANLIB) $(LIB) || echo Never mind.
114 115
	@touch lib

116
shared: buildinf.h lib subdirs
117
	if [ -n "$(SHARED_LIBS)" ]; then \
118
		(cd ..; $(MAKE) $(SHARED_LIB)); \
119 120
	fi

121 122 123
libs:
	@for i in $(SDIRS) ;\
	do \
124
	(cd $$i && echo "making libs in crypto/$$i..." && \
125
	$(MAKE) lib );
126 127 128
	done;

tests:
129
	@[ -z "$(THIS)" ] || (for i in $(SDIRS) ;\
130
	do \
131
	(cd $$i && echo "making tests in crypto/$$i..." && \
132 133
	$(MAKE) tests ); \
	done; )
134
	@if [ -z "$(THIS)" ]; then $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; fi
135 136

install:
137
	@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
138
	@headerlist="$(EXHEADER)"; for i in $$headerlist ;\
139
	do \
140 141
	(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
142 143 144
	done;
	@for i in $(SDIRS) ;\
	do \
145
	(cd $$i && echo "making install in crypto/$$i..." && \
146
	$(MAKE) install ); \
147 148 149 150 151
	done;

lint:
	@for i in $(SDIRS) ;\
	do \
152
	(cd $$i && echo "making lint in crypto/$$i..." && \
153
	$(MAKE) lint ); \
154 155 156
	done;

depend:
157 158 159
	[ -z "$(THIS)" -o -f buildinf.h ] || touch buildinf.h # fake buildinf.h if it does not exist
	[ -z "$(THIS)" ] || $(MAKEDEPEND) -- $(CFLAG) $(INCLUDE) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
	[ -z "$(THIS)" -o -s buildinf.h ] || rm buildinf.h
160 161 162 163 164 165
	@[ -z "$(THIS)" ] || (set -e; \
	for i in $(SDIRS) ; do \
	    (	cd $$i && echo "making depend in crypto/$$i..." && \
		$(MAKE) INCLUDES='${INCLUDES}' depend \
	    ); \
	done; )
166
	@if [ -z "$(THIS)" ]; then $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; fi
167 168

clean:
169
	rm -f buildinf.h *.s *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
170 171
	@for i in $(SDIRS) ;\
	do \
172
	(cd $$i && echo "making clean in crypto/$$i..." && \
173
	$(MAKE) clean ); \
174 175 176
	done;

dclean:
177
	$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
178 179 180
	mv -f Makefile.new $(MAKEFILE)
	@for i in $(SDIRS) ;\
	do \
181
	(cd $$i && echo "making dclean in crypto/$$i..." && \
182
	$(MAKE) dclean ); \
183 184 185
	done;

# DO NOT DELETE THIS LINE -- make depend depends on it.
B
Ben Laurie 已提交
186

187
cpt_err.o: ../include/openssl/bio.h ../include/openssl/crypto.h
188 189
cpt_err.o: ../include/openssl/e_os2.h ../include/openssl/err.h
cpt_err.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h
G
Geoff Thorpe 已提交
190 191 192
cpt_err.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
cpt_err.o: ../include/openssl/safestack.h ../include/openssl/stack.h
cpt_err.o: ../include/openssl/symhacks.h cpt_err.c
193 194 195 196
cryptlib.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
cryptlib.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
cryptlib.o: ../include/openssl/err.h ../include/openssl/lhash.h
cryptlib.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
G
Geoff Thorpe 已提交
197 198 199
cryptlib.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
cryptlib.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cryptlib.c
cryptlib.o: cryptlib.h
200 201 202 203
cversion.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
cversion.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
cversion.o: ../include/openssl/err.h ../include/openssl/lhash.h
cversion.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
G
Geoff Thorpe 已提交
204 205 206
cversion.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
cversion.o: ../include/openssl/stack.h ../include/openssl/symhacks.h buildinf.h
cversion.o: cryptlib.h cversion.c
L
Lutz Jänicke 已提交
207
ebcdic.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h ebcdic.c
208 209 210 211
ex_data.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
ex_data.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
ex_data.o: ../include/openssl/err.h ../include/openssl/lhash.h
ex_data.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
G
Geoff Thorpe 已提交
212 213 214
ex_data.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
ex_data.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cryptlib.h
ex_data.o: ex_data.c
215 216 217 218
mem.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
mem.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
mem.o: ../include/openssl/err.h ../include/openssl/lhash.h
mem.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
G
Geoff Thorpe 已提交
219 220 221
mem.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
mem.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cryptlib.h
mem.o: mem.c
222 223
mem_clr.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
mem_clr.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
224 225
mem_clr.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
mem_clr.o: ../include/openssl/stack.h ../include/openssl/symhacks.h mem_clr.c
226 227 228 229
mem_dbg.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
mem_dbg.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
mem_dbg.o: ../include/openssl/err.h ../include/openssl/lhash.h
mem_dbg.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
G
Geoff Thorpe 已提交
230 231 232
mem_dbg.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
mem_dbg.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cryptlib.h
mem_dbg.o: mem_dbg.c
233 234
o_dir.o: ../e_os.h ../include/openssl/e_os2.h ../include/openssl/opensslconf.h
o_dir.o: LPdir_unix.c o_dir.c o_dir.h
235 236
o_str.o: ../e_os.h ../include/openssl/e_os2.h ../include/openssl/opensslconf.h
o_str.o: o_str.c o_str.h
R
Richard Levitte 已提交
237 238
o_time.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h o_time.c
o_time.o: o_time.h
239 240 241 242
tmdiff.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
tmdiff.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
tmdiff.o: ../include/openssl/err.h ../include/openssl/lhash.h
tmdiff.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
G
Geoff Thorpe 已提交
243 244 245
tmdiff.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
tmdiff.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
tmdiff.o: ../include/openssl/tmdiff.h cryptlib.h tmdiff.c
246 247
uid.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
uid.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
248 249
uid.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
uid.o: ../include/openssl/stack.h ../include/openssl/symhacks.h uid.c