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
EC_ASM=
92
DES_ENC= des_enc.o fcrypt_b.o
A
Andy Polyakov 已提交
93
AES_ENC= aes_core.o aes_cbc.o
94 95 96 97 98 99 100
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= 
101
WP_ASM_OBJ=
102
CMLL_ENC=
103
MODES_ASM_OBJ=
104
ENGINES_ASM_OBJ=
A
Andy Polyakov 已提交
105
PERLASM_SCHEME=
106

107 108
# KRB5 stuff
KRB5_INCLUDES=
109
LIBKRB5=
110

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

115 116 117 118
# 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 已提交
119
# $(INSTALLTOP) for this build may be different so hard
120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
# 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
142
ENGDIRS= ccgost
U
Ulf Möller 已提交
143 144
SHLIBDIRS= crypto ssl

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

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

B
Ben Laurie 已提交
161
MAKEFILE= Makefile
162

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

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

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

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

A
Andy Polyakov 已提交
192
# as we stick to -e, CLEARENV ensures that local variables in lower
193 194 195 196 197
# 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 已提交
198 199 200 201 202 203
		$${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}		\
204
		$${LDCMD+LDCMD} $${LDFLAGS+LDFLAGS} $${SCRIPTS+SCRIPTS}	\
A
Andy Polyakov 已提交
205
		$${SHAREDCMD+SHAREDCMD} $${SHAREDFLAGS+SHAREDFLAGS}	\
A
Andy Polyakov 已提交
206 207
		$${SHARED_LIB+SHARED_LIB} $${LIBEXTRAS+LIBEXTRAS}

208 209
BUILDENV=	PLATFORM='$(PLATFORM)' PROCESSOR='$(PROCESSOR)' \
		CC='$(CC)' CFLAG='$(CFLAG)' 			\
210
		ASFLAG='$(CFLAG) -c'			\
211
		AR='$(AR)' NM='$(NM)' RANLIB='$(RANLIB)'	\
212
		CROSS_COMPILE='$(CROSS_COMPILE)'	\
213
		PERL='$(PERL)' ENGDIRS='$(ENGDIRS)'		\
D
Dr. Stephen Henson 已提交
214
		SDIRS='$(SDIRS)' LIBRPATH='$(INSTALLTOP)/$(LIBDIR)'	\
215 216
		INSTALL_PREFIX='$(INSTALL_PREFIX)'		\
		INSTALLTOP='$(INSTALLTOP)' OPENSSLDIR='$(OPENSSLDIR)'	\
D
Dr. Stephen Henson 已提交
217
		LIBDIR='$(LIBDIR)'				\
218 219 220 221 222
		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 已提交
223
		ZLIB_INCLUDE='$(ZLIB_INCLUDE)' LIBZLIB='$(LIBZLIB)'	\
224 225 226
		EXE_EXT='$(EXE_EXT)' SHARED_LIBS='$(SHARED_LIBS)'	\
		SHLIB_EXT='$(SHLIB_EXT)' SHLIB_TARGET='$(SHLIB_TARGET)'	\
		PEX_LIBS='$(PEX_LIBS)' EX_LIBS='$(EX_LIBS)'	\
227 228
		CPUID_OBJ='$(CPUID_OBJ)' BN_ASM='$(BN_ASM)'	\
		EC_ASM='$(EC_ASM)' DES_ENC='$(DES_ENC)' 	\
229 230 231 232 233 234 235
		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)'			\
236
		MODES_ASM_OBJ='$(MODES_ASM_OBJ)'		\
237
		ENGINES_ASM_OBJ='$(ENGINES_ASM_OBJ)'		\
238
		PERLASM_SCHEME='$(PERLASM_SCHEME)'		\
239 240 241 242
		FIPSLIBDIR='${FIPSLIBDIR}'			\
		FIPSCANLIB="$${FIPSCANLIB:-$(FIPSCANLIB)}"	\
		FIPSCANISTERINTERNAL='${FIPSCANISTERINTERNAL}'	\
		FIPS_EX_OBJ='${FIPS_EX_OBJ}'	\
A
Andy Polyakov 已提交
243 244 245
		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.
246

R
Richard Levitte 已提交
247 248 249 250 251 252 253 254 255 256 257 258 259
# 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 已提交
260 261 262 263 264 265
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
266
BUILD_ONE_CMD=\
267
	if expr " $(DIRS) " : ".* $$dir " >/dev/null 2>&1; then \
268 269
		$(BUILD_CMD); \
	fi
270

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

274 275 276 277 278 279 280 281 282 283
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 \
284
	../crypto/bn/bn_gf2m.o \
285 286 287 288
	../crypto/bn/bn_lib.o \
	../crypto/bn/bn_mod.o \
	../crypto/bn/bn_mont.o \
	../crypto/bn/bn_mul.o \
289
	../crypto/bn/bn_nist.o \
290 291 292 293 294 295 296 297
	../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 已提交
298
	../crypto/cmac/cmac.o \
299 300 301 302 303 304 305 306 307 308 309 310 311 312
	../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 \
313 314 315 316 317 318 319 320 321 322
	../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 \
323 324
	../crypto/ecdh/ech_key.o \
	../crypto/ecdh/ech_ossl.o \
325
	../crypto/ecdsa/ecs_ossl.o \
326 327
	../crypto/evp/e_aes.o \
	../crypto/evp/e_des3.o \
328
	../crypto/evp/e_null.o \
329
	../crypto/evp/m_sha1.o \
330 331 332
	../crypto/evp/m_dss1.o \
	../crypto/evp/m_dss.o \
	../crypto/evp/m_ecdsa.o \
333
	../crypto/hmac/hmac.o \
334
	../crypto/modes/cbc128.o \
335
	../crypto/modes/ccm128.o \
336 337
	../crypto/modes/cfb128.o \
	../crypto/modes/ctr128.o \
338
	../crypto/modes/gcm128.o \
339
	../crypto/modes/ofb128.o \
340
	../crypto/modes/xts128.o \
341 342 343 344 345 346 347 348 349
	../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 \
350
	../crypto/rsa/rsa_x931g.o \
351 352 353
	../crypto/sha/sha1dgst.o \
	../crypto/sha/sha256.o \
	../crypto/sha/sha512.o \
354
	../crypto/thr_id.o \
355 356
	../crypto/uid.o

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

360 361 362 363
build_libs: build_crypto build_fips build_ssl build_engines

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

534 535
rehash: rehash.time
rehash.time: certs apps
536
	@if [ -z "$(CROSS_COMPILE)" ]; then \
537 538 539 540
		(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 已提交
541
		$(PERL) tools/c_rehash certs/demo) && \
542 543 544
		touch rehash.time; \
	else :; fi

545
test:   tests
546

547
tests: rehash
548
	@(cd test && echo "testing..." && \
D
Dr. Stephen Henson 已提交
549 550
	$(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
551

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

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

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

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

FORCE:
567 568

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

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

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

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

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

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

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


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

600
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
601

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

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

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

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

637 638 639
install: all install_docs install_sw

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

U
Ulf Möller 已提交
712 713
install_html_docs:
	here="`pwd`"; \
714
	filecase=; \
715
	case "$(PLATFORM)" in DJGPP|Cygwin*|mingw*|darwin*-*-cc) \
716 717
		filecase=-i; \
	esac; \
U
Ulf Möller 已提交
718 719 720 721 722 723 724
	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' \
725
			| pod2html --podroot=doc --htmlroot=.. --podpath=$$subdir:apps:crypto:ssl \
U
Ulf Möller 已提交
726 727 728 729 730 731
			| 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 已提交
732
					PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn.$(HTMLSUFFIX) "$$n".$(HTMLSUFFIX); \
U
Ulf Möller 已提交
733 734 735 736
				 done); \
		done; \
	done

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

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