Makefile.org 26.2 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 22
# HERE indicates where this Makefile lives.  This can be used to indicate
# where sub-Makefiles are expected to be.  Currently has very limited usage,
# and should probably not be bothered with at all.
HERE=.

23 24 25 26
# 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=
27 28 29 30
INSTALLTOP=/usr/local/ssl

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

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

60 61
CC= cc
CFLAG= -O
62
DEPFLAG= 
63
PEX_LIBS= 
64
EX_LIBS= 
65
EXE_EXT= 
66 67
ARFLAGS=
AR=ar $(ARFLAGS) r
68
RANLIB= ranlib
69
NM= nm
70
PERL= perl
71
TAR= tar
R
Richard Levitte 已提交
72
TARFLAGS= --no-recursion
73
MAKEDEPPROG=makedepend
D
Dr. Stephen Henson 已提交
74
LIBDIR=lib
75

76 77 78 79 80
# We let the C compiler driver to take care of .s files. This is done in
# order to be excused from maintaining a separate set of architecture
# dependent assembler flags. E.g. if you throw -mcpu=ultrasparc at SPARC
# gcc, then the driver will automatically translate it to -xarch=v8plus
# and pass it down to assembler.
81
#AS=$(CC) -c
82
ASFLAG=$(CFLAG)
83

84 85 86 87 88 89
# For x86 assembler: Set PROCESSOR to 386 if you want to support
# the 80386.
PROCESSOR=

# CPUID module collects small commonly used assembler snippets
CPUID_OBJ= 
90
BN_ASM= bn_asm.o
91
DES_ENC= des_enc.o fcrypt_b.o
A
Andy Polyakov 已提交
92
AES_ENC= aes_core.o aes_cbc.o
93 94 95 96 97 98 99
BF_ENC= bf_enc.o
CAST_ENC= c_enc.o
RC4_ENC= rc4_enc.o
RC5_ENC= rc5_enc.o
MD5_ASM_OBJ= 
SHA1_ASM_OBJ= 
RMD160_ASM_OBJ= 
100
WP_ASM_OBJ=
101
CMLL_ENC=
102
MODES_ASM_OBJ=
103
ENGINES_ASM_OBJ=
A
Andy Polyakov 已提交
104
PERLASM_SCHEME=
105

106 107
# KRB5 stuff
KRB5_INCLUDES=
108
LIBKRB5=
109

D
Dr. Stephen Henson 已提交
110 111 112 113
# Zlib stuff
ZLIB_INCLUDE=
LIBZLIB=

114 115 116 117
# This is the location of fipscanister.o and friends.
# The FIPS module build will place it $(INSTALLTOP)/lib
# but since $(INSTALLTOP) can only take the default value
# when the module is built it will be in /usr/local/ssl/lib
D
typo  
Dr. Stephen Henson 已提交
118
# $(INSTALLTOP) for this build may be different so hard
119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
# code the path.

FIPSLIBDIR=/usr/local/ssl/$(LIBDIR)/

# This is set to "y" if fipscanister.o is compiled internally as
# opposed to coming from an external validated location.

FIPSCANISTERINTERNAL=n

# The location of the library which contains fipscanister.o
# normally it will be libcrypto unless fipsdso is set in which
# case it will be libfips. If not compiling in FIPS mode at all
# this is empty making it a useful test for a FIPS compile.

FIPSCANLIB=

# Shared library base address. Currently only used on Windows.
#

BASEADDR=

DIRS=   crypto fips ssl engines apps test tools
141
ENGDIRS= ccgost
U
Ulf Möller 已提交
142 143
SHLIBDIRS= crypto ssl

144 145
# dirs in crypto to build
SDIRS=  \
146
	objects \
147
	md2 md4 md5 sha mdc2 hmac ripemd whrlpool \
A
Andy Polyakov 已提交
148
	des aes rc2 rc4 rc5 idea bf cast camellia seed modes \
149
	bn ec rsa dsa ecdsa dh ecdh dso engine \
150
	buffer bio stack lhash rand err \
151
	evp asn1 pem x509 x509v3 conf txt_db pkcs7 pkcs12 comp ocsp ui krb5 \
B
Ben Laurie 已提交
152
	cms pqueue ts jpake srp store cmac
A
Andy Polyakov 已提交
153 154
# keep in mind that the above list is adjusted by ./Configure
# according to no-xxx arguments...
155

156 157 158 159
# tests to perform.  "alltests" is a special word indicating that all tests
# should be performed.
TESTS = alltests

B
Ben Laurie 已提交
160
MAKEFILE= Makefile
161

162
MANDIR=$(OPENSSLDIR)/man
163 164
MAN1=1
MAN3=3
165
MANSUFFIX=
U
Ulf Möller 已提交
166 167
HTMLSUFFIX=html
HTMLDIR=$(OPENSSLDIR)/html
168 169
SHELL=/bin/sh

170
TOP=    .
171
ONEDIRS=out tmp
U
Ulf Möller 已提交
172
EDIRS=  times doc bugs util include certs ms shlib mt demos perl sf dep VMS
173
WDIRS=  windows
174
LIBS=   libcrypto.a libssl.a
175 176 177 178
SHARED_CRYPTO=libcrypto$(SHLIB_EXT)
SHARED_SSL=libssl$(SHLIB_EXT)
SHARED_LIBS=
SHARED_LIBS_LINK_EXTS=
179
SHARED_LDFLAGS=
180 181

GENERAL=        Makefile
R
Ralf S. Engelschall 已提交
182
BASENAME=       openssl
183 184 185
NAME=           $(BASENAME)-$(VERSION)
TARFILE=        $(NAME).tar
WTARFILE=       $(NAME)-win.tar
186
EXHEADER=       e_os2.h
187
HEADER=         e_os.h
188

189
all: Makefile build_all openssl.pc libssl.pc libcrypto.pc
190

A
Andy Polyakov 已提交
191
# as we stick to -e, CLEARENV ensures that local variables in lower
192 193 194 195 196
# Makefiles remain local and variable. $${VAR+VAR} is tribute to Korn
# shell, which [annoyingly enough] terminates unset with error if VAR
# is not present:-( TOP= && unset TOP is tribute to HP-UX /bin/sh,
# which terminates unset with error if no variable was present:-(
CLEARENV=	TOP= && unset TOP $${LIB+LIB} $${LIBS+LIBS}	\
A
Andy Polyakov 已提交
197 198 199 200 201 202
		$${INCLUDE+INCLUDE} $${INCLUDES+INCLUDES}	\
		$${DIR+DIR} $${DIRS+DIRS} $${SRC+SRC}		\
		$${LIBSRC+LIBSRC} $${LIBOBJ+LIBOBJ} $${ALL+ALL}	\
		$${EXHEADER+EXHEADER} $${HEADER+HEADER}		\
		$${GENERAL+GENERAL} $${CFLAGS+CFLAGS}		\
		$${ASFLAGS+ASFLAGS} $${AFLAGS+AFLAGS}		\
203
		$${LDCMD+LDCMD} $${LDFLAGS+LDFLAGS} $${SCRIPTS+SCRIPTS}	\
A
Andy Polyakov 已提交
204
		$${SHAREDCMD+SHAREDCMD} $${SHAREDFLAGS+SHAREDFLAGS}	\
A
Andy Polyakov 已提交
205 206
		$${SHARED_LIB+SHARED_LIB} $${LIBEXTRAS+LIBEXTRAS}

207 208
BUILDENV=	PLATFORM='$(PLATFORM)' PROCESSOR='$(PROCESSOR)' \
		CC='$(CC)' CFLAG='$(CFLAG)' 			\
209
		ASFLAG='$(CFLAG) -c'			\
210
		AR='$(AR)' NM='$(NM)' RANLIB='$(RANLIB)'	\
211
		CROSS_COMPILE='$(CROSS_COMPILE)'	\
212
		PERL='$(PERL)' ENGDIRS='$(ENGDIRS)'		\
D
Dr. Stephen Henson 已提交
213
		SDIRS='$(SDIRS)' LIBRPATH='$(INSTALLTOP)/$(LIBDIR)'	\
214 215
		INSTALL_PREFIX='$(INSTALL_PREFIX)'		\
		INSTALLTOP='$(INSTALLTOP)' OPENSSLDIR='$(OPENSSLDIR)'	\
D
Dr. Stephen Henson 已提交
216
		LIBDIR='$(LIBDIR)'				\
217 218 219 220 221
		MAKEDEPEND='$$$${TOP}/util/domd $$$${TOP} -MD $(MAKEDEPPROG)' \
		DEPFLAG='-DOPENSSL_NO_DEPRECATED $(DEPFLAG)'	\
		MAKEDEPPROG='$(MAKEDEPPROG)'			\
		SHARED_LDFLAGS='$(SHARED_LDFLAGS)'		\
		KRB5_INCLUDES='$(KRB5_INCLUDES)' LIBKRB5='$(LIBKRB5)'	\
D
Dr. Stephen Henson 已提交
222
		ZLIB_INCLUDE='$(ZLIB_INCLUDE)' LIBZLIB='$(LIBZLIB)'	\
223 224 225 226 227 228 229 230 231 232 233 234
		EXE_EXT='$(EXE_EXT)' SHARED_LIBS='$(SHARED_LIBS)'	\
		SHLIB_EXT='$(SHLIB_EXT)' SHLIB_TARGET='$(SHLIB_TARGET)'	\
		PEX_LIBS='$(PEX_LIBS)' EX_LIBS='$(EX_LIBS)'	\
		CPUID_OBJ='$(CPUID_OBJ)'			\
		BN_ASM='$(BN_ASM)' DES_ENC='$(DES_ENC)' 	\
		AES_ENC='$(AES_ENC)' CMLL_ENC='$(CMLL_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)'		\
		WP_ASM_OBJ='$(WP_ASM_OBJ)'			\
235
		MODES_ASM_OBJ='$(MODES_ASM_OBJ)'		\
236
		ENGINES_ASM_OBJ='$(ENGINES_ASM_OBJ)'		\
237
		PERLASM_SCHEME='$(PERLASM_SCHEME)'		\
238 239 240 241
		FIPSLIBDIR='${FIPSLIBDIR}'			\
		FIPSCANLIB="$${FIPSCANLIB:-$(FIPSCANLIB)}"	\
		FIPSCANISTERINTERNAL='${FIPSCANISTERINTERNAL}'	\
		FIPS_EX_OBJ='${FIPS_EX_OBJ}'	\
A
Andy Polyakov 已提交
242 243 244
		THIS=$${THIS:-$@} MAKEFILE=Makefile MAKEOVERRIDES=
# MAKEOVERRIDES= effectively "equalizes" GNU-ish and SysV-ish make flavors,
# which in turn eliminates ambiguities in variable treatment with -e.
245

R
Richard Levitte 已提交
246 247 248 249 250 251 252 253 254 255 256 257 258
# BUILD_CMD is a generic macro to build a given target in a given
# subdirectory.  The target must be given through the shell variable
# `target' and the subdirectory to build in must be given through `dir'.
# This macro shouldn't be used directly, use RECURSIVE_BUILD_CMD or
# BUILD_ONE_CMD instead.
#
# BUILD_ONE_CMD is a macro to build a given target in a given
# subdirectory if that subdirectory is part of $(DIRS).  It requires
# exactly the same shell variables as BUILD_CMD.
#
# RECURSIVE_BUILD_CMD is a macro to build a given target in all
# subdirectories defined in $(DIRS).  It requires that the target
# is given through the shell variable `target'.
A
Andy Polyakov 已提交
259 260 261 262 263 264
BUILD_CMD=  if [ -d "$$dir" ]; then \
	    (	cd $$dir && echo "making $$target in $$dir..." && \
		$(CLEARENV) && $(MAKE) -e $(BUILDENV) TOP=.. DIR=$$dir $$target \
	    ) || exit 1; \
	    fi
RECURSIVE_BUILD_CMD=for dir in $(DIRS); do $(BUILD_CMD); done
265
BUILD_ONE_CMD=\
266
	if expr " $(DIRS) " : ".* $$dir " >/dev/null 2>&1; then \
267 268
		$(BUILD_CMD); \
	fi
269

270
reflect:
A
Andy Polyakov 已提交
271
	@[ -n "$(THIS)" ] && $(CLEARENV) && $(MAKE) $(THIS) -e $(BUILDENV)
272

273 274 275 276 277 278 279 280 281 282
FIPS_EX_OBJ= ../crypto/aes/aes_cfb.o \
	../crypto/aes/aes_ecb.o \
	../crypto/aes/aes_ofb.o \
	../crypto/bn/bn_add.o \
	../crypto/bn/bn_blind.o \
	../crypto/bn/bn_ctx.o \
	../crypto/bn/bn_div.o \
	../crypto/bn/bn_exp2.o \
	../crypto/bn/bn_exp.o \
	../crypto/bn/bn_gcd.o \
283
	../crypto/bn/bn_gf2m.o \
284 285 286 287
	../crypto/bn/bn_lib.o \
	../crypto/bn/bn_mod.o \
	../crypto/bn/bn_mont.o \
	../crypto/bn/bn_mul.o \
288
	../crypto/bn/bn_nist.o \
289 290 291 292 293 294 295 296
	../crypto/bn/bn_prime.o \
	../crypto/bn/bn_rand.o \
	../crypto/bn/bn_recp.o \
	../crypto/bn/bn_shift.o \
	../crypto/bn/bn_sqr.o \
	../crypto/bn/bn_word.o \
	../crypto/bn/bn_x931p.o \
	../crypto/buffer/buf_str.o \
R
Richard Levitte 已提交
297
	../crypto/cmac/cmac.o \
298 299 300 301 302 303 304 305 306 307 308 309 310 311
	../crypto/cryptlib.o \
	../crypto/des/cfb64ede.o \
	../crypto/des/cfb64enc.o \
	../crypto/des/cfb_enc.o \
	../crypto/des/ecb3_enc.o \
	../crypto/des/ofb64ede.o \
	../crypto/des/fcrypt.o \
	../crypto/des/set_key.o \
	../crypto/dh/dh_check.o \
	../crypto/dh/dh_gen.o \
	../crypto/dh/dh_key.o \
	../crypto/dsa/dsa_gen.o \
	../crypto/dsa/dsa_key.o \
	../crypto/dsa/dsa_ossl.o \
312 313 314 315 316 317 318 319 320 321
	../crypto/ec/ec_curve.o \
	../crypto/ec/ec_cvt.o \
	../crypto/ec/ec_key.o \
	../crypto/ec/ec_lib.o \
	../crypto/ec/ecp_mont.o \
	../crypto/ec/ec_mult.o \
	../crypto/ec/ecp_nist.o \
	../crypto/ec/ecp_smpl.o \
	../crypto/ec/ec2_mult.o \
	../crypto/ec/ec2_smpl.o \
322 323
	../crypto/ecdh/ech_key.o \
	../crypto/ecdh/ech_ossl.o \
324
	../crypto/ecdsa/ecs_ossl.o \
325 326
	../crypto/evp/e_aes.o \
	../crypto/evp/e_des3.o \
327
	../crypto/evp/e_null.o \
328
	../crypto/evp/m_sha1.o \
329 330 331
	../crypto/evp/m_dss1.o \
	../crypto/evp/m_dss.o \
	../crypto/evp/m_ecdsa.o \
332
	../crypto/hmac/hmac.o \
333
	../crypto/modes/cbc128.o \
334
	../crypto/modes/ccm128.o \
335 336
	../crypto/modes/cfb128.o \
	../crypto/modes/ctr128.o \
337
	../crypto/modes/gcm128.o \
338
	../crypto/modes/ofb128.o \
339
	../crypto/modes/xts128.o \
340 341 342 343 344 345 346 347 348
	../crypto/rsa/rsa_eay.o \
	../crypto/rsa/rsa_gen.o \
	../crypto/rsa/rsa_crpt.o \
	../crypto/rsa/rsa_none.o \
	../crypto/rsa/rsa_oaep.o \
	../crypto/rsa/rsa_pk1.o \
	../crypto/rsa/rsa_pss.o \
	../crypto/rsa/rsa_ssl.o \
	../crypto/rsa/rsa_x931.o \
349
	../crypto/rsa/rsa_x931g.o \
350 351 352
	../crypto/sha/sha1dgst.o \
	../crypto/sha/sha256.o \
	../crypto/sha/sha512.o \
353
	../crypto/thr_id.o \
354 355
	../crypto/uid.o

356
sub_all: build_all
357 358
build_all: build_libs build_apps build_tests build_tools

359 360 361 362
build_libs: build_crypto build_fips build_ssl build_engines

build_fips:
	@dir=fips; target=all; [ -z "$(FIPSCANLIB)" ] || $(BUILD_ONE_CMD)
363 364

build_crypto:
365
	if [ -n "$(FIPSCANLIB)" ]; then \
366
		EXCL_OBJ='$(AES_ENC) $(BN_ASM) $(DES_ENC) $(CPUID_OBJ) $(SHA1_ASM_OBJ) $(MODES_ASM_OBJ) $(FIPS_EX_OBJ)' ; export EXCL_OBJ ; \
367 368 369 370
		ARX='$(PERL) $${TOP}/util/arx.pl $(AR)' ; \
	else \
		ARX='${AR}' ; \
	fi ; export ARX ; \
371 372 373 374 375
	if [ $(FIPSCANISTERINTERNAL) = "y" ]; then \
		AS='$(PERL) $${TOP}/util/fipsas.pl $${TOP} $${<} $(CC) -c' ; \
	else \
		AS='$(CC) -c' ; \
	fi ; export AS ; \
376
		dir=crypto; target=all; $(BUILD_ONE_CMD)
377
build_ssl:
378
	@dir=ssl; target=all; $(BUILD_ONE_CMD)
379
build_engines:
380
	@dir=engines; target=all; AS='$(CC) -c'; export AS; $(BUILD_ONE_CMD)
381
build_apps:
382
	@dir=apps; target=all; $(BUILD_ONE_CMD)
383
build_tests:
384
	@dir=test; target=all; $(BUILD_ONE_CMD)
385
build_tools:
386
	@dir=tools; target=all; $(BUILD_ONE_CMD)
387 388 389

all_testapps: build_libs build_testapps
build_testapps:
390
	@dir=crypto; target=testapps; $(BUILD_ONE_CMD)
391

D
Dr. Stephen Henson 已提交
392
libcrypto$(SHLIB_EXT): libcrypto.a build_fips
393
	@if [ "$(SHLIB_TARGET)" != "" ]; then \
D
Dr. Stephen Henson 已提交
394 395 396 397
		if [ "$(FIPSCANLIB)" = "libcrypto" ]; then \
			FIPSLD_CC="$(CC)"; CC=fips/fipsld; \
			export CC FIPSLD_CC; \
		fi; \
398
		$(MAKE) -e SHLIBDIRS=crypto CC="$${CC:-$(CC)}" build-shared; \
399 400
	else \
		echo "There's no support for shared libraries on this platform" >&2; \
401
		exit 1; \
402
	fi
403

404
libssl$(SHLIB_EXT): libcrypto$(SHLIB_EXT) libssl.a
405
	@if [ "$(SHLIB_TARGET)" != "" ]; then \
406
		$(MAKE) SHLIBDIRS=ssl SHLIBDEPS='-lcrypto' build-shared; \
407 408
	else \
		echo "There's no support for shared libraries on this platform" >&2; \
409
		exit 1; \
410
	fi
411 412

clean-shared:
413
	@set -e; for i in $(SHLIBDIRS); do \
414 415 416 417 418 419 420
		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) ); \
A
Andy Polyakov 已提交
421
		if expr "$(PLATFORM)" : "Cygwin" >/dev/null; then \
422 423
			( set -x; rm -f cyg$$i$(SHLIB_EXT) lib$$i$(SHLIB_EXT).a ); \
		fi; \
424
	done
425

426
link-shared:
427
	@ set -e; for i in $(SHLIBDIRS); do \
428
		$(MAKE) -f $(HERE)/Makefile.shared -e $(BUILDENV) \
429 430
			LIBNAME=$$i LIBVERSION=$(SHLIB_MAJOR).$(SHLIB_MINOR) \
			LIBCOMPATVERSIONS=";$(SHLIB_VERSION_HISTORY)" \
431
			symlink.$(SHLIB_TARGET); \
432
		libs="$$libs -l$$i"; \
433 434
	done

435 436 437
build-shared: do_$(SHLIB_TARGET) link-shared

do_$(SHLIB_TARGET):
438
	@ set -e; libs='-L. $(SHLIBDEPS)'; for i in $(SHLIBDIRS); do \
D
Dr. Stephen Henson 已提交
439
		if [ "$$i" = "ssl" -a -n "$(LIBKRB5)" ]; then \
440 441
			libs="$(LIBKRB5) $$libs"; \
		fi; \
A
Andy Polyakov 已提交
442
		$(CLEARENV) && $(MAKE) -f Makefile.shared -e $(BUILDENV) \
443 444
			LIBNAME=$$i LIBVERSION=$(SHLIB_MAJOR).$(SHLIB_MINOR) \
			LIBCOMPATVERSIONS=";$(SHLIB_VERSION_HISTORY)" \
445 446
			LIBDEPS="$$libs $(EX_LIBS)" \
			link_a.$(SHLIB_TARGET); \
447
		libs="-l$$i $$libs"; \
448 449
	done

450 451 452
libcrypto.pc: Makefile
	@ ( echo 'prefix=$(INSTALLTOP)'; \
	    echo 'exec_prefix=$${prefix}'; \
D
Dr. Stephen Henson 已提交
453
	    echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
454 455 456 457 458 459
	    echo 'includedir=$${prefix}/include'; \
	    echo ''; \
	    echo 'Name: OpenSSL-libcrypto'; \
	    echo 'Description: OpenSSL cryptography library'; \
	    echo 'Version: '$(VERSION); \
	    echo 'Requires: '; \
D
Dr. Stephen Henson 已提交
460 461
	    echo 'Libs: -L$${libdir} -lcrypto'; \
	    echo 'Libs.private: $(EX_LIBS)'; \
462 463 464 465 466
	    echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > libcrypto.pc

libssl.pc: Makefile
	@ ( echo 'prefix=$(INSTALLTOP)'; \
	    echo 'exec_prefix=$${prefix}'; \
D
Dr. Stephen Henson 已提交
467
	    echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
468 469
	    echo 'includedir=$${prefix}/include'; \
	    echo ''; \
470
	    echo 'Name: OpenSSL-libssl'; \
471 472
	    echo 'Description: Secure Sockets Layer and cryptography libraries'; \
	    echo 'Version: '$(VERSION); \
473 474
	    echo 'Requires.private: libcrypto'; \
	    echo 'Libs: -L$${libdir} -lssl'; \
D
Dr. Stephen Henson 已提交
475
	    echo 'Libs.private: $(EX_LIBS)'; \
476 477
	    echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > libssl.pc

B
Ben Laurie 已提交
478
openssl.pc: Makefile
479 480
	@ ( echo 'prefix=$(INSTALLTOP)'; \
	    echo 'exec_prefix=$${prefix}'; \
D
Dr. Stephen Henson 已提交
481
	    echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
482 483 484 485 486
	    echo 'includedir=$${prefix}/include'; \
	    echo ''; \
	    echo 'Name: OpenSSL'; \
	    echo 'Description: Secure Sockets Layer and cryptography libraries and tools'; \
	    echo 'Version: '$(VERSION); \
487
	    echo 'Requires: libssl libcrypto' ) > openssl.pc
488

489 490
Makefile: Makefile.org Configure config
	@echo "Makefile is older than Makefile.org, Configure or config."
491
	@echo "Reconfigure the source tree (via './config' or 'perl Configure'), please."
492 493
	@false

494
libclean:
495
	rm -f *.map *.so *.so.* *.dylib *.dll engines/*.so engines/*.dll engines/*.dylib *.a engines/*.a */lib */*/lib
496

497
clean:	libclean
498
	rm -f shlib/*.o *.o core a.out fluff rehash.time testlog make.log cctest cctest.c
A
Andy Polyakov 已提交
499
	@set -e; target=clean; $(RECURSIVE_BUILD_CMD)
500
	rm -f $(LIBS) tags TAGS
501
	rm -f openssl.pc libssl.pc libcrypto.pc
502
	rm -f speed.* .pure
503
	rm -f $(TARFILE)
504
	@set -e; for i in $(ONEDIRS) ;\
505
	do \
506
	rm -fr $$i/*; \
507 508 509
	done

makefile.one: files
510
	$(PERL) util/mk1mf.pl >makefile.one; \
511 512
	sh util/do_ms.sh

U
Ulf Möller 已提交
513
files:
B
Ben Laurie 已提交
514
	$(PERL) $(TOP)/util/files.pl Makefile > $(TOP)/MINFO
A
Andy Polyakov 已提交
515
	@set -e; target=files; $(RECURSIVE_BUILD_CMD)
516 517

links:
518
	@$(PERL) $(TOP)/util/mkdir-p.pl include/openssl
519
	@$(PERL) $(TOP)/util/mklink.pl include/openssl $(EXHEADER)
A
Andy Polyakov 已提交
520
	@set -e; target=links; $(RECURSIVE_BUILD_CMD)
521 522 523
	@if [ -z "$(FIPSCANLIB)" ]; then \
		set -e; target=links; dir=fips ; $(BUILD_CMD) ; \
	fi
524

525 526
gentests:
	@(cd test && echo "generating dummy tests (if needed)..." && \
527
	$(CLEARENV) && $(MAKE) -e $(BUILDENV) TESTS='$(TESTS)' OPENSSL_DEBUG_MEMORY=on generate );
528

529
dclean:
530
	rm -rf *.bak include/openssl certs/.0
A
Andy Polyakov 已提交
531
	@set -e; target=dclean; $(RECURSIVE_BUILD_CMD)
532

533 534
rehash: rehash.time
rehash.time: certs apps
535
	@if [ -z "$(CROSS_COMPILE)" ]; then \
536 537 538 539
		(OPENSSL="`pwd`/util/opensslwrap.sh"; \
		[ -x "apps/openssl.exe" ] && OPENSSL="apps/openssl.exe" || :; \
		OPENSSL_DEBUG_MEMORY=on; \
		export OPENSSL OPENSSL_DEBUG_MEMORY; \
B
Ben Laurie 已提交
540
		$(PERL) tools/c_rehash certs/demo) && \
541 542 543
		touch rehash.time; \
	else :; fi

544
test:   tests
545

546
tests: rehash
547
	@(cd test && echo "testing..." && \
D
Dr. Stephen Henson 已提交
548 549
	$(CLEARENV) && $(MAKE) -e $(BUILDENV) TOP=.. TESTS='$(TESTS)' OPENSSL_DEBUG_MEMORY=on OPENSSL_CONF=../apps/openssl.cnf tests );
	OPENSSL_CONF=apps/openssl.cnf util/opensslwrap.sh version -a
550

551 552 553
report:
	@$(PERL) util/selftest.pl

554
depend:
A
Andy Polyakov 已提交
555
	@set -e; target=depend; $(RECURSIVE_BUILD_CMD)
556 557

lint:
A
Andy Polyakov 已提交
558
	@set -e; target=lint; $(RECURSIVE_BUILD_CMD)
559

560 561 562 563 564 565
tags TAGS: FORCE
	rm -f TAGS tags
	-ctags -R .
	-etags -R .

FORCE:
566 567

errors:
568
	$(PERL) util/ck_errf.pl -strict */*.c */*/*.c
569
	$(PERL) util/mkerr.pl -recurse -write
570
	(cd engines; $(MAKE) PERL=$(PERL) errors)
571

572 573 574
stacks:
	$(PERL) util/mkstack.pl -write

575
util/libeay.num::
576
	$(PERL) util/mkdef.pl crypto update
577 578

util/ssleay.num::
579
	$(PERL) util/mkdef.pl ssl update
580

581
crypto/objects/obj_dat.h: crypto/objects/obj_dat.pl crypto/objects/obj_mac.h
582
	$(PERL) crypto/objects/obj_dat.pl crypto/objects/obj_mac.h crypto/objects/obj_dat.h
B
typo  
Bodo Möller 已提交
583
crypto/objects/obj_mac.h: crypto/objects/objects.pl crypto/objects/objects.txt crypto/objects/obj_mac.num
584
	$(PERL) crypto/objects/objects.pl crypto/objects/objects.txt crypto/objects/obj_mac.num crypto/objects/obj_mac.h
585
crypto/objects/obj_xref.h: crypto/objects/objxref.pl crypto/objects/obj_xref.txt crypto/objects/obj_mac.num
586
	$(PERL) crypto/objects/objxref.pl crypto/objects/obj_mac.num crypto/objects/obj_xref.txt >crypto/objects/obj_xref.h
587

588 589 590
apps/openssl-vms.cnf: apps/openssl.cnf
	$(PERL) VMS/VMSify-conf.pl < apps/openssl.cnf > apps/openssl-vms.cnf

591 592 593 594
crypto/bn/bn_prime.h: crypto/bn/bn_prime.pl
	$(PERL) crypto/bn/bn_prime.pl >crypto/bn/bn_prime.h


595
TABLE: Configure
B
Bodo Möller 已提交
596
	(echo 'Output of `Configure TABLE'"':"; \
597
	$(PERL) Configure TABLE) > TABLE
598

599
update: errors stacks util/libeay.num util/ssleay.num crypto/objects/obj_dat.h crypto/objects/obj_xref.h apps/openssl-vms.cnf crypto/bn/bn_prime.h TABLE depend
600

601 602 603 604 605
# 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.
606
tar:
607 608 609
	find . -type d -print | xargs chmod 755
	find . -type f -print | xargs chmod a+r
	find . -type f -perm -0100 -print | xargs chmod a+x
610 611
	find * \! -path CVS/\* \! -path \*/CVS/\* \! -name CVS \! -name .cvsignore \! -name STATUS \! -name TABLE | sort > ../$(TARFILE).list; \
	$(TAR) $(TARFLAGS) --files-from ../$(TARFILE).list -cvf - | \
612
	tardy --user_number=0  --user_name=openssl \
R
Ralf S. Engelschall 已提交
613 614
	      --group_number=0 --group_name=openssl \
	      --prefix=openssl-$(VERSION) - |\
615
	gzip --best >../$(TARFILE).gz; \
616
	rm -f ../$(TARFILE).list; \
617
	ls -l ../$(TARFILE).gz
618

619 620
tar-snap:
	@$(TAR) $(TARFLAGS) -cvf - \
621
		`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` |\
622 623 624 625 626
	tardy --user_number=0  --user_name=openssl \
	      --group_number=0 --group_name=openssl \
	      --prefix=openssl-$(VERSION) - > ../$(TARFILE);\
	ls -l ../$(TARFILE)

627
dist:   
628
	$(PERL) Configure dist
629
	@$(MAKE) dist_pem_h
630 631
	@$(MAKE) SDIRS='$(SDIRS)' clean
	@$(MAKE) TAR='$(TAR)' TARFLAGS='$(TARFLAGS)' tar
632 633

dist_pem_h:
A
Andy Polyakov 已提交
634
	(cd crypto/pem; $(MAKE) -e $(BUILDENV) pem.h; $(MAKE) clean)
635

636 637 638
install: all install_docs install_sw

install_sw:
B
Bodo Möller 已提交
639
	@$(PERL) $(TOP)/util/mkdir-p.pl $(INSTALL_PREFIX)$(INSTALLTOP)/bin \
D
Dr. Stephen Henson 已提交
640 641 642
		$(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR) \
		$(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines \
		$(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig \
B
Bodo Möller 已提交
643 644 645
		$(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl \
		$(INSTALL_PREFIX)$(OPENSSLDIR)/misc \
		$(INSTALL_PREFIX)$(OPENSSLDIR)/certs \
646
		$(INSTALL_PREFIX)$(OPENSSLDIR)/private
647
	@set -e; headerlist="$(EXHEADER)"; for i in $$headerlist;\
B
Bodo Möller 已提交
648 649 650 651
	do \
	(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
	done;
A
Andy Polyakov 已提交
652
	@set -e; target=install; $(RECURSIVE_BUILD_CMD)
653
	@set -e; liblist="$(LIBS)"; for i in $$liblist ;\
654
	do \
655 656
		if [ -f "$$i" ]; then \
		(       echo installing $$i; \
D
Dr. Stephen Henson 已提交
657 658 659 660
			cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
			$(RANLIB) $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
			chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
			mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i ); \
L
Lutz Jänicke 已提交
661 662
		fi; \
	done;
663
	@set -e; if [ -n "$(SHARED_LIBS)" ]; then \
664 665 666
		tmp="$(SHARED_LIBS)"; \
		for i in $${tmp:-x}; \
		do \
667
			if [ -f "$$i" -o -f "$$i.a" ]; then \
668
			(       echo installing $$i; \
669
				if expr "$(PLATFORM)" : "Cygwin" >/dev/null; then \
670
					c=`echo $$i | sed 's/^lib\(.*\)\.dll\.a/cyg\1-$(SHLIB_VERSION_NUMBER).dll/'`; \
671 672
					cp $$c $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new; \
					chmod 755 $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new; \
673
					mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c; \
D
Dr. Stephen Henson 已提交
674 675 676
					cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
					chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
					mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i; \
677 678 679 680
				else \
					cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
					chmod 555 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
					mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i; \
681
				fi ); \
682 683 684 685 686 687 688 689 690 691
				if expr $(PLATFORM) : 'mingw' > /dev/null; then \
				(	case $$i in \
						*crypto*) i=libeay32.dll;; \
						*ssl*)    i=ssleay32.dll;; \
					esac; \
					echo installing $$i; \
	 				cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new; \
	 				chmod 755 $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new; \
	 				mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i ); \
				fi; \
L
Lutz Jänicke 已提交
692
			fi; \
693 694
		done; \
		(	here="`pwd`"; \
D
Dr. Stephen Henson 已提交
695
			cd $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR); \
696
			$(MAKE) -f $$here/Makefile HERE="$$here" link-shared ); \
697 698 699 700
		if [ "$(INSTALLTOP)" != "/usr" ]; then \
			echo 'OpenSSL shared libraries have been installed in:'; \
			echo '  $(INSTALLTOP)'; \
			echo ''; \
701
			sed -e '1,/^$$/d' doc/openssl-shared.txt; \
702
		fi; \
703
	fi
D
Dr. Stephen Henson 已提交
704 705 706 707 708 709
	cp libcrypto.pc $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libcrypto.pc
	cp libssl.pc $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libssl.pc
	cp openssl.pc $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/openssl.pc
710

U
Ulf Möller 已提交
711 712
install_html_docs:
	here="`pwd`"; \
713
	filecase=; \
714
	case "$(PLATFORM)" in DJGPP|Cygwin*|mingw*|darwin*-*-cc) \
715 716
		filecase=-i; \
	esac; \
U
Ulf Möller 已提交
717 718 719 720 721 722 723
	for subdir in apps crypto ssl; do \
		mkdir -p $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir; \
		for i in doc/$$subdir/*.pod; do \
			fn=`basename $$i .pod`; \
			echo "installing html/$$fn.$(HTMLSUFFIX)"; \
			cat $$i \
			| sed -r 's/L<([^)]*)(\([0-9]\))?\|([^)]*)(\([0-9]\))?>/L<\1|\3>/g' \
724
			| pod2html --podroot=doc --htmlroot=.. --podpath=$$subdir:apps:crypto:ssl \
U
Ulf Möller 已提交
725 726 727 728 729 730
			| sed -r 's/<!DOCTYPE.*//g' \
			> $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir/$$fn.$(HTMLSUFFIX); \
			$(PERL) util/extract-names.pl < $$i | \
				grep -v $$filecase "^$$fn\$$" | \
				(cd $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir; \
				 while read n; do \
D
Dr. Stephen Henson 已提交
731
					PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn.$(HTMLSUFFIX) "$$n".$(HTMLSUFFIX); \
U
Ulf Möller 已提交
732 733 734 735
				 done); \
		done; \
	done

736 737
install_docs:
	@$(PERL) $(TOP)/util/mkdir-p.pl \
738 739 740 741
		$(INSTALL_PREFIX)$(MANDIR)/man1 \
		$(INSTALL_PREFIX)$(MANDIR)/man3 \
		$(INSTALL_PREFIX)$(MANDIR)/man5 \
		$(INSTALL_PREFIX)$(MANDIR)/man7
742
	@pod2man="`cd ./util; ./pod2mantest $(PERL)`"; \
743 744
	here="`pwd`"; \
	filecase=; \
745
	case "$(PLATFORM)" in DJGPP|Cygwin*|mingw*|darwin*-*-cc) \
746
		filecase=-i; \
A
Andy Polyakov 已提交
747
	esac; \
748
	set -e; for i in doc/apps/*.pod; do \
749
		fn=`basename $$i .pod`; \
750
		sec=`$(PERL) util/extract-section.pl 1 < $$i`; \
751
		echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \
752
		(cd `$(PERL) util/dirname.pl $$i`; \
753
		sh -c "$$pod2man \
754 755
			--section=$$sec --center=OpenSSL \
			--release=$(VERSION) `basename $$i`") \
756
			>  $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
757
		$(PERL) util/extract-names.pl < $$i | \
758 759
			(grep -v $$filecase "^$$fn\$$"; true) | \
			(grep -v "[	]"; true) | \
760 761
			(cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
			 while read n; do \
D
Dr. Stephen Henson 已提交
762
				PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}$(MANSUFFIX); \
763
			 done); \
764
	done; \
765
	set -e; for i in doc/crypto/*.pod doc/ssl/*.pod; do \
766
		fn=`basename $$i .pod`; \
767
		sec=`$(PERL) util/extract-section.pl 3 < $$i`; \
768
		echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \
769
		(cd `$(PERL) util/dirname.pl $$i`; \
770
		sh -c "$$pod2man \
771 772
			--section=$$sec --center=OpenSSL \
			--release=$(VERSION) `basename $$i`") \
773
			>  $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
774
		$(PERL) util/extract-names.pl < $$i | \
775 776
			(grep -v $$filecase "^$$fn\$$"; true) | \
			(grep -v "[	]"; true) | \
777 778
			(cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
			 while read n; do \
D
Dr. Stephen Henson 已提交
779
				PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}$(MANSUFFIX); \
780
			 done); \
781
	done
782 783

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