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

U
Ulf Möller 已提交
5 6 7
VERSION=
MAJOR=
MINOR=
8 9 10 11
SHLIB_VERSION_NUMBER=
SHLIB_VERSION_HISTORY=
SHLIB_MAJOR=
SHLIB_MINOR=
12
SHLIB_EXT=
13
PLATFORM=dist
14
OPTIONS=
15
CONFIGURE_ARGS=
16 17
SHLIB_TARGET=

18 19 20 21
# INSTALL_PREFIX is for package builders so that they can configure
# for, say, /usr/ and yet have everything installed to /tmp/somedir/usr/.
# Normally it is left empty.
INSTALL_PREFIX=
22 23 24 25
INSTALLTOP=/usr/local/ssl

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

27 28 29 30
# 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
31
#           system defines as well, i.e. _REENTERANT for Solaris 2.[34]
32 33 34 35
# 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
36 37
#           one.  32 bytes will be read from this when the random
#           number generator is initalised.
38
# SSL_FORBID_ENULL - define if you want the server to be not able to use the
39
#           NULL encryption ciphers.
40 41 42
#
# LOCK_DEBUG - turns on lots of lock debug output :-)
# REF_CHECK - turn on some xyz_free() assertions.
43
# REF_PRINT - prints some stuff on structure free.
44 45
# CRYPTO_MDEBUG - turns on my 'memory leak' detecting stuff
# MFUNC - Make all Malloc/Free/Realloc calls call
46 47 48 49 50
#       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
51 52 53
# Do not define B_ENDIAN or L_ENDIAN if 'unsigned long' == 8.  It must
# equal 4.
# PKCS1_CHECK - pkcs1 tests.
54

B
Ben Laurie 已提交
55
CC= gcc
56
#CFLAG= -DL_ENDIAN -DTERMIO -O3 -fomit-frame-pointer -m486 -Wall -Wuninitialized -DSHA1_ASM -DMD5_ASM -DRMD160_ASM
B
Ben Laurie 已提交
57
CFLAG= -DTERMIOS -DL_ENDIAN -fomit-frame-pointer -O3 -m486 -Wall -DSHA1_ASM -DMD5_ASM -DRMD160_ASM
58
DEPFLAG= 
59
PEX_LIBS= 
60
EX_LIBS= 
61
EXE_EXT= 
62 63
ARFLAGS=
AR=ar $(ARFLAGS) r
64 65
RANLIB= ranlib
PERL= perl
66
TAR= tar
R
Richard Levitte 已提交
67
TARFLAGS= --no-recursion
68
MAKEDEPPROG=makedepend
69

70 71 72 73 74 75 76 77 78 79 80 81 82 83
# 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
84

U
Ulf Möller 已提交
85 86 87 88
# For x86 assembler: Set PROCESSOR to 386 if you want to support
# the 80386.
PROCESSOR=

89 90
# Set DES_ENC to des_enc.o if you want to use the C version
#There are 4 x86 assember options.
B
Ben Laurie 已提交
91
DES_ENC= asm/dx86-out.o asm/yx86-out.o
92 93 94 95 96
#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
97 98 99

# Set BF_ENC to bf_enc.o if you want to use the C version
#There are 4 x86 assember options.
B
Ben Laurie 已提交
100
BF_ENC= asm/bx86-out.o
101
#BF_ENC= bf_enc.o
102
#BF_ENC= asm/bx86-elf.o # elf
103 104 105
#BF_ENC= asm/bx86-sol.o # solaris
#BF_ENC= asm/bx86-out.o # a.out, FreeBSD
#BF_ENC= asm/bx86bsdi.o # bsdi
106

107 108
# Set CAST_ENC to c_enc.o if you want to use the C version
#There are 4 x86 assember options.
B
Ben Laurie 已提交
109
CAST_ENC= asm/cx86-out.o
110 111 112 113 114 115 116 117
#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 已提交
118
RC4_ENC= asm/rx86-out.o
119 120 121 122 123 124 125 126
#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 已提交
127
RC5_ENC= asm/r586-out.o
128 129 130 131 132 133 134
#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 已提交
135
MD5_ASM_OBJ= asm/mx86-out.o
136 137 138 139 140 141
#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 已提交
142
SHA1_ASM_OBJ= asm/sx86-out.o
143 144 145 146 147 148
#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 已提交
149
RMD160_ASM_OBJ= asm/rm86-out.o
150 151 152 153 154
#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

155 156 157 158
# KRB5 stuff
KRB5_INCLUDES=
LIBKRB5=

159
# When we're prepared to use shared libraries in the programs we link here
160 161
# we might set SHLIB_MARK to '$(SHARED_LIBS)'.
SHLIB_MARK=
162

163
DIRS=   crypto ssl $(SHLIB_MARK) apps test tools
U
Ulf Möller 已提交
164 165
SHLIBDIRS= crypto ssl

166 167
# dirs in crypto to build
SDIRS=  \
168
	md2 md4 md5 sha mdc2 hmac ripemd \
169
	des rc2 rc4 rc5 idea bf cast \
B
Bodo Möller 已提交
170
	bn ec rsa dsa ecdsa dh ecdh dso engine aes \
171
	buffer bio stack lhash rand err objects \
172
	evp asn1 pem x509 x509v3 conf txt_db pkcs7 pkcs12 comp ocsp ui krb5
173

174 175 176 177
# tests to perform.  "alltests" is a special word indicating that all tests
# should be performed.
TESTS = alltests

178
MAKEFILE= Makefile.ssl
179
MAKE=     make -f Makefile.ssl
180

181
MANDIR=$(OPENSSLDIR)/man
182 183 184 185
MAN1=1
MAN3=3
SHELL=/bin/sh

186
TOP=    .
187
ONEDIRS=out tmp
U
Ulf Möller 已提交
188
EDIRS=  times doc bugs util include certs ms shlib mt demos perl sf dep VMS
189
WDIRS=  windows
190
LIBS=   libcrypto.a libssl.a
191 192 193 194
SHARED_CRYPTO=libcrypto$(SHLIB_EXT)
SHARED_SSL=libssl$(SHLIB_EXT)
SHARED_LIBS=
SHARED_LIBS_LINK_EXTS=
195
SHARED_LDFLAGS=
196 197

GENERAL=        Makefile
R
Ralf S. Engelschall 已提交
198
BASENAME=       openssl
199 200 201
NAME=           $(BASENAME)-$(VERSION)
TARFILE=        $(NAME).tar
WTARFILE=       $(NAME)-win.tar
202
EXHEADER=       e_os2.h
203
HEADER=         e_os.h
204

205 206 207
# When we're prepared to use shared libraries in the programs we link here
# we might remove 'clean-shared' from the targets to perform at this stage

208
all: Makefile.ssl sub_all
209 210

sub_all:
211
	@for i in $(DIRS); \
212
	do \
213
	if [ -d "$$i" ]; then \
214
		(cd $$i && echo "making all in $$i..." && \
215
		$(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}' KRB5_INCLUDES='${KRB5_INCLUDES}' LIBKRB5='${LIBKRB5}' EXE_EXT='${EXE_EXT}' SHARED_LIBS='${SHARED_LIBS}' SHLIB_EXT='${SHLIB_EXT}' SHLIB_TARGET='${SHLIB_TARGET}' all ) || exit 1; \
216 217
	else \
		$(MAKE) $$i; \
218
	fi; \
219
	done;
220

221
libcrypto$(SHLIB_EXT): libcrypto.a
222
	@if [ "$(SHLIB_TARGET)" != "" ]; then \
223
		$(MAKE) SHLIBDIRS=crypto build-shared; \
224 225 226
	else \
		echo "There's no support for shared libraries on this platform" >&2; \
	fi
227

228
libssl$(SHLIB_EXT): libcrypto$(SHLIB_EXT) libssl.a
229
	@if [ "$(SHLIB_TARGET)" != "" ]; then \
230
		$(MAKE) SHLIBDIRS=ssl SHLIBDEPS='-lcrypto' build-shared; \
231 232 233
	else \
		echo "There's no support for shared libraries on this platform" >&2; \
	fi
234 235

clean-shared:
236 237 238 239 240 241 242 243
	@for i in $(SHLIBDIRS); do \
		if [ -n "$(SHARED_LIBS_LINK_EXTS)" ]; then \
			tmp="$(SHARED_LIBS_LINK_EXTS)"; \
			for j in $${tmp:-x}; do \
				( set -x; rm -f lib$$i$$j ); \
			done; \
		fi; \
		( set -x; rm -f lib$$i$(SHLIB_EXT) ); \
244
		if [ "$(PLATFORM)" = "Cygwin" ]; then \
245 246
			( set -x; rm -f cyg$$i$(SHLIB_EXT) lib$$i$(SHLIB_EXT).a ); \
		fi; \
247
	done
248

249
link-shared:
250
	@if [ -n "$(SHARED_LIBS_LINK_EXTS)" ]; then \
251
		tmp="$(SHARED_LIBS_LINK_EXTS)"; \
252
		for i in $(SHLIBDIRS); do \
253
			prev=lib$$i$(SHLIB_EXT); \
254
			for j in $${tmp:-x}; do \
255 256
				( set -x; \
				rm -f lib$$i$$j; ln -s $$prev lib$$i$$j ); \
257 258
				prev=lib$$i$$j; \
			done; \
259 260
		done; \
	fi
261 262 263

build-shared: clean-shared do_$(SHLIB_TARGET) link-shared

264
do_bsd-gcc-shared: do_gnu-shared
265 266
do_linux-shared: do_gnu-shared
do_gnu-shared:
267
	libs='-L. ${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \
268 269
	( set -x; ${CC} ${SHARED_LDFLAGS} \
		-shared -o lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \
270
		-Wl,-soname=lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \
271
		-Wl,-Bsymbolic \
U
Ulf Möller 已提交
272
		-Wl,--whole-archive lib$$i.a \
273
		-Wl,--no-whole-archive $$libs ${EX_LIBS} -lc ) || exit 1; \
274
	libs="$$libs -l$$i"; \
275
	done
276

277 278 279 280 281 282 283
DETECT_GNU_LD=${CC} -v 2>&1 | grep '^gcc' >/dev/null 2>&1 && \
	collect2=`gcc -print-prog-name=collect2 2>&1` && \
	[ -n "$$collect2" ] && \
	my_ld=`$$collect2 --help 2>&1 | grep Usage: | sed 's/^Usage: *\([^ ][^ ]*\).*/\1/'` && \
	[ -n "$$my_ld" ] && \
	$$my_ld -v 2>&1 | grep 'GNU ld' >/dev/null 2>&1

284 285 286 287 288 289 290 291 292 293 294
# For Darwin AKA Mac OS/X (dyld)
do_darwin-shared: 
	libs='-L. ${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \
	( set -x ; ${CC} --verbose -dynamiclib -o lib$$i${SHLIB_EXT} \
		lib$$i.a $$libs -all_load -current_version ${SHLIB_MAJOR}.${SHLIB_MINOR} \
		-compatibility_version ${SHLIB_MAJOR}.`echo ${SHLIB_MINOR} | cut -d. -f1` \
		-install_name ${INSTALLTOP}/lib/lib$$i${SHLIB_EXT} ) || exit 1; \
	libs="$$libs -l`basename $$i${SHLIB_EXT} .dylib`"; \
	echo "" ; \
	done

295 296 297
do_cygwin-shared:
	libs='-L. ${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \
	( set -x; ${CC}  -shared -o cyg$$i.dll \
298
		-Wl,-Bsymbolic \
299 300 301 302 303 304
		-Wl,--whole-archive lib$$i.a \
		-Wl,--out-implib,lib$$i.dll.a \
		-Wl,--no-whole-archive $$libs ) || exit 1; \
	libs="$$libs -l$$i"; \
	done

305
# This assumes that GNU utilities are *not* used
306
do_alpha-osf1-shared:
307 308 309 310
	if ${DETECT_GNU_LD}; then \
		$(MAKE) do_gnu-shared; \
	else \
		libs='-L. ${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \
311 312
		( set -x; ${CC} ${SHARED_LDFLAGS} \
			-shared -o lib$$i.so \
313 314 315 316 317
			-set_version "${SHLIB_VERSION_HISTORY}${SHLIB_VERSION_NUMBER}" \
			-all lib$$i.a -none $$libs ${EX_LIBS} -lc ) || exit 1; \
		libs="$$libs -l$$i"; \
		done; \
	fi
U
Ulf Möller 已提交
318

319 320 321 322
# This assumes that GNU utilities are *not* used
# The difference between alpha-osf1-shared and tru64-shared is the `-msym'
# option passed to the linker.
do_tru64-shared:
323 324 325 326
	if ${DETECT_GNU_LD}; then \
		$(MAKE) do_gnu-shared; \
	else \
		libs='-L. ${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \
327 328
		( set -x; ${CC} ${SHARED_LDFLAGS} \
			-shared -msym -o lib$$i.so \
329 330 331 332 333
			-set_version "${SHLIB_VERSION_HISTORY}${SHLIB_VERSION_NUMBER}" \
			-all lib$$i.a -none $$libs ${EX_LIBS} -lc ) || exit 1; \
		libs="$$libs -l$$i"; \
		done; \
	fi
334 335 336 337 338

# This assumes that GNU utilities are *not* used
# The difference between tru64-shared and tru64-shared-rpath is the
# -rpath ${INSTALLTOP}/lib passed to the linker.
do_tru64-shared-rpath:
339 340 341 342
	if ${DETECT_GNU_LD}; then \
		$(MAKE) do_gnu-shared; \
	else \
		libs='-L. ${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \
343 344
		( set -x; ${CC} ${SHARED_LDFLAGS} \
			-shared -msym -o lib$$i.so \
345 346 347 348 349 350
			-rpath  ${INSTALLTOP}/lib \
			-set_version "${SHLIB_VERSION_HISTORY}${SHLIB_VERSION_NUMBER}" \
			-all lib$$i.a -none $$libs ${EX_LIBS} -lc ) || exit 1; \
		libs="$$libs -l$$i"; \
		done; \
	fi
351 352


353
# This assumes that GNU utilities are *not* used
354
do_solaris-shared:
355 356 357 358 359
	if ${DETECT_GNU_LD}; then \
		$(MAKE) do_gnu-shared; \
	else \
		libs='-L. ${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \
		( PATH=/usr/ccs/bin:$$PATH ; export PATH; \
360 361
		  set -x; ${CC} ${SHARED_LDFLAGS} \
			-G -o lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \
362 363
			-h lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \
			-z allextract lib$$i.a $$libs ${EX_LIBS} -lc ) || exit 1; \
R
Richard Levitte 已提交
364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382
		libs="$$libs -l$$i"; \
		done; \
	fi

# OpenServer 5 native compilers used
do_svr3-shared:
	if ${DETECT_GNU_LD}; then \
		$(MAKE) do_gnu-shared; \
	else \
		libs='-L. ${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \
		( PATH=/usr/ccs/bin:$$PATH ; export PATH; \
		  find . -name "*.o" -print > allobjs ; \
		  OBJS= ; export OBJS ; \
		  for obj in `ar t lib$$i.a` ; do \
		    OBJS="$${OBJS} `grep $$obj allobjs`" ; \
		  done ; \
		  set -x; ${CC}  -G -o lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \
			-h lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \
			$${OBJS} $$libs ${EX_LIBS} ) || exit 1; \
383 384 385
		libs="$$libs -l$$i"; \
		done; \
	fi
386

387 388
# UnixWare 7 and OpenUNIX 8 native compilers used
do_svr5-shared:
389 390 391 392 393 394 395 396 397 398
	if ${DETECT_GNU_LD}; then \
		$(MAKE) do_gnu-shared; \
	else \
		libs='-L. ${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \
		( PATH=/usr/ccs/bin:$$PATH ; export PATH; \
		  find . -name "*.o" -print > allobjs ; \
		  OBJS= ; export OBJS ; \
		  for obj in `ar t lib$$i.a` ; do \
		    OBJS="$${OBJS} `grep $$obj allobjs`" ; \
		  done ; \
399 400
		  set -x; ${CC} ${SHARED_LDFLAGS} \
			-G -o lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \
401 402 403 404 405
			-h lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \
			$${OBJS} $$libs ${EX_LIBS} ) || exit 1; \
		libs="$$libs -l$$i"; \
		done; \
	fi
406

407 408
# This assumes that GNU utilities are *not* used
do_irix-shared:
409 410 411 412
	if ${DETECT_GNU_LD}; then \
		$(MAKE) do_gnu-shared; \
	else \
		libs='-L. ${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \
413 414
		( set -x; ${CC} ${SHARED_LDFLAGS} \
			-shared -o lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \
415 416 417 418 419
			-Wl,-soname,lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \
			-all lib$$i.a $$libs ${EX_LIBS} -lc) || exit 1; \
		libs="$$libs -l$$i"; \
		done; \
	fi
420

421
# This assumes that GNU utilities are *not* used
422 423 424 425 426 427 428 429 430 431
# HP-UX includes the full pathname of libs we depend on, so we would get
# ./libcrypto (with ./ as path information) compiled into libssl, hence
# we omit the SHLIBDEPS. Applications must be linked with -lssl -lcrypto
# anyway.
# The object modules are loaded from lib$i.a using the undocumented -Fl
# option.
#
# WARNING: Until DSO is fixed to support a search path, we support SHLIB_PATH
#          by temporarily specifying "+s"!
#
432
do_hpux-shared:
433
	for i in ${SHLIBDIRS}; do \
434 435
	( set -x; /usr/ccs/bin/ld ${SHARED_LDFLAGS} \
 		+vnocompatwarnings \
436 437
		-b -z +s \
		-o lib$$i.sl.${SHLIB_MAJOR}.${SHLIB_MINOR} \
438
		+h lib$$i.sl.${SHLIB_MAJOR}.${SHLIB_MINOR} \
439
		-Fl lib$$i.a -ldld -lc ) || exit 1; \
440
	chmod a=rx lib$$i.sl.${SHLIB_MAJOR}.${SHLIB_MINOR}; \
441 442 443
	done

# This assumes that GNU utilities are *not* used
444 445 446 447 448 449 450 451
# HP-UX includes the full pathname of libs we depend on, so we would get
# ./libcrypto (with ./ as path information) compiled into libssl, hence
# we omit the SHLIBDEPS. Applications must be linked with -lssl -lcrypto
# anyway.
#
# HP-UX in 64bit mode has "+s" enabled by default; it will search for
# shared libraries along LD_LIBRARY_PATH _and_ SHLIB_PATH.
#
452
do_hpux64-shared:
453
	for i in ${SHLIBDIRS}; do \
454 455
	( set -x; /usr/ccs/bin/ld ${SHARED_LDFLAGS} \
 		-b -z \
456
		-o lib$$i.sl.${SHLIB_MAJOR}.${SHLIB_MINOR} \
457
		+h lib$$i.sl.${SHLIB_MAJOR}.${SHLIB_MINOR} \
458
		+forceload lib$$i.a -ldl -lc ) || exit 1; \
459
	chmod a=rx lib$$i.sl.${SHLIB_MAJOR}.${SHLIB_MINOR}; \
460 461
	done

462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481
# The following method is said to work on all platforms.  Tests will
# determine if that's how it's gong to be used.
# This assumes that for all but GNU systems, GNU utilities are *not* used.
# ALLSYMSFLAGS would be:
#  GNU systems: --whole-archive
#  Tru64 Unix:  -all
#  Solaris:     -z allextract
#  Irix:        -all
#  HP/UX-32bit: -Fl
#  HP/UX-64bit: +forceload
#  AIX:		-bnogc
# SHAREDFLAGS would be:
#  GNU systems: -shared -Wl,-soname=lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR}
#  Tru64 Unix:  -shared \
#		-set_version "${SHLIB_VERSION_HISTORY}${SHLIB_VERSION_NUMBER}"
#  Solaris:     -G -h lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR}
#  Irix:        -shared -Wl,-soname,lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR}
#  HP/UX-32bit: +vnocompatwarnings -b -z +s \
#		+h lib$$i.sl.${SHLIB_MAJOR}.${SHLIB_MINOR}
#  HP/UX-64bit: -b -z +h lib$$i.sl.${SHLIB_MAJOR}.${SHLIB_MINOR}
482
#  AIX:		-G -bE:lib$$i.exp -bM:SRE
483 484 485 486 487 488 489 490 491
# SHAREDCMD would be:
#  GNU systems: $(CC)
#  Tru64 Unix:  $(CC)
#  Solaris:     $(CC)
#  Irix:        $(CC)
#  HP/UX-32bit: /usr/ccs/bin/ld
#  HP/UX-64bit: /usr/ccs/bin/ld
#  AIX:		$(CC)
ALLSYMSFLAG=-bnogc
492
SHAREDFLAGS=${SHARED_LDFLAGS} -G -bE:lib$$i.exp -bM:SRE
493 494 495 496 497 498 499 500 501 502 503 504
SHAREDCMD=$(CC)
do_aix-shared:
	libs='-L. ${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \
	( set -x; \
	  ld -r -o $$i.o $(ALLSYMSFLAG) lib$$i.a && \
	  ( nm -Pg lib$$i.o | grep ' [BD] ' | cut -f1 -d' ' > lib$$i.exp; \
	    $(SHAREDCMD) $(SHAREDFLAG) -o lib$$i.so lib$$i.o \
		$$libs ${EX_LIBS} ) ) \
	|| exit 1; \
	libs="$$libs -l$$i"; \
	done

505 506 507 508 509 510 511 512 513 514 515 516 517 518
do_reliantunix-shared:
	libs='-L. ${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \
	tmpdir=/tmp/openssl.$$$$ ; rm -rf $$tmpdir ; \
	( set -x; \
	  ( Opwd=`pwd` ; mkdir $$tmpdir || exit 1; \
	    cd $$tmpdir || exit 1 ; ar x $$Opwd/lib$$i.a ; \
	    ${CC} -G -o lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR} *.o \
	  ) || exit 1; \
	  cp $$tmpdir/lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR} . ; \
	) || exit 1; \
	rm -rf $$tmpdir ; \
	libs="$$libs -l$$i"; \
	done

519
Makefile.ssl: Makefile.org
520
	@echo "Makefile.ssl is older than Makefile.org."
521
	@echo "Reconfigure the source tree (via './config' or 'perl Configure'), please."
522 523
	@false

524
libclean:
525
	rm -f *.a */lib */*/lib
526

527
clean:
528
	rm -f shlib/*.o *.o core a.out fluff *.map rehash.time testlog make.log cctest cctest.c
529 530
	@for i in $(DIRS) ;\
	do \
531
	if [ -d "$$i" ]; then \
532 533 534 535
		(cd $$i && echo "making clean in $$i..." && \
		$(MAKE) SDIRS='${SDIRS}' clean ) || exit 1; \
		rm -f $(LIBS); \
	fi; \
536
	done;
537 538
	rm -f *.a *.o speed.* *.map *.so .pure core
	rm -f $(TARFILE)
539 540
	@for i in $(ONEDIRS) ;\
	do \
541
	rm -fr $$i/*; \
542 543 544
	done

makefile.one: files
545
	$(PERL) util/mk1mf.pl >makefile.one; \
546 547
	sh util/do_ms.sh

U
Ulf Möller 已提交
548
files:
549
	$(PERL) $(TOP)/util/files.pl Makefile.ssl > $(TOP)/MINFO
550 551
	@for i in $(DIRS) ;\
	do \
552
	if [ -d "$$i" ]; then \
553 554 555
		(cd $$i && echo "making 'files' in $$i..." && \
		$(MAKE) SDIRS='${SDIRS}' PERL='${PERL}' files ) || exit 1; \
	fi; \
556 557 558
	done;

links:
559
	@$(TOP)/util/point.sh Makefile.ssl Makefile
560
	@$(PERL) $(TOP)/util/mkdir-p.pl include/openssl
561
	@$(PERL) $(TOP)/util/mklink.pl include/openssl $(EXHEADER)
562
	@for i in $(DIRS); do \
563
	if [ -d "$$i" ]; then \
564
		(cd $$i && echo "making links in $$i..." && \
565
		$(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}' PERL='${PERL}' KRB5_INCLUDES='${KRB5_INCLUDES}' LIBKRB5='${LIBKRB5}' links ) || exit 1; \
566
	fi; \
567 568
	done;

569 570 571 572
gentests:
	@(cd test && echo "generating dummy tests (if needed)..." && \
	$(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}' TESTS='${TESTS}' KRB5_INCLUDES='${KRB5_INCLUDES}' LIBKRB5='${LIBKRB5}' EXE_EXT='${EXE_EXT}' SHARED_LIBS='${SHARED_LIBS}' SHLIB_EXT='${SHLIB_EXT}' SHLIB_TARGET='${SHLIB_TARGET}' TESTS='${TESTS}' OPENSSL_DEBUG_MEMORY=on generate );

573
dclean:
574
	rm -f *.bak
575 576
	@for i in $(DIRS) ;\
	do \
577
	if [ -d "$$i" ]; then \
578 579 580
		(cd $$i && echo "making dclean in $$i..." && \
		$(MAKE) SDIRS='${SDIRS}' PERL='${PERL}' dclean ) || exit 1; \
	fi; \
581 582
	done;

583 584
rehash: rehash.time
rehash.time: certs
585 586
	@(OPENSSL="`pwd`/apps/openssl"; OPENSSL_DEBUG_MEMORY=on; \
		export OPENSSL OPENSSL_DEBUG_MEMORY; \
587 588
		LD_LIBRARY_PATH="`pwd`"; DYLD_LIBRARY_PATH="`pwd`"; SHLIB_PATH="`pwd`"; LIBPATH="`pwd`"; \
		export LD_LIBRARY_PATH DYLD_LIBRARY_PATH SHLIB_PATH LIBPATH; \
589
		$(PERL) tools/c_rehash certs)
B
Bodo Möller 已提交
590
	touch rehash.time
591

592
test:   tests
593

594
tests: rehash
595
	@(cd test && echo "testing..." && \
596
	$(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}' TESTS='${TESTS}' KRB5_INCLUDES='${KRB5_INCLUDES}' LIBKRB5='${LIBKRB5}' EXE_EXT='${EXE_EXT}' SHARED_LIBS='${SHARED_LIBS}' SHLIB_EXT='${SHLIB_EXT}' SHLIB_TARGET='${SHLIB_TARGET}' TESTS='${TESTS}' OPENSSL_DEBUG_MEMORY=on tests );
597 598
	@LD_LIBRARY_PATH="`pwd`"; DYLD_LIBRARY_PATH="`pwd`"; SHLIB_PATH="`pwd`"; LIBPATH="`pwd`"; \
		export LD_LIBRARY_PATH DYLD_LIBRARY_PATH SHLIB_PATH LIBPATH; \
599
		apps/openssl version -a
600

601 602 603
report:
	@$(PERL) util/selftest.pl

604 605 606
depend:
	@for i in $(DIRS) ;\
	do \
607
	if [ -d "$$i" ]; then \
608
		(cd $$i && echo "making dependencies $$i..." && \
609
		$(MAKE) SDIRS='${SDIRS}' CFLAG='${CFLAG}' DEPFLAG='${DEPFLAG}' MAKEDEPPROG='${MAKEDEPPROG}' KRB5_INCLUDES='${KRB5_INCLUDES}' PERL='${PERL}' depend ) || exit 1; \
610
	fi; \
611 612 613 614 615
	done;

lint:
	@for i in $(DIRS) ;\
	do \
616
	if [ -d "$$i" ]; then \
617 618 619
		(cd $$i && echo "making lint $$i..." && \
		$(MAKE) SDIRS='${SDIRS}' lint ) || exit 1; \
	fi; \
620 621 622 623 624
	done;

tags:
	@for i in $(DIRS) ;\
	do \
625
	if [ -d "$$i" ]; then \
626 627 628
		(cd $$i && echo "making tags $$i..." && \
		$(MAKE) SDIRS='${SDIRS}' tags ) || exit 1; \
	fi; \
629 630 631
	done;

errors:
632
	$(PERL) util/mkerr.pl -recurse -write
633
	(cd crypto/engine; $(MAKE) PERL=$(PERL) errors)
634

635
stacks:
636
	$(PERL) util/mkstack.pl -write
637

638
util/libeay.num::
639
	$(PERL) util/mkdef.pl crypto update
640 641

util/ssleay.num::
642
	$(PERL) util/mkdef.pl ssl update
643

644
crypto/objects/obj_dat.h: crypto/objects/obj_dat.pl crypto/objects/obj_mac.h
645
	$(PERL) crypto/objects/obj_dat.pl crypto/objects/obj_mac.h crypto/objects/obj_dat.h
B
typo  
Bodo Möller 已提交
646
crypto/objects/obj_mac.h: crypto/objects/objects.pl crypto/objects/objects.txt crypto/objects/obj_mac.num
647
	$(PERL) crypto/objects/objects.pl crypto/objects/objects.txt crypto/objects/obj_mac.num crypto/objects/obj_mac.h
648

649
TABLE: Configure
B
Bodo Möller 已提交
650
	(echo 'Output of `Configure TABLE'"':"; \
651
	$(PERL) Configure TABLE) > TABLE
652

653
update: depend errors stacks util/libeay.num util/ssleay.num crypto/objects/obj_dat.h TABLE
654

655 656 657 658 659
# Build distribution tar-file. As the list of files returned by "find" is
# pretty long, on several platforms a "too many arguments" error or similar
# would occur. Therefore the list of files is temporarily stored into a file
# and read directly, requiring GNU-Tar. Call "make TAR=gtar dist" if the normal
# tar does not support the --files-from option.
660
tar:
661 662
	find * \! -path CVS/\* \! -path \*/CVS/\* \! -name CVS \! -name .cvsignore \! -name STATUS \! -name TABLE | sort > ../$(TARFILE).list; \
	$(TAR) $(TARFLAGS) --files-from ../$(TARFILE).list -cvf - | \
663
	tardy --user_number=0  --user_name=openssl \
R
Ralf S. Engelschall 已提交
664 665
	      --group_number=0 --group_name=openssl \
	      --prefix=openssl-$(VERSION) - |\
666
	gzip --best >../$(TARFILE).gz; \
667
	rm -f ../$(TARFILE).list; \
668
	ls -l ../$(TARFILE).gz
669

670 671
tar-snap:
	@$(TAR) $(TARFLAGS) -cvf - \
672
		`find * \! -path CVS/\* \! -path \*/CVS/\* \! -name CVS \! -name .cvsignore \! -name STATUS \! -name TABLE \! -name '*.o' \! -name '*.a' \! -name '*.so' \! -name '*.so.*'  \! -name 'openssl' \! -name '*test' \! -name '.#*' \! -name '*~' | sort` |\
673 674 675 676 677
	tardy --user_number=0  --user_name=openssl \
	      --group_number=0 --group_name=openssl \
	      --prefix=openssl-$(VERSION) - > ../$(TARFILE);\
	ls -l ../$(TARFILE)

678
dist:   
679
	$(PERL) Configure dist
680 681
	@$(MAKE) dist_pem_h
	@$(MAKE) SDIRS='${SDIRS}' clean
682
	@$(MAKE) TAR='${TAR}' TARFLAGS='${TARFLAGS}' tar
683 684

dist_pem_h:
U
Ulf Möller 已提交
685
	(cd crypto/pem; $(MAKE) CC='${CC}' SDIRS='${SDIRS}' CFLAG='${CFLAG}' pem.h; $(MAKE) clean)
686

687
install: all install_docs
B
Bodo Möller 已提交
688 689 690 691 692 693
	@$(PERL) $(TOP)/util/mkdir-p.pl $(INSTALL_PREFIX)$(INSTALLTOP)/bin \
		$(INSTALL_PREFIX)$(INSTALLTOP)/lib \
		$(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl \
		$(INSTALL_PREFIX)$(OPENSSLDIR)/misc \
		$(INSTALL_PREFIX)$(OPENSSLDIR)/certs \
		$(INSTALL_PREFIX)$(OPENSSLDIR)/private \
694
		$(INSTALL_PREFIX)$(OPENSSLDIR)/lib
B
Bodo Möller 已提交
695 696 697 698 699
	@for i in $(EXHEADER) ;\
	do \
	(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
	done;
700 701
	@for i in $(DIRS) ;\
	do \
702
	if [ -d "$$i" ]; then \
703
		(cd $$i; echo "installing $$i..."; \
704
		$(MAKE) CC='${CC}' CFLAG='${CFLAG}' INSTALL_PREFIX='${INSTALL_PREFIX}' INSTALLTOP='${INSTALLTOP}' OPENSSLDIR='${OPENSSLDIR}' EX_LIBS='${EX_LIBS}' SDIRS='${SDIRS}' RANLIB='${RANLIB}' EXE_EXT='${EXE_EXT}' install ); \
705
	fi; \
706 707 708
	done
	@for i in $(LIBS) ;\
	do \
709 710 711
		if [ -f "$$i" ]; then \
		(       echo installing $$i; \
			cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/lib; \
712
			$(RANLIB) $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i; \
713
			chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i ); \
L
Lutz Jänicke 已提交
714 715
		fi; \
	done;
716 717 718 719
	@if [ -n "$(SHARED_LIBS)" ]; then \
		tmp="$(SHARED_LIBS)"; \
		for i in $${tmp:-x}; \
		do \
720
			if [ -f "$$i" -o -f "$$i.a" ]; then \
721
			(       echo installing $$i; \
722
				if [ "$(PLATFORM)" != "Cygwin" ]; then \
723
					cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/lib; \
724
					chmod 555 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i; \
725 726 727 728 729 730 731
				else \
					c=`echo $$i | sed 's/^lib/cyg/'`; \
					cp $$c $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c; \
					chmod 755 $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c; \
					cp $$i.a $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.a; \
					chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.a; \
				fi ); \
L
Lutz Jänicke 已提交
732
			fi; \
733 734 735
		done; \
		(	here="`pwd`"; \
			cd $(INSTALL_PREFIX)$(INSTALLTOP)/lib; \
736
			$(MAKE) -f $$here/Makefile link-shared ); \
737
	fi
738 739 740

install_docs:
	@$(PERL) $(TOP)/util/mkdir-p.pl \
741 742 743 744
		$(INSTALL_PREFIX)$(MANDIR)/man1 \
		$(INSTALL_PREFIX)$(MANDIR)/man3 \
		$(INSTALL_PREFIX)$(MANDIR)/man5 \
		$(INSTALL_PREFIX)$(MANDIR)/man7
745
	@pod2man=`cd util; ./pod2mantest ignore`; \
746
	for i in doc/apps/*.pod; do \
747
		fn=`basename $$i .pod`; \
748
		if [ "$$fn" = "config" ]; then sec=5; else sec=1; fi; \
749
		echo "installing man$$sec/`basename $$i .pod`.$$sec"; \
750
		(cd `$(PERL) util/dirname.pl $$i`; \
751
		sh -c "$(PERL) $$pod2man \
752 753
			--section=$$sec --center=OpenSSL \
			--release=$(VERSION) `basename $$i`") \
754
			>  $(INSTALL_PREFIX)$(MANDIR)/man$$sec/`basename $$i .pod`.$$sec; \
755
	done; \
756
	for i in doc/crypto/*.pod doc/ssl/*.pod; do \
757
		fn=`basename $$i .pod`; \
758
		if [ "$$fn" = "des_modes" ]; then sec=7; else sec=3; fi; \
759
		echo "installing man$$sec/`basename $$i .pod`.$$sec"; \
760
		(cd `$(PERL) util/dirname.pl $$i`; \
761
		sh -c "$(PERL) $$pod2man \
762 763
			--section=$$sec --center=OpenSSL \
			--release=$(VERSION) `basename $$i`") \
764
			>  $(INSTALL_PREFIX)$(MANDIR)/man$$sec/`basename $$i .pod`.$$sec; \
765
	done
766 767

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