Makefile.ssl 6.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
#
# SSLeay/crypto/Makefile
#

DIR=		crypto
TOP=		..
CC=		cc
INCLUDE=	-I. -I../include
INCLUDES=	-I.. -I../../include
CFLAG=		-g
11 12
INSTALL_PREFIX=
OPENSSLDIR=     /usr/local/ssl
13 14
INSTALLTOP=	/usr/local/ssl
MAKE=           make -f Makefile.ssl
15
MAKEDEPEND=	$(TOP)/util/domd $(TOP)
16
MAKEFILE=       Makefile.ssl
17
RM=             rm -f
18 19 20 21 22
AR=		ar r

PEX_LIBS=
EX_LIBS=
 
23
CFLAGS= $(INCLUDE) $(CFLAG) -DCFLAGS="\"$(CC) $(CFLAG)\"" -DPLATFORM="\"$(PLATFORM)\""
24

25

26 27
LIBS=

28 29
SDIRS=	md2 md5 sha mdc2 hmac ripemd \
	des rc2 rc4 rc5 idea bf cast \
30 31
	bn rsa dsa dh \
	buffer bio stack lhash rand err objects \
32
	evp asn1 pem x509 x509v3 conf txt_db pkcs7 pkcs12 comp
33 34 35 36

GENERAL=Makefile README

LIB= $(TOP)/libcrypto.a
37 38
LIBSRC=	cryptlib.c mem.c cversion.c ex_data.c tmdiff.c cpt_err.c
LIBOBJ= cryptlib.o mem.o cversion.o ex_data.o tmdiff.o cpt_err.o
39 40 41

SRC= $(LIBSRC)

42
EXHEADER= crypto.h tmdiff.h opensslv.h opensslconf.h
B
Ben Laurie 已提交
43
HEADER=	cryptlib.h date.h $(EXHEADER)
44 45 46 47 48 49 50 51

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

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

all: date.h lib subdirs

52
date.h: ../Makefile.ssl
53
	echo "#define DATE \"`date`\"" >date.h
54 55 56 57

subdirs:
	@for i in $(SDIRS) ;\
	do \
58
	(cd $$i && echo "making all in crypto/$$i..." && \
59
	$(MAKE) CC='$(CC)' INCLUDES='${INCLUDES}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' AR='${AR}' PROCESSOR='${PROCESSOR}' PERL='${PERL}' RANLIB='${RANLIB}' all ) || exit 1; \
60 61 62
	done;

files:
63
	$(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
64 65
	@for i in $(SDIRS) ;\
	do \
66
	(cd $$i; echo "making 'files' in crypto/$$i..."; \
67 68 69 70
	$(MAKE) files ); \
	done;

links:
71
	@$(TOP)/util/point.sh Makefile.ssl Makefile
72 73 74
	@$(PERL) $(TOP)/util/mklink.pl ../include/openssl $(EXHEADER)
	@$(PERL) $(TOP)/util/mklink.pl ../test $(TEST)
	@$(PERL) $(TOP)/util/mklink.pl ../apps $(APPS)
75 76 77
	@$(TOP)/util/point.sh Makefile.ssl Makefile
	@for i in $(SDIRS); do \
	(cd $$i; echo "making links in crypto/$$i..."; \
78
	$(MAKE) CC='$(CC)' INCLUDES='${INCLUDES}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' AR='${AR}' PERL='${PERL}' links ); \
79 80 81 82
	done;

lib:	$(LIBOBJ)
	$(AR) $(LIB) $(LIBOBJ)
83
	$(RANLIB) $(LIB)
84 85 86 87 88
	@touch lib

libs:
	@for i in $(SDIRS) ;\
	do \
89
	(cd $$i; echo "making libs in crypto/$$i..."; \
90
	$(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALL_PREFIX='${INSTALL_PREFIX}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' AR='${AR}' lib ); \
91 92 93 94 95
	done;

tests:
	@for i in $(SDIRS) ;\
	do \
96
	(cd $$i; echo "making tests in crypto/$$i..."; \
97 98 99 100 101 102
	$(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' AR='${AR}' tests ); \
	done;

install:
	@for i in $(EXHEADER) ;\
	do \
103 104
	(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
105 106 107
	done;
	@for i in $(SDIRS) ;\
	do \
108
	(cd $$i; echo "making install in crypto/$$i..."; \
109 110 111 112 113 114
	$(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' install ); \
	done;

lint:
	@for i in $(SDIRS) ;\
	do \
115
	(cd $$i; echo "making lint in crypto/$$i..."; \
116 117 118 119
	$(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' lint ); \
	done;

depend:
120
	$(MAKEDEPEND) $(INCLUDE) $(DEPFLAG) $(PROGS) $(LIBSRC)
121 122
	@for i in $(SDIRS) ;\
	do \
123
	(cd $$i; echo "making depend in crypto/$$i..."; \
124
	$(MAKE) MAKEFILE='${MAKEFILE}' INCLUDES='${INCLUDES}' DEPFLAG='${DEPFLAG}' depend ); \
125 126 127
	done;

clean:
128
	rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
129 130
	@for i in $(SDIRS) ;\
	do \
131
	(cd $$i; echo "making clean in crypto/$$i..."; \
132 133 134 135
	$(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' clean ); \
	done;

dclean:
136
	$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
137 138 139
	mv -f Makefile.new $(MAKEFILE)
	@for i in $(SDIRS) ;\
	do \
140
	(cd $$i; echo "making dclean in crypto/$$i..."; \
U
Ulf Möller 已提交
141
	$(MAKE) PERL='${PERL}' CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' dclean ); \
142 143 144
	done;

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

B
Bodo Möller 已提交
146 147 148 149
cpt_err.o: ../include/openssl/crypto.h ../include/openssl/err.h
cpt_err.o: ../include/openssl/opensslv.h ../include/openssl/stack.h
cryptlib.o: ../include/openssl/bio.h ../include/openssl/buffer.h
cryptlib.o: ../include/openssl/crypto.h ../include/openssl/e_os.h
150 151 152
cryptlib.o: ../include/openssl/err.h ../include/openssl/opensslconf.h
cryptlib.o: ../include/openssl/opensslv.h ../include/openssl/stack.h cryptlib.h
cryptlib.o: date.h
B
Bodo Möller 已提交
153 154
cversion.o: ../include/openssl/bio.h ../include/openssl/buffer.h
cversion.o: ../include/openssl/crypto.h ../include/openssl/e_os.h
155 156 157
cversion.o: ../include/openssl/err.h ../include/openssl/opensslconf.h
cversion.o: ../include/openssl/opensslv.h ../include/openssl/stack.h cryptlib.h
cversion.o: date.h
B
Bodo Möller 已提交
158 159 160
ex_data.o: ../include/openssl/bio.h ../include/openssl/buffer.h
ex_data.o: ../include/openssl/crypto.h ../include/openssl/e_os.h
ex_data.o: ../include/openssl/err.h ../include/openssl/lhash.h
161 162
ex_data.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
ex_data.o: ../include/openssl/stack.h cryptlib.h
B
Bodo Möller 已提交
163 164 165
mem.o: ../include/openssl/bio.h ../include/openssl/buffer.h
mem.o: ../include/openssl/crypto.h ../include/openssl/e_os.h
mem.o: ../include/openssl/err.h ../include/openssl/lhash.h
166 167
mem.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
mem.o: ../include/openssl/stack.h cryptlib.h
B
Bodo Möller 已提交
168 169
tmdiff.o: ../include/openssl/bio.h ../include/openssl/buffer.h
tmdiff.o: ../include/openssl/crypto.h ../include/openssl/e_os.h
170 171 172
tmdiff.o: ../include/openssl/err.h ../include/openssl/opensslconf.h
tmdiff.o: ../include/openssl/opensslv.h ../include/openssl/stack.h
tmdiff.o: ../include/openssl/tmdiff.h cryptlib.h