Makefile.org 25.3 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
# code the path.

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

# The location of the library which contains fipscanister.o
125 126
# normally it will be libcrypto. If not compiling in FIPS mode
# at all this is empty making it a useful test for a FIPS compile.
127 128 129 130 131 132 133 134

FIPSCANLIB=

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

BASEADDR=

135
DIRS=   crypto ssl engines apps test tools
136
ENGDIRS= ccgost
U
Ulf Möller 已提交
137 138
SHLIBDIRS= crypto ssl

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

151 152 153 154
# tests to perform.  "alltests" is a special word indicating that all tests
# should be performed.
TESTS = alltests

B
Ben Laurie 已提交
155
MAKEFILE= Makefile
156

157
MANDIR=$(OPENSSLDIR)/man
158 159
MAN1=1
MAN3=3
160
MANSUFFIX=
U
Ulf Möller 已提交
161 162
HTMLSUFFIX=html
HTMLDIR=$(OPENSSLDIR)/html
163 164
SHELL=/bin/sh

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

GENERAL=        Makefile
R
Ralf S. Engelschall 已提交
177
BASENAME=       openssl
178 179 180
NAME=           $(BASENAME)-$(VERSION)
TARFILE=        $(NAME).tar
WTARFILE=       $(NAME)-win.tar
181
EXHEADER=       e_os2.h
182
HEADER=         e_os.h
183

184
all: Makefile build_all openssl.pc libssl.pc libcrypto.pc
185

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

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

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

264
reflect:
A
Andy Polyakov 已提交
265
	@[ -n "$(THIS)" ] && $(CLEARENV) && $(MAKE) $(THIS) -e $(BUILDENV)
266

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

350
sub_all: build_all
351

352 353
build_all: build_libs build_apps build_tests build_tools

354
build_libs: build_crypto build_ssl build_engines
355 356

build_crypto:
357
	@dir=crypto; target=all; $(BUILD_ONE_CMD)
358
build_ssl: build_crypto
359
	@dir=ssl; target=all; $(BUILD_ONE_CMD)
360
build_engines: build_crypto
361
	@dir=engines; target=all; AS='$(CC) -c'; export AS; $(BUILD_ONE_CMD)
362 363

build_apps: build_libs
364
	@dir=apps; target=all; $(BUILD_ONE_CMD)
365
build_tests: build_libs
366
	@dir=test; target=all; $(BUILD_ONE_CMD)
367
build_tools: build_libs
368
	@dir=tools; target=all; $(BUILD_ONE_CMD)
369 370 371

all_testapps: build_libs build_testapps
build_testapps:
372
	@dir=crypto; target=testapps; $(BUILD_ONE_CMD)
373

374
libcrypto$(SHLIB_EXT): libcrypto.a
375
	@if [ "$(SHLIB_TARGET)" != "" ]; then \
D
Dr. Stephen Henson 已提交
376 377 378 379
		if [ "$(FIPSCANLIB)" = "libcrypto" ]; then \
			FIPSLD_CC="$(CC)"; CC=fips/fipsld; \
			export CC FIPSLD_CC; \
		fi; \
380
		$(MAKE) -e SHLIBDIRS=crypto CC="$${CC:-$(CC)}" build-shared; \
381 382
	else \
		echo "There's no support for shared libraries on this platform" >&2; \
383
		exit 1; \
384
	fi
385

386
libssl$(SHLIB_EXT): libcrypto$(SHLIB_EXT) libssl.a
387
	@if [ "$(SHLIB_TARGET)" != "" ]; then \
388
		$(MAKE) SHLIBDIRS=ssl SHLIBDEPS='-lcrypto' build-shared; \
389 390
	else \
		echo "There's no support for shared libraries on this platform" >&2; \
391
		exit 1; \
392
	fi
393 394

clean-shared:
395
	@set -e; for i in $(SHLIBDIRS); do \
396 397 398 399 400 401 402
		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 已提交
403
		if expr "$(PLATFORM)" : "Cygwin" >/dev/null; then \
404 405
			( set -x; rm -f cyg$$i$(SHLIB_EXT) lib$$i$(SHLIB_EXT).a ); \
		fi; \
406
	done
407

408
link-shared:
409
	@ set -e; for i in $(SHLIBDIRS); do \
410
		$(MAKE) -f $(HERE)/Makefile.shared -e $(BUILDENV) \
411 412
			LIBNAME=$$i LIBVERSION=$(SHLIB_MAJOR).$(SHLIB_MINOR) \
			LIBCOMPATVERSIONS=";$(SHLIB_VERSION_HISTORY)" \
413
			symlink.$(SHLIB_TARGET); \
414
		libs="$$libs -l$$i"; \
415 416
	done

417 418 419
build-shared: do_$(SHLIB_TARGET) link-shared

do_$(SHLIB_TARGET):
420
	@ set -e; libs='-L. $(SHLIBDEPS)'; for i in $(SHLIBDIRS); do \
D
Dr. Stephen Henson 已提交
421
		if [ "$$i" = "ssl" -a -n "$(LIBKRB5)" ]; then \
422 423
			libs="$(LIBKRB5) $$libs"; \
		fi; \
A
Andy Polyakov 已提交
424
		$(CLEARENV) && $(MAKE) -f Makefile.shared -e $(BUILDENV) \
425 426
			LIBNAME=$$i LIBVERSION=$(SHLIB_MAJOR).$(SHLIB_MINOR) \
			LIBCOMPATVERSIONS=";$(SHLIB_VERSION_HISTORY)" \
427 428
			LIBDEPS="$$libs $(EX_LIBS)" \
			link_a.$(SHLIB_TARGET); \
429
		libs="-l$$i $$libs"; \
430 431
	done

432 433 434
libcrypto.pc: Makefile
	@ ( echo 'prefix=$(INSTALLTOP)'; \
	    echo 'exec_prefix=$${prefix}'; \
D
Dr. Stephen Henson 已提交
435
	    echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
436 437 438 439 440 441
	    echo 'includedir=$${prefix}/include'; \
	    echo ''; \
	    echo 'Name: OpenSSL-libcrypto'; \
	    echo 'Description: OpenSSL cryptography library'; \
	    echo 'Version: '$(VERSION); \
	    echo 'Requires: '; \
D
Dr. Stephen Henson 已提交
442 443
	    echo 'Libs: -L$${libdir} -lcrypto'; \
	    echo 'Libs.private: $(EX_LIBS)'; \
444 445 446 447 448
	    echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > libcrypto.pc

libssl.pc: Makefile
	@ ( echo 'prefix=$(INSTALLTOP)'; \
	    echo 'exec_prefix=$${prefix}'; \
D
Dr. Stephen Henson 已提交
449
	    echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
450 451
	    echo 'includedir=$${prefix}/include'; \
	    echo ''; \
452
	    echo 'Name: OpenSSL-libssl'; \
453 454
	    echo 'Description: Secure Sockets Layer and cryptography libraries'; \
	    echo 'Version: '$(VERSION); \
455 456
	    echo 'Requires.private: libcrypto'; \
	    echo 'Libs: -L$${libdir} -lssl'; \
D
Dr. Stephen Henson 已提交
457
	    echo 'Libs.private: $(EX_LIBS)'; \
458 459
	    echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > libssl.pc

B
Ben Laurie 已提交
460
openssl.pc: Makefile
461 462
	@ ( echo 'prefix=$(INSTALLTOP)'; \
	    echo 'exec_prefix=$${prefix}'; \
D
Dr. Stephen Henson 已提交
463
	    echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
464 465 466 467 468
	    echo 'includedir=$${prefix}/include'; \
	    echo ''; \
	    echo 'Name: OpenSSL'; \
	    echo 'Description: Secure Sockets Layer and cryptography libraries and tools'; \
	    echo 'Version: '$(VERSION); \
469
	    echo 'Requires: libssl libcrypto' ) > openssl.pc
470

471 472
Makefile: Makefile.org Configure config
	@echo "Makefile is older than Makefile.org, Configure or config."
473
	@echo "Reconfigure the source tree (via './config' or 'perl Configure'), please."
474 475
	@false

476
libclean:
477
	rm -f *.map *.so *.so.* *.dylib *.dll engines/*.so engines/*.dll engines/*.dylib *.a engines/*.a */lib */*/lib
478

479
clean:	libclean
480
	rm -f shlib/*.o *.o core a.out fluff rehash.time testlog make.log cctest cctest.c
R
Rich Salz 已提交
481
	rm -rf *.bak include/openssl certs/.0
A
Andy Polyakov 已提交
482
	@set -e; target=clean; $(RECURSIVE_BUILD_CMD)
483
	rm -f $(LIBS) tags TAGS
484
	rm -f openssl.pc libssl.pc libcrypto.pc
485
	rm -f speed.* .pure
486
	rm -f $(TARFILE)
487
	@set -e; for i in $(ONEDIRS) ;\
488
	do \
489
	rm -fr $$i/*; \
490 491 492
	done

makefile.one: files
493
	$(PERL) util/mk1mf.pl >makefile.one; \
494 495
	sh util/do_ms.sh

U
Ulf Möller 已提交
496
files:
B
Ben Laurie 已提交
497
	$(PERL) $(TOP)/util/files.pl Makefile > $(TOP)/MINFO
A
Andy Polyakov 已提交
498
	@set -e; target=files; $(RECURSIVE_BUILD_CMD)
499 500

links:
501
	@$(PERL) $(TOP)/util/mkdir-p.pl include/openssl
502
	@$(PERL) $(TOP)/util/mklink.pl include/openssl $(EXHEADER)
A
Andy Polyakov 已提交
503
	@set -e; target=links; $(RECURSIVE_BUILD_CMD)
504

505 506
gentests:
	@(cd test && echo "generating dummy tests (if needed)..." && \
507
	$(CLEARENV) && $(MAKE) -e $(BUILDENV) TESTS='$(TESTS)' OPENSSL_DEBUG_MEMORY=on generate );
508

509
dclean:
A
Andy Polyakov 已提交
510
	@set -e; target=dclean; $(RECURSIVE_BUILD_CMD)
511

512 513
rehash: rehash.time
rehash.time: certs apps
514
	@if [ -z "$(CROSS_COMPILE)" ]; then \
515 516 517 518
		(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 已提交
519
		$(PERL) tools/c_rehash certs/demo) && \
520 521 522
		touch rehash.time; \
	else :; fi

523
test:   tests
524

525
tests: rehash
526
	@(cd test && echo "testing..." && \
D
Dr. Stephen Henson 已提交
527 528
	$(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
529

530 531 532
report:
	@$(PERL) util/selftest.pl

533
depend:
A
Andy Polyakov 已提交
534
	@set -e; target=depend; $(RECURSIVE_BUILD_CMD)
535 536

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

539 540 541 542 543 544
tags TAGS: FORCE
	rm -f TAGS tags
	-ctags -R .
	-etags -R .

FORCE:
545 546

errors:
547
	$(PERL) util/ck_errf.pl -strict */*.c */*/*.c
548
	$(PERL) util/mkerr.pl -recurse -write
549
	(cd engines; $(MAKE) PERL=$(PERL) errors)
550

551 552 553
stacks:
	$(PERL) util/mkstack.pl -write

554
util/libeay.num::
555
	$(PERL) util/mkdef.pl crypto update
556 557

util/ssleay.num::
558
	$(PERL) util/mkdef.pl ssl update
559

560
crypto/objects/obj_dat.h: crypto/objects/obj_dat.pl crypto/objects/obj_mac.h
561
	$(PERL) crypto/objects/obj_dat.pl crypto/objects/obj_mac.h crypto/objects/obj_dat.h
B
typo  
Bodo Möller 已提交
562
crypto/objects/obj_mac.h: crypto/objects/objects.pl crypto/objects/objects.txt crypto/objects/obj_mac.num
563
	$(PERL) crypto/objects/objects.pl crypto/objects/objects.txt crypto/objects/obj_mac.num crypto/objects/obj_mac.h
564
crypto/objects/obj_xref.h: crypto/objects/objxref.pl crypto/objects/obj_xref.txt crypto/objects/obj_mac.num
565
	$(PERL) crypto/objects/objxref.pl crypto/objects/obj_mac.num crypto/objects/obj_xref.txt >crypto/objects/obj_xref.h
566

567 568 569
apps/openssl-vms.cnf: apps/openssl.cnf
	$(PERL) VMS/VMSify-conf.pl < apps/openssl.cnf > apps/openssl-vms.cnf

570 571 572 573
crypto/bn/bn_prime.h: crypto/bn/bn_prime.pl
	$(PERL) crypto/bn/bn_prime.pl >crypto/bn/bn_prime.h


574
TABLE: Configure
B
Bodo Möller 已提交
575
	(echo 'Output of `Configure TABLE'"':"; \
576
	$(PERL) Configure TABLE) > TABLE
577

578
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
579

580 581 582 583 584
# 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.
585
tar:
586 587 588
	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
589 590
	find * \! -path CVS/\* \! -path \*/CVS/\* \! -name CVS \! -name .cvsignore \! -name STATUS \! -name TABLE | sort > ../$(TARFILE).list; \
	$(TAR) $(TARFLAGS) --files-from ../$(TARFILE).list -cvf - | \
591
	tardy --user_number=0  --user_name=openssl \
R
Ralf S. Engelschall 已提交
592 593
	      --group_number=0 --group_name=openssl \
	      --prefix=openssl-$(VERSION) - |\
594
	gzip --best >../$(TARFILE).gz; \
595
	rm -f ../$(TARFILE).list; \
596
	ls -l ../$(TARFILE).gz
597

598 599
tar-snap:
	@$(TAR) $(TARFLAGS) -cvf - \
600
		`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` |\
601 602 603 604 605
	tardy --user_number=0  --user_name=openssl \
	      --group_number=0 --group_name=openssl \
	      --prefix=openssl-$(VERSION) - > ../$(TARFILE);\
	ls -l ../$(TARFILE)

606
dist:   
607
	$(PERL) Configure dist
608
	@$(MAKE) dist_pem_h
609 610
	@$(MAKE) SDIRS='$(SDIRS)' clean
	@$(MAKE) TAR='$(TAR)' TARFLAGS='$(TARFLAGS)' tar
611 612

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

615 616 617
install: all install_docs install_sw

install_sw:
B
Bodo Möller 已提交
618
	@$(PERL) $(TOP)/util/mkdir-p.pl $(INSTALL_PREFIX)$(INSTALLTOP)/bin \
D
Dr. Stephen Henson 已提交
619 620 621
		$(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR) \
		$(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines \
		$(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig \
B
Bodo Möller 已提交
622 623 624
		$(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl \
		$(INSTALL_PREFIX)$(OPENSSLDIR)/misc \
		$(INSTALL_PREFIX)$(OPENSSLDIR)/certs \
625
		$(INSTALL_PREFIX)$(OPENSSLDIR)/private
626
	@set -e; headerlist="$(EXHEADER)"; for i in $$headerlist;\
B
Bodo Möller 已提交
627 628 629 630
	do \
	(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
	done;
A
Andy Polyakov 已提交
631
	@set -e; target=install; $(RECURSIVE_BUILD_CMD)
632
	@set -e; liblist="$(LIBS)"; for i in $$liblist ;\
633
	do \
634 635
		if [ -f "$$i" ]; then \
		(       echo installing $$i; \
D
Dr. Stephen Henson 已提交
636 637 638 639
			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 已提交
640 641
		fi; \
	done;
642
	@set -e; if [ -n "$(SHARED_LIBS)" ]; then \
643 644 645
		tmp="$(SHARED_LIBS)"; \
		for i in $${tmp:-x}; \
		do \
646
			if [ -f "$$i" -o -f "$$i.a" ]; then \
647
			(       echo installing $$i; \
648
				if expr "$(PLATFORM)" : "Cygwin" >/dev/null; then \
649
					c=`echo $$i | sed 's/^lib\(.*\)\.dll\.a/cyg\1-$(SHLIB_VERSION_NUMBER).dll/'`; \
650 651
					cp $$c $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new; \
					chmod 755 $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new; \
652
					mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c; \
D
Dr. Stephen Henson 已提交
653 654 655
					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; \
656 657 658 659
				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; \
660
				fi ); \
661 662 663 664 665 666 667 668 669 670
				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 已提交
671
			fi; \
672 673
		done; \
		(	here="`pwd`"; \
D
Dr. Stephen Henson 已提交
674
			cd $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR); \
675
			$(MAKE) -f $$here/Makefile HERE="$$here" link-shared ); \
676 677 678 679
		if [ "$(INSTALLTOP)" != "/usr" ]; then \
			echo 'OpenSSL shared libraries have been installed in:'; \
			echo '  $(INSTALLTOP)'; \
			echo ''; \
680
			sed -e '1,/^$$/d' doc/openssl-shared.txt; \
681
		fi; \
682
	fi
D
Dr. Stephen Henson 已提交
683 684 685 686 687 688
	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
689

U
Ulf Möller 已提交
690 691
install_html_docs:
	here="`pwd`"; \
692
	filecase=; \
693
	case "$(PLATFORM)" in DJGPP|Cygwin*|mingw*|darwin*-*-cc) \
694 695
		filecase=-i; \
	esac; \
U
Ulf Möller 已提交
696 697 698 699 700 701 702
	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' \
703
			| pod2html --podroot=doc --htmlroot=.. --podpath=$$subdir:apps:crypto:ssl \
U
Ulf Möller 已提交
704 705 706 707 708 709
			| 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 已提交
710
					PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn.$(HTMLSUFFIX) "$$n".$(HTMLSUFFIX); \
U
Ulf Möller 已提交
711 712 713 714
				 done); \
		done; \
	done

715 716
install_docs:
	@$(PERL) $(TOP)/util/mkdir-p.pl \
717 718 719 720
		$(INSTALL_PREFIX)$(MANDIR)/man1 \
		$(INSTALL_PREFIX)$(MANDIR)/man3 \
		$(INSTALL_PREFIX)$(MANDIR)/man5 \
		$(INSTALL_PREFIX)$(MANDIR)/man7
721 722
	here="`pwd`"; \
	filecase=; \
723
	case "$(PLATFORM)" in DJGPP|Cygwin*|mingw*|darwin*-*-cc) \
724
		filecase=-i; \
A
Andy Polyakov 已提交
725
	esac; \
726
	set -e; for i in doc/apps/*.pod; do \
727
		fn=`basename $$i .pod`; \
728
		sec=`$(PERL) util/extract-section.pl 1 < $$i`; \
729
		echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \
730
		(cd `$(PERL) util/dirname.pl $$i`; \
R
Rich Salz 已提交
731
		pod2man \
732
			--section=$$sec --center=OpenSSL \
R
Rich Salz 已提交
733
			--release=$(VERSION) `basename $$i`) \
734
			>  $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
735
		$(PERL) util/extract-names.pl < $$i | \
736 737
			(grep -v $$filecase "^$$fn\$$"; true) | \
			(grep -v "[	]"; true) | \
738 739
			(cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
			 while read n; do \
D
Dr. Stephen Henson 已提交
740
				PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}$(MANSUFFIX); \
741
			 done); \
742
	done; \
743
	set -e; for i in doc/crypto/*.pod doc/ssl/*.pod; do \
744
		fn=`basename $$i .pod`; \
745
		sec=`$(PERL) util/extract-section.pl 3 < $$i`; \
746
		echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \
747
		(cd `$(PERL) util/dirname.pl $$i`; \
R
Rich Salz 已提交
748
		pod2man \
749
			--section=$$sec --center=OpenSSL \
R
Rich Salz 已提交
750
			--release=$(VERSION) `basename $$i`) \
751
			>  $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
752
		$(PERL) util/extract-names.pl < $$i | \
753 754
			(grep -v $$filecase "^$$fn\$$"; true) | \
			(grep -v "[	]"; true) | \
755 756
			(cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
			 while read n; do \
D
Dr. Stephen Henson 已提交
757
				PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}$(MANSUFFIX); \
758
			 done); \
759
	done
760 761

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