Makefile 8.8 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
x86_64cpuid.s: x86_64cpuid.pl
	$(PERL) x86_64cpuid.pl $@
72 73 74
ia64cpuid.s: ia64cpuid.S
	$(CC) $(CFLAGS) -E ia64cpuid.S > $@

U
Ulf Möller 已提交
75
testapps:
76 77 78
	[ -z "$(THIS)" ] || ( if echo ${SDIRS} | fgrep ' des '; \
	then cd des && $(MAKE) des; fi )
	[ -z "$(THIS)" ] || ( cd pkcs7 && $(MAKE) testapps );
79
	@if [ -z "$(THIS)" ]; then $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; fi
U
Ulf Möller 已提交
80

81 82 83
subdirs:
	@for i in $(SDIRS) ;\
	do \
84
	(cd $$i && echo "making all in crypto/$$i..." && \
85
	$(MAKE) INCLUDES='${INCLUDES}' all ) || exit 1; \
86 87 88
	done;

files:
B
Ben Laurie 已提交
89
	$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
90 91
	@for i in $(SDIRS) ;\
	do \
92
	(cd $$i && echo "making 'files' in crypto/$$i..." && \
93
	$(MAKE) files ); \
94 95 96
	done;

links:
97 98 99
	@$(PERL) $(TOP)/util/mklink.pl ../include/openssl $(EXHEADER)
	@$(PERL) $(TOP)/util/mklink.pl ../test $(TEST)
	@$(PERL) $(TOP)/util/mklink.pl ../apps $(APPS)
100
	@for i in $(SDIRS); do \
101 102
	    (cd $$i && echo "making links in crypto/$$i..." && \
	    $(MAKE) links ); \
103 104 105 106
	done;

lib:	$(LIBOBJ)
	$(AR) $(LIB) $(LIBOBJ)
107
	$(RANLIB) $(LIB) || echo Never mind.
108 109
	@touch lib

110
shared: buildinf.h lib subdirs
111
	if [ -n "$(SHARED_LIBS)" ]; then \
112
		(cd ..; $(MAKE) $(SHARED_LIB)); \
113 114
	fi

115 116 117
libs:
	@for i in $(SDIRS) ;\
	do \
118
	(cd $$i && echo "making libs in crypto/$$i..." && \
119
	$(MAKE) lib );
120 121 122
	done;

tests:
123
	@[ -z "$(THIS)" ] || (for i in $(SDIRS) ;\
124
	do \
125
	(cd $$i && echo "making tests in crypto/$$i..." && \
126 127
	$(MAKE) tests ); \
	done; )
128
	@if [ -z "$(THIS)" ]; then $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; fi
129 130

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

lint:
	@for i in $(SDIRS) ;\
	do \
146
	(cd $$i && echo "making lint in crypto/$$i..." && \
147
	$(MAKE) lint ); \
148 149 150
	done;

depend:
151 152 153
	[ -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
154 155 156 157 158 159
	@[ -z "$(THIS)" ] || (set -e; \
	for i in $(SDIRS) ; do \
	    (	cd $$i && echo "making depend in crypto/$$i..." && \
		$(MAKE) INCLUDES='${INCLUDES}' depend \
	    ); \
	done; )
160
	@if [ -z "$(THIS)" ]; then $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; fi
161 162

clean:
163
	rm -f buildinf.h *.s *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
164 165
	@for i in $(SDIRS) ;\
	do \
166
	(cd $$i && echo "making clean in crypto/$$i..." && \
167
	$(MAKE) clean ); \
168 169 170
	done;

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

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

181
cpt_err.o: ../include/openssl/bio.h ../include/openssl/crypto.h
182 183
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 已提交
184 185 186
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
187 188 189 190
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 已提交
191 192 193
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
194 195 196 197
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 已提交
198 199 200
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 已提交
201
ebcdic.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h ebcdic.c
202 203 204 205
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 已提交
206 207 208
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
209 210 211 212
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 已提交
213 214 215
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
216 217
mem_clr.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
mem_clr.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
218 219
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
220 221 222 223
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 已提交
224 225 226
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
227 228
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
229 230
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 已提交
231 232
o_time.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h o_time.c
o_time.o: o_time.h
233 234 235 236
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 已提交
237 238 239
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
240 241
uid.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
uid.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
242 243
uid.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
uid.o: ../include/openssl/stack.h ../include/openssl/symhacks.h uid.c