Makefile.org 11.6 KB
Newer Older
1 2 3 4
##
## Makefile for OpenSSL
##

U
Ulf Möller 已提交
5 6 7
VERSION=
MAJOR=
MINOR=
8
PLATFORM=dist
9 10 11 12
INSTALLTOP=/usr/local/ssl

# Do not edit this manually. Use Configure --openssldir=DIR do change this!
OPENSSLDIR=/usr/local/ssl
13

14 15 16 17 18
# RSAref  - Define if we are to link with RSAref.
# NO_IDEA - Define to build without the IDEA algorithm
# NO_RC4  - Define to build without the RC4 algorithm
# NO_RC2  - Define to build without the RC2 algorithm
# THREADS - Define when building with threads, you will probably also need any
19
#           system defines as well, i.e. _REENTERANT for Solaris 2.[34]
20 21 22 23
# TERMIO  - Define the termio terminal subsystem, needed if sgtty is missing.
# TERMIOS - Define the termios terminal subsystem, Silicon Graphics.
# LONGCRYPT - Define to use HPUX 10.x's long password modification to crypt(3).
# DEVRANDOM - Give this the value of the 'random device' if your OS supports
24 25
#           one.  32 bytes will be read from this when the random
#           number generator is initalised.
26
# SSL_ALLOW_ADH - define if you want the server to be able to use the
27
#           SSLv3 anon-DH ciphers.
28
# SSL_FORBID_ENULL - define if you want the server to be not able to use the
29
#           NULL encryption ciphers.
30 31 32
#
# LOCK_DEBUG - turns on lots of lock debug output :-)
# REF_CHECK - turn on some xyz_free() assertions.
33
# REF_PRINT - prints some stuff on structure free.
34 35
# CRYPTO_MDEBUG - turns on my 'memory leak' detecting stuff
# MFUNC - Make all Malloc/Free/Realloc calls call
36 37 38 39 40
#       CRYPTO_malloc/CRYPTO_free/CRYPTO_realloc which can be setup to
#       call application defined callbacks via CRYPTO_set_mem_functions()
# MD5_ASM needs to be defined to use the x86 assembler for MD5
# SHA1_ASM needs to be defined to use the x86 assembler for SHA1
# RMD160_ASM needs to be defined to use the x86 assembler for RIPEMD160
41 42 43
# Do not define B_ENDIAN or L_ENDIAN if 'unsigned long' == 8.  It must
# equal 4.
# PKCS1_CHECK - pkcs1 tests.
44

B
Ben Laurie 已提交
45
CC= gcc
46
#CFLAG= -DL_ENDIAN -DTERMIO -O3 -fomit-frame-pointer -m486 -Wall -Wuninitialized -DSHA1_ASM -DMD5_ASM -DRMD160_ASM
B
Ben Laurie 已提交
47
CFLAG= -DTERMIOS -DL_ENDIAN -fomit-frame-pointer -O3 -m486 -Wall -DSHA1_ASM -DMD5_ASM -DRMD160_ASM
48
DEPFLAG= 
49
PEX_LIBS= -L. -L.. -L../.. -L../../..
50
EX_LIBS= 
51
AR=ar r
52 53
RANLIB= ranlib
PERL= perl
54

55 56 57 58 59 60 61 62 63 64 65 66 67 68
# Set BN_ASM to bn_asm.o if you want to use the C version
BN_ASM= bn_asm.o
#BN_ASM= bn_asm.o
#BN_ASM= asm/bn86-elf.o	# elf, linux-elf
#BN_ASM= asm/bn86-sol.o # solaris
#BN_ASM= asm/bn86-out.o # a.out, FreeBSD
#BN_ASM= asm/bn86bsdi.o # bsdi
#BN_ASM= asm/alpha.o    # DEC Alpha
#BN_ASM= asm/pa-risc2.o # HP-UX PA-RISC
#BN_ASM= asm/r3000.o    # SGI MIPS cpu
#BN_ASM= asm/sparc.o    # Sun solaris/SunOS
#BN_ASM= asm/bn-win32.o # Windows 95/NT
#BN_ASM= asm/x86w16.o   # 16 bit code for Windows 3.1/DOS
#BN_ASM= asm/x86w32.o   # 32 bit code for Windows 3.1
69

U
Ulf Möller 已提交
70 71 72 73
# For x86 assembler: Set PROCESSOR to 386 if you want to support
# the 80386.
PROCESSOR=

74 75
# Set DES_ENC to des_enc.o if you want to use the C version
#There are 4 x86 assember options.
B
Ben Laurie 已提交
76
DES_ENC= asm/dx86-out.o asm/yx86-out.o
77 78 79 80 81
#DES_ENC= des_enc.o fcrypt_b.o          # C
#DES_ENC= asm/dx86-elf.o asm/yx86-elf.o # elf
#DES_ENC= asm/dx86-sol.o asm/yx86-sol.o # solaris
#DES_ENC= asm/dx86-out.o asm/yx86-out.o # a.out, FreeBSD
#DES_ENC= asm/dx86bsdi.o asm/yx86bsdi.o # bsdi
82 83 84

# Set BF_ENC to bf_enc.o if you want to use the C version
#There are 4 x86 assember options.
B
Ben Laurie 已提交
85
BF_ENC= asm/bx86-out.o
86
#BF_ENC= bf_enc.o
87
#BF_ENC= asm/bx86-elf.o # elf
88 89 90
#BF_ENC= asm/bx86-sol.o # solaris
#BF_ENC= asm/bx86-out.o # a.out, FreeBSD
#BF_ENC= asm/bx86bsdi.o # bsdi
91

92 93
# Set CAST_ENC to c_enc.o if you want to use the C version
#There are 4 x86 assember options.
B
Ben Laurie 已提交
94
CAST_ENC= asm/cx86-out.o
95 96 97 98 99 100 101 102
#CAST_ENC= c_enc.o
#CAST_ENC= asm/cx86-elf.o # elf
#CAST_ENC= asm/cx86-sol.o # solaris
#CAST_ENC= asm/cx86-out.o # a.out, FreeBSD
#CAST_ENC= asm/cx86bsdi.o # bsdi

# Set RC4_ENC to rc4_enc.o if you want to use the C version
#There are 4 x86 assember options.
B
Ben Laurie 已提交
103
RC4_ENC= asm/rx86-out.o
104 105 106 107 108 109 110 111
#RC4_ENC= rc4_enc.o
#RC4_ENC= asm/rx86-elf.o # elf
#RC4_ENC= asm/rx86-sol.o # solaris
#RC4_ENC= asm/rx86-out.o # a.out, FreeBSD
#RC4_ENC= asm/rx86bsdi.o # bsdi

# Set RC5_ENC to rc5_enc.o if you want to use the C version
#There are 4 x86 assember options.
B
Ben Laurie 已提交
112
RC5_ENC= asm/r586-out.o
113 114 115 116 117 118 119
#RC5_ENC= rc5_enc.o
#RC5_ENC= asm/r586-elf.o # elf
#RC5_ENC= asm/r586-sol.o # solaris
#RC5_ENC= asm/r586-out.o # a.out, FreeBSD
#RC5_ENC= asm/r586bsdi.o # bsdi

# Also need MD5_ASM defined
B
Ben Laurie 已提交
120
MD5_ASM_OBJ= asm/mx86-out.o
121 122 123 124 125 126
#MD5_ASM_OBJ= asm/mx86-elf.o        # elf
#MD5_ASM_OBJ= asm/mx86-sol.o        # solaris
#MD5_ASM_OBJ= asm/mx86-out.o        # a.out, FreeBSD
#MD5_ASM_OBJ= asm/mx86bsdi.o        # bsdi

# Also need SHA1_ASM defined
B
Ben Laurie 已提交
127
SHA1_ASM_OBJ= asm/sx86-out.o
128 129 130 131 132 133
#SHA1_ASM_OBJ= asm/sx86-elf.o       # elf
#SHA1_ASM_OBJ= asm/sx86-sol.o       # solaris
#SHA1_ASM_OBJ= asm/sx86-out.o       # a.out, FreeBSD
#SHA1_ASM_OBJ= asm/sx86bsdi.o       # bsdi

# Also need RMD160_ASM defined
B
Ben Laurie 已提交
134
RMD160_ASM_OBJ= asm/rm86-out.o
135 136 137 138 139 140
#RMD160_ASM_OBJ= asm/rm86-elf.o       # elf
#RMD160_ASM_OBJ= asm/rm86-sol.o       # solaris
#RMD160_ASM_OBJ= asm/rm86-out.o       # a.out, FreeBSD
#RMD160_ASM_OBJ= asm/rm86bsdi.o       # bsdi

DIRS=   crypto ssl rsaref apps test tools
U
Ulf Möller 已提交
141 142
SHLIBDIRS= crypto ssl

143 144
# dirs in crypto to build
SDIRS=  \
145 146 147
	md2 md5 sha mdc2 hmac ripemd \
	des rc2 rc4 rc5 idea bf cast \
	bn rsa dsa dh \
148
	buffer bio stack lhash rand err objects \
149
	evp asn1 pem x509 x509v3 conf txt_db pkcs7 pkcs12 comp
150 151

MAKEFILE= Makefile.ssl
152
MAKE=     make -f Makefile.ssl
153 154 155 156 157

MAN1=1
MAN3=3
SHELL=/bin/sh

158
TOP=    .
159
ONEDIRS=out tmp
160
EDIRS=  times doc bugs util include certs ms shlib mt demos perl sf dep
161 162 163 164
WDIRS=  windows
LIBS=   libcrypto.a libssl.a 

GENERAL=        Makefile
R
Ralf S. Engelschall 已提交
165
BASENAME=       openssl
166 167 168 169 170
NAME=           $(BASENAME)-$(VERSION)
TARFILE=        $(NAME).tar
WTARFILE=       $(NAME)-win.tar
EXHEADER=       e_os.h
HEADER=         e_os.h
171

172
all: Makefile.ssl
173 174
	@for i in $(DIRS) ;\
	do \
175
	(cd $$i && echo "making all in $$i..." && \
176
	$(MAKE) CC='${CC}' PLATFORM='${PLATFORM}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' SDIRS='${SDIRS}' AR='${AR}' PROCESSOR='${PROCESSOR}' PERL='${PERL}' RANLIB='${RANLIB}' all ) || exit 1; \
177 178 179 180 181
	done;

sub_all:
	@for i in $(DIRS) ;\
	do \
182
	(cd $$i && echo "making all in $$i..." && \
183
	$(MAKE) CC='${CC}' PLATFORM='${PLATFORM}' CFLAG='${CFLAG}' SDIRS='$(SDIRS)' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' AR='${AR}' PROCESSOR='${PROCESSOR}' PERL='${PERL}' RANLIB='${RANLIB}' all ) || exit 1; \
184 185
	done;

U
Ulf Möller 已提交
186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202
linux-shared:
	for i in ${SHLIBDIRS}; do \
	rm -f lib$$i.a lib$$i.so \
		lib$$i.so.${MAJOR} lib$$i.so.${MAJOR}.${MINOR}; \
	${MAKE} CC='${CC}' PLATFORM='${PLATFORM}' CFLAG='-fPIC ${CFLAG}' SDIRS='${SDIRS}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' AR='${AR}' DIRS=$$i clean all || exit 1; \
	( set -x; ${CC}  -shared -o lib$$i.so.${MAJOR}.${MINOR} \
		-Wl,-S,-soname=lib$$i.so.${MAJOR} \
		-Wl,--whole-archive lib$$i.a \
		-Wl,--no-whole-archive -lc ) || exit 1; \
	rm -f lib$$i.a; make -C $$i clean || exit 1 ;\
	done;
	@set -x; \
	for i in ${SHLIBDIRS}; do \
	ln -s lib$$i.so.${MAJOR}.${MINOR} lib$$i.so.${MAJOR}; \
	ln -s lib$$i.so.${MAJOR} lib$$i.so; \
	done;

203
Makefile.ssl: Makefile.org
204 205 206
	@echo "Makefile.ssl is older than Makefile.org."
	@echo "Reconfigure the source tree (via 'perl Configure' or 'sh config')"
	@echo "and update the error lists (via 'make errors'), please."
207 208
	@false

209
libclean:
210
	rm -f *.a */lib */*/lib
211

212
clean:
213
	rm -f shlib/*.o *.o core a.out fluff *.map
214 215
	@for i in $(DIRS) ;\
	do \
216
	(cd $$i && echo "making clean in $$i..." && \
217
	$(MAKE) SDIRS='${SDIRS}' clean ) || exit 1; \
218
	rm -f $(LIBS); \
219
	done;
220 221
	rm -f *.a *.o speed.* *.map *.so .pure core
	rm -f $(TARFILE)
222 223
	@for i in $(ONEDIRS) ;\
	do \
224
	rm -fr $$i/*; \
225 226 227
	done

makefile.one: files
228
	$(PERL) util/mk1mf.pl >makefile.one; \
229 230
	sh util/do_ms.sh

U
Ulf Möller 已提交
231
files:
232
	$(PERL) $(TOP)/util/files.pl Makefile.ssl > $(TOP)/MINFO
233 234
	@for i in $(DIRS) ;\
	do \
235 236
	(cd $$i && echo "making 'files' in $$i..." && \
	$(MAKE) SDIRS='${SDIRS}' files ) || exit 1; \
237 238 239
	done;

links:
240
	@$(TOP)/util/point.sh Makefile.ssl Makefile
241
	@-mkdir -p include/openssl 2>/dev/null
242
	@$(TOP)/util/mklink.pl include/openssl $(EXHEADER)
243
	@for i in $(DIRS); do \
244
	(cd $$i && echo "making links in $$i..." && \
245
	$(MAKE) CC='${CC}' PLATFORM='${PLATFORM}' CFLAG='${CFLAG}' SDIRS='$(SDIRS)' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' AR='${AR}' links ) || exit 1; \
246
	done;
247
	@(OPENSSL="`pwd`/apps/openssl"; export OPENSSL; sh tools/c_rehash certs)
248 249

dclean:
250
	rm -f *.bak
251 252
	@for i in $(DIRS) ;\
	do \
253
	(cd $$i && echo "making dclean in $$i..." && \
U
Ulf Möller 已提交
254
	$(MAKE) SDIRS='${SDIRS}' PERL='${PERL}' dclean ) || exit 1; \
255 256 257
	done;

rehash:
258
	@(OPENSSL="`pwd`/apps/openssl"; export OPENSSL; sh tools/c_rehash certs)
259

260
test:   tests
261

262
tests: rehash
263
	@(cd test && echo "testing..." && \
264
	$(MAKE) CC='${CC}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' SDIRS='${SDIRS}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' AR='${AR}' tests );
265
	@apps/openssl version -a
266 267 268 269

depend:
	@for i in $(DIRS) ;\
	do \
270
	(cd $$i && echo "making dependancies $$i..." && \
271
	$(MAKE) SDIRS='${SDIRS}' DEPFLAG='${DEPFLAG}' depend ) || exit 1; \
272 273 274 275 276
	done;

lint:
	@for i in $(DIRS) ;\
	do \
277 278
	(cd $$i && echo "making lint $$i..." && \
	$(MAKE) SDIRS='${SDIRS}' lint ) || exit 1; \
279 280 281 282 283
	done;

tags:
	@for i in $(DIRS) ;\
	do \
284 285
	(cd $$i && echo "making tags $$i..." && \
	$(MAKE) SDIRS='${SDIRS}' tags ) || exit 1; \
286 287 288
	done;

errors:
289
	perl util/mkerr.pl -recurse -write
290 291

tar:
292
	@gtar --no-recursion -cvf - \
293
		`find * -depth -print | grep -v CVS | grep -v .cvsignore | grep -v STATUS | sort` |\
294
	tardy --user_number=0  --user_name=openssl \
R
Ralf S. Engelschall 已提交
295 296
	      --group_number=0 --group_name=openssl \
	      --prefix=openssl-$(VERSION) - |\
297 298
	gzip --best >../$(TARFILE).gz; \
	ls -l ../$(TARFILE).gz
299

300
dist:   
301
	$(PERL) Configure dist
302 303 304 305 306 307 308 309 310 311
	@$(MAKE) dist_pem_h
	@$(MAKE) SDIRS='${SDIRS}' clean
	@$(MAKE) tar

dist_pem_h:
	(cd crypto/pem; $(MAKE) SDIRS='${SDIRS}' CFLAG='${CFLAG}' pem.h; $(MAKE) clean)

install: all
	@-mkdir -p $(INSTALLTOP)/bin 2>/dev/null
	@-mkdir -p $(INSTALLTOP)/lib 2>/dev/null
312
	@-mkdir -p $(INSTALLTOP)/include/openssl 2>/dev/null
313
	@-mkdir -p $(OPENSSLDIR)/misc 2>/dev/null
314 315 316
	@-mkdir -p $(OPENSSLDIR)/certs 2>/dev/null
	@-mkdir -p $(OPENSSLDIR)/private 2>/dev/null
	@-mkdir -p $(OPENSSLDIR)/lib 2>/dev/null
317 318 319
	@for i in $(DIRS) ;\
	do \
	(cd $$i; echo "installing $$i..."; \
320
	$(MAKE) CC='${CC}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' OPENSSLDIR='${OPENSSLDIR}' EX_LIBS='${EX_LIBS}' SDIRS='${SDIRS}' install ); \
321 322 323
	done
	@for i in $(LIBS) ;\
	do \
324
	(       echo installing $$i; \
325
		cp $$i $(INSTALLTOP)/lib; \
326
		$(RANLIB) $(INSTALLTOP)/lib/$$i; \
327 328 329 330
		chmod 644 $(INSTALLTOP)/lib/$$i ); \
	done

# DO NOT DELETE THIS LINE -- make depend depends on it.