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

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

18 19 20 21 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

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

75 76 77 78 79 80 81 82
# 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.
AS=$(CC) -c
ASFLAGS=$(CFLAG)

83 84 85 86 87 88 89 90 91 92 93 94 95 96
# Set BN_ASM to bn_asm.o if you want to use the C version
BN_ASM= bn_asm.o
#BN_ASM= bn_asm.o
#BN_ASM= asm/bn86-elf.o	# elf, linux-elf
#BN_ASM= asm/bn86-sol.o # solaris
#BN_ASM= asm/bn86-out.o # a.out, FreeBSD
#BN_ASM= asm/bn86bsdi.o # bsdi
#BN_ASM= asm/alpha.o    # DEC Alpha
#BN_ASM= asm/pa-risc2.o # HP-UX PA-RISC
#BN_ASM= asm/r3000.o    # SGI MIPS cpu
#BN_ASM= asm/sparc.o    # Sun solaris/SunOS
#BN_ASM= asm/bn-win32.o # Windows 95/NT
#BN_ASM= asm/x86w16.o   # 16 bit code for Windows 3.1/DOS
#BN_ASM= asm/x86w32.o   # 32 bit code for Windows 3.1
97

U
Ulf Möller 已提交
98 99 100 101
# For x86 assembler: Set PROCESSOR to 386 if you want to support
# the 80386.
PROCESSOR=

102 103
# Set DES_ENC to des_enc.o if you want to use the C version
#There are 4 x86 assember options.
B
Ben Laurie 已提交
104
DES_ENC= asm/dx86-out.o asm/yx86-out.o
105 106 107 108 109
#DES_ENC= des_enc.o fcrypt_b.o          # C
#DES_ENC= asm/dx86-elf.o asm/yx86-elf.o # elf
#DES_ENC= asm/dx86-sol.o asm/yx86-sol.o # solaris
#DES_ENC= asm/dx86-out.o asm/yx86-out.o # a.out, FreeBSD
#DES_ENC= asm/dx86bsdi.o asm/yx86bsdi.o # bsdi
110 111 112

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

120 121
# Set CAST_ENC to c_enc.o if you want to use the C version
#There are 4 x86 assember options.
B
Ben Laurie 已提交
122
CAST_ENC= asm/cx86-out.o
123 124 125 126 127 128 129 130
#CAST_ENC= c_enc.o
#CAST_ENC= asm/cx86-elf.o # elf
#CAST_ENC= asm/cx86-sol.o # solaris
#CAST_ENC= asm/cx86-out.o # a.out, FreeBSD
#CAST_ENC= asm/cx86bsdi.o # bsdi

# Set RC4_ENC to rc4_enc.o if you want to use the C version
#There are 4 x86 assember options.
B
Ben Laurie 已提交
131
RC4_ENC= asm/rx86-out.o
132 133 134 135 136 137 138 139
#RC4_ENC= rc4_enc.o
#RC4_ENC= asm/rx86-elf.o # elf
#RC4_ENC= asm/rx86-sol.o # solaris
#RC4_ENC= asm/rx86-out.o # a.out, FreeBSD
#RC4_ENC= asm/rx86bsdi.o # bsdi

# Set RC5_ENC to rc5_enc.o if you want to use the C version
#There are 4 x86 assember options.
B
Ben Laurie 已提交
140
RC5_ENC= asm/r586-out.o
141 142 143 144 145 146 147
#RC5_ENC= rc5_enc.o
#RC5_ENC= asm/r586-elf.o # elf
#RC5_ENC= asm/r586-sol.o # solaris
#RC5_ENC= asm/r586-out.o # a.out, FreeBSD
#RC5_ENC= asm/r586bsdi.o # bsdi

# Also need MD5_ASM defined
B
Ben Laurie 已提交
148
MD5_ASM_OBJ= asm/mx86-out.o
149 150 151 152 153 154
#MD5_ASM_OBJ= asm/mx86-elf.o        # elf
#MD5_ASM_OBJ= asm/mx86-sol.o        # solaris
#MD5_ASM_OBJ= asm/mx86-out.o        # a.out, FreeBSD
#MD5_ASM_OBJ= asm/mx86bsdi.o        # bsdi

# Also need SHA1_ASM defined
B
Ben Laurie 已提交
155
SHA1_ASM_OBJ= asm/sx86-out.o
156 157 158 159 160 161
#SHA1_ASM_OBJ= asm/sx86-elf.o       # elf
#SHA1_ASM_OBJ= asm/sx86-sol.o       # solaris
#SHA1_ASM_OBJ= asm/sx86-out.o       # a.out, FreeBSD
#SHA1_ASM_OBJ= asm/sx86bsdi.o       # bsdi

# Also need RMD160_ASM defined
B
Ben Laurie 已提交
162
RMD160_ASM_OBJ= asm/rm86-out.o
163 164 165 166 167
#RMD160_ASM_OBJ= asm/rm86-elf.o       # elf
#RMD160_ASM_OBJ= asm/rm86-sol.o       # solaris
#RMD160_ASM_OBJ= asm/rm86-out.o       # a.out, FreeBSD
#RMD160_ASM_OBJ= asm/rm86bsdi.o       # bsdi

168 169
# KRB5 stuff
KRB5_INCLUDES=
170
LIBKRB5=
171

172
DIRS=   crypto ssl engines apps test tools
U
Ulf Möller 已提交
173 174
SHLIBDIRS= crypto ssl

175 176
# dirs in crypto to build
SDIRS=  \
177
	md2 md4 md5 sha mdc2 hmac ripemd \
178
	des rc2 rc4 rc5 idea bf cast \
B
Bodo Möller 已提交
179
	bn ec rsa dsa ecdsa dh ecdh dso engine aes \
180
	buffer bio stack lhash rand err objects \
181
	evp asn1 pem x509 x509v3 conf txt_db pkcs7 pkcs12 comp ocsp ui krb5
182

183 184 185 186
# tests to perform.  "alltests" is a special word indicating that all tests
# should be performed.
TESTS = alltests

187
MAKEFILE= Makefile.ssl
188 189
NEWMAKE=  make
MAKE=     $(NEWMAKE) -f Makefile.ssl
190

191
MANDIR=$(OPENSSLDIR)/man
192 193 194 195
MAN1=1
MAN3=3
SHELL=/bin/sh

196
TOP=    .
197
ONEDIRS=out tmp
U
Ulf Möller 已提交
198
EDIRS=  times doc bugs util include certs ms shlib mt demos perl sf dep VMS
199
WDIRS=  windows
200
LIBS=   libcrypto.a libssl.a
201 202 203 204
SHARED_CRYPTO=libcrypto$(SHLIB_EXT)
SHARED_SSL=libssl$(SHLIB_EXT)
SHARED_LIBS=
SHARED_LIBS_LINK_EXTS=
205
SHARED_LDFLAGS=
206 207

GENERAL=        Makefile
R
Ralf S. Engelschall 已提交
208
BASENAME=       openssl
209 210 211
NAME=           $(BASENAME)-$(VERSION)
TARFILE=        $(NAME).tar
WTARFILE=       $(NAME)-win.tar
212
EXHEADER=       e_os2.h
213
HEADER=         e_os.h
214

215
all: Makefile.ssl build_all openssl.pc
216

217
BUILD_CMD=if echo " $(DIRS) " | grep " $$i " >/dev/null 2>/dev/null; then \
218
	if [ -d "$$i" ]; then \
219
		(cd $$i && echo "making all in $$i..." && \
220
		$(MAKE) CC='${CC}' PLATFORM='${PLATFORM}' CFLAG='${CFLAG}' AS='${AS}' ASFLAGS='${ASFLAGS}' SDIRS='$(SDIRS)' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' AR='${AR}' PROCESSOR='${PROCESSOR}' PERL='${PERL}' RANLIB='${RANLIB}' KRB5_INCLUDES='${KRB5_INCLUDES}' LIBKRB5='${LIBKRB5}' EXE_EXT='${EXE_EXT}' SHARED_LIBS='${SHARED_LIBS}' SHLIB_EXT='${SHLIB_EXT}' SHLIB_TARGET='${SHLIB_TARGET}' all ) || exit 1; \
221 222
	else \
		$(MAKE) $$i; \
223 224
	fi; fi

225
sub_all: build_all
226 227
build_all: build_libs build_apps build_tests build_tools

228
build_libs: build_crypto build_ssl build_engines
229 230 231 232 233

build_crypto:
	@i=crypto; $(BUILD_CMD)
build_ssl:
	@i=ssl; $(BUILD_CMD)
234 235
build_engines:
	@i=engines; $(BUILD_CMD)
236 237 238 239 240 241
build_apps:
	@i=apps; $(BUILD_CMD)
build_tests:
	@i=test; $(BUILD_CMD)
build_tools:
	@i=tools; $(BUILD_CMD)
242

243
libcrypto$(SHLIB_EXT): libcrypto.a
244
	@if [ "$(SHLIB_TARGET)" != "" ]; then \
245
		$(MAKE) SHLIBDIRS=crypto build-shared; \
246 247 248
	else \
		echo "There's no support for shared libraries on this platform" >&2; \
	fi
249

250
libssl$(SHLIB_EXT): libcrypto$(SHLIB_EXT) libssl.a
251
	@if [ "$(SHLIB_TARGET)" != "" ]; then \
252
		$(MAKE) SHLIBDIRS=ssl SHLIBDEPS='-lcrypto' build-shared; \
253 254 255
	else \
		echo "There's no support for shared libraries on this platform" >&2; \
	fi
256 257

clean-shared:
258 259 260 261 262 263 264 265
	@for i in $(SHLIBDIRS); do \
		if [ -n "$(SHARED_LIBS_LINK_EXTS)" ]; then \
			tmp="$(SHARED_LIBS_LINK_EXTS)"; \
			for j in $${tmp:-x}; do \
				( set -x; rm -f lib$$i$$j ); \
			done; \
		fi; \
		( set -x; rm -f lib$$i$(SHLIB_EXT) ); \
266
		if [ "$(PLATFORM)" = "Cygwin" ]; then \
267 268
			( set -x; rm -f cyg$$i$(SHLIB_EXT) lib$$i$(SHLIB_EXT).a ); \
		fi; \
269
	done
270

271
link-shared:
272
	@ for i in ${SHLIBDIRS}; do \
273
		$(NEWMAKE) -f $(HERE)/Makefile.shared \
274 275 276
			LIBNAME=$$i LIBVERSION=${SHLIB_MAJOR}.${SHLIB_MINOR} \
			LIBCOMPATVERSIONS=";${SHLIB_VERSION_HISTORY}" \
			symlink.$(SHLIB_TARGET); \
277
		libs="$$libs -l$$i"; \
278 279
	done

280 281 282 283
build-shared: do_$(SHLIB_TARGET) link-shared

do_$(SHLIB_TARGET):
	@ libs='-L. ${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \
284 285 286
		if [ "${SHLIBDIRS}" = "ssl" -a -n "$(LIBKRB5)" ]; then \
			libs="$(LIBKRB5) $$libs"; \
		fi; \
287 288 289 290 291 292
		$(NEWMAKE) -f Makefile.shared \
			CC="$(CC)" LDFLAGS="$(LDFLAGS)" \
			SHARED_LDFLAGS="$(SHARED_LDFLAGS)" \
			LIBNAME=$$i LIBVERSION=${SHLIB_MAJOR}.${SHLIB_MINOR} \
			LIBCOMPATVERSIONS=";${SHLIB_VERSION_HISTORY}" \
			LIBDEPS="$$libs $(EX_LIBS)" \
293
			LIBRPATH="$(INSTALLTOP)/lib" \
294
			link_a.$(SHLIB_TARGET); \
295
		libs="-l$$i $$libs"; \
296 297
	done

298
openssl.pc: Makefile.ssl
299 300 301 302 303 304 305 306 307 308
	@ ( echo 'prefix=$(INSTALLTOP)'; \
	    echo 'exec_prefix=$${prefix}'; \
	    echo 'libdir=$${exec_prefix}/lib'; \
	    echo 'includedir=$${prefix}/include'; \
	    echo ''; \
	    echo 'Name: OpenSSL'; \
	    echo 'Description: Secure Sockets Layer and cryptography libraries and tools'; \
	    echo 'Version: '$(VERSION); \
	    echo 'Requires: '; \
	    echo 'Libs: -L$${libdir} -lssl -lcrypto $(EX_LIBS)'; \
309
	    echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > openssl.pc
310

311
Makefile.ssl: Makefile.org
312
	@echo "Makefile.ssl is older than Makefile.org."
313
	@echo "Reconfigure the source tree (via './config' or 'perl Configure'), please."
314 315
	@false

316
libclean:
317
	rm -f *.map *.so *.so.* engines/*.so *.a */lib */*/lib
318

319 320
clean:	libclean
	rm -f shlib/*.o *.o core a.out fluff rehash.time testlog make.log cctest cctest.c
321 322
	@for i in $(DIRS) ;\
	do \
323
	if [ -d "$$i" ]; then \
324 325 326 327
		(cd $$i && echo "making clean in $$i..." && \
		$(MAKE) SDIRS='${SDIRS}' clean ) || exit 1; \
		rm -f $(LIBS); \
	fi; \
328
	done;
329
	rm -f openssl.pc
330
	rm -f speed.* .pure
331
	rm -f $(TARFILE)
332 333
	@for i in $(ONEDIRS) ;\
	do \
334
	rm -fr $$i/*; \
335 336 337
	done

makefile.one: files
338
	$(PERL) util/mk1mf.pl >makefile.one; \
339 340
	sh util/do_ms.sh

U
Ulf Möller 已提交
341
files:
342
	$(PERL) $(TOP)/util/files.pl Makefile.ssl > $(TOP)/MINFO
343 344
	@for i in $(DIRS) ;\
	do \
345
	if [ -d "$$i" ]; then \
346 347 348
		(cd $$i && echo "making 'files' in $$i..." && \
		$(MAKE) SDIRS='${SDIRS}' PERL='${PERL}' files ) || exit 1; \
	fi; \
349 350 351
	done;

links:
352
	@$(TOP)/util/point.sh Makefile.ssl Makefile
353
	@$(PERL) $(TOP)/util/mkdir-p.pl include/openssl
354
	@$(PERL) $(TOP)/util/mklink.pl include/openssl $(EXHEADER)
355
	@for i in $(DIRS); do \
356
	if [ -d "$$i" ]; then \
357
		(cd $$i && echo "making links in $$i..." && \
358
		$(MAKE) CC='${CC}' PLATFORM='${PLATFORM}' CFLAG='${CFLAG}' SDIRS='$(SDIRS)' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' AR='${AR}' PERL='${PERL}' KRB5_INCLUDES='${KRB5_INCLUDES}' LIBKRB5='${LIBKRB5}' links ) || exit 1; \
359
	fi; \
360 361
	done;

362 363 364 365
gentests:
	@(cd test && echo "generating dummy tests (if needed)..." && \
	$(MAKE) CC='${CC}' PLATFORM='${PLATFORM}' CFLAG='${CFLAG}' SDIRS='$(SDIRS)' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' AR='${AR}' PROCESSOR='${PROCESSOR}' PERL='${PERL}' RANLIB='${RANLIB}' TESTS='${TESTS}' KRB5_INCLUDES='${KRB5_INCLUDES}' LIBKRB5='${LIBKRB5}' EXE_EXT='${EXE_EXT}' SHARED_LIBS='${SHARED_LIBS}' SHLIB_EXT='${SHLIB_EXT}' SHLIB_TARGET='${SHLIB_TARGET}' TESTS='${TESTS}' OPENSSL_DEBUG_MEMORY=on generate );

366
dclean:
367
	rm -f *.bak
368 369
	@for i in $(DIRS) ;\
	do \
370
	if [ -d "$$i" ]; then \
371 372 373
		(cd $$i && echo "making dclean in $$i..." && \
		$(MAKE) SDIRS='${SDIRS}' PERL='${PERL}' dclean ) || exit 1; \
	fi; \
374 375
	done;

376 377
rehash: rehash.time
rehash.time: certs
378
	@(OPENSSL="`pwd`/apps/openssl"; OPENSSL_DEBUG_MEMORY=on; \
379
		export OPENSSL OPENSSL_DEBUG_MEMORY; \
380 381 382 383
		LD_LIBRARY_PATH="`pwd`:$$LD_LIBRARY_PATH"; \
		DYLD_LIBRARY_PATH="`pwd`:$$DYLD_LIBRARY_PATH"; \
		SHLIB_PATH="`pwd`:$$SHLIB_PATH"; \
		LIBPATH="`pwd`:$$LIBPATH"; \
384
		if [ "$(PLATFORM)" = "Cygwin" ]; then PATH="`pwd`:$$PATH"; fi; \
385
		export LD_LIBRARY_PATH DYLD_LIBRARY_PATH SHLIB_PATH LIBPATH PATH; \
386
		$(PERL) tools/c_rehash certs)
B
Bodo Möller 已提交
387
	touch rehash.time
388

389
test:   tests
390

391
tests: rehash
392
	@(cd test && echo "testing..." && \
393
	$(MAKE) CC='${CC}' PLATFORM='${PLATFORM}' CFLAG='${CFLAG}' SDIRS='$(SDIRS)' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' AR='${AR}' PROCESSOR='${PROCESSOR}' PERL='${PERL}' RANLIB='${RANLIB}' TESTS='${TESTS}' KRB5_INCLUDES='${KRB5_INCLUDES}' LIBKRB5='${LIBKRB5}' EXE_EXT='${EXE_EXT}' SHARED_LIBS='${SHARED_LIBS}' SHLIB_EXT='${SHLIB_EXT}' SHLIB_TARGET='${SHLIB_TARGET}' TESTS='${TESTS}' OPENSSL_DEBUG_MEMORY=on tests );
R
Richard Levitte 已提交
394 395 396 397
	@LD_LIBRARY_PATH="`pwd`:$$LD_LIBRARY_PATH"; \
	DYLD_LIBRARY_PATH="`pwd`:$$DYLD_LIBRARY_PATH"; \
	SHLIB_PATH="`pwd`:$$SHLIB_PATH"; \
	LIBPATH="`pwd`:$$LIBPATH"; \
398 399 400
	if [ "$(PLATFORM)" = "Cygwin" ]; then PATH="`pwd`:$$PATH"; fi; \
	export LD_LIBRARY_PATH DYLD_LIBRARY_PATH SHLIB_PATH LIBPATH PATH; \
	apps/openssl version -a
401

402 403 404
report:
	@$(PERL) util/selftest.pl

405 406 407
depend:
	@for i in $(DIRS) ;\
	do \
408
	if [ -d "$$i" ]; then \
409
		(cd $$i && echo "making dependencies $$i..." && \
410
		$(MAKE) SDIRS='${SDIRS}' CFLAG='${CFLAG}' DEPFLAG='${DEPFLAG}' MAKEDEPPROG='${MAKEDEPPROG}' KRB5_INCLUDES='${KRB5_INCLUDES}' PERL='${PERL}' depend ) || exit 1; \
411
	fi; \
412 413 414 415 416
	done;

lint:
	@for i in $(DIRS) ;\
	do \
417
	if [ -d "$$i" ]; then \
418 419 420
		(cd $$i && echo "making lint $$i..." && \
		$(MAKE) SDIRS='${SDIRS}' lint ) || exit 1; \
	fi; \
421 422 423 424 425
	done;

tags:
	@for i in $(DIRS) ;\
	do \
426
	if [ -d "$$i" ]; then \
427 428 429
		(cd $$i && echo "making tags $$i..." && \
		$(MAKE) SDIRS='${SDIRS}' tags ) || exit 1; \
	fi; \
430 431 432
	done;

errors:
433
	$(PERL) util/mkerr.pl -recurse -write
434
	(cd engines; $(MAKE) PERL=$(PERL) errors)
435

436
stacks:
437
	$(PERL) util/mkstack.pl -write
438

439
util/libeay.num::
440
	$(PERL) util/mkdef.pl crypto update
441 442

util/ssleay.num::
443
	$(PERL) util/mkdef.pl ssl update
444

445
crypto/objects/obj_dat.h: crypto/objects/obj_dat.pl crypto/objects/obj_mac.h
446
	$(PERL) crypto/objects/obj_dat.pl crypto/objects/obj_mac.h crypto/objects/obj_dat.h
B
typo  
Bodo Möller 已提交
447
crypto/objects/obj_mac.h: crypto/objects/objects.pl crypto/objects/objects.txt crypto/objects/obj_mac.num
448
	$(PERL) crypto/objects/objects.pl crypto/objects/objects.txt crypto/objects/obj_mac.num crypto/objects/obj_mac.h
449

450
TABLE: Configure
B
Bodo Möller 已提交
451
	(echo 'Output of `Configure TABLE'"':"; \
452
	$(PERL) Configure TABLE) > TABLE
453

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

456 457 458 459 460
# 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.
461
tar:
462 463 464
	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
465 466
	find * \! -path CVS/\* \! -path \*/CVS/\* \! -name CVS \! -name .cvsignore \! -name STATUS \! -name TABLE | sort > ../$(TARFILE).list; \
	$(TAR) $(TARFLAGS) --files-from ../$(TARFILE).list -cvf - | \
467
	tardy --user_number=0  --user_name=openssl \
R
Ralf S. Engelschall 已提交
468 469
	      --group_number=0 --group_name=openssl \
	      --prefix=openssl-$(VERSION) - |\
470
	gzip --best >../$(TARFILE).gz; \
471
	rm -f ../$(TARFILE).list; \
472
	ls -l ../$(TARFILE).gz
473

474 475
tar-snap:
	@$(TAR) $(TARFLAGS) -cvf - \
476
		`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` |\
477 478 479 480 481
	tardy --user_number=0  --user_name=openssl \
	      --group_number=0 --group_name=openssl \
	      --prefix=openssl-$(VERSION) - > ../$(TARFILE);\
	ls -l ../$(TARFILE)

482
dist:   
483
	$(PERL) Configure dist
484 485
	@$(MAKE) dist_pem_h
	@$(MAKE) SDIRS='${SDIRS}' clean
486
	@$(MAKE) TAR='${TAR}' TARFLAGS='${TARFLAGS}' tar
487 488

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

491
install: all install_docs
B
Bodo Möller 已提交
492 493
	@$(PERL) $(TOP)/util/mkdir-p.pl $(INSTALL_PREFIX)$(INSTALLTOP)/bin \
		$(INSTALL_PREFIX)$(INSTALLTOP)/lib \
494
		$(INSTALL_PREFIX)$(INSTALLTOP)/lib/pkgconfig \
B
Bodo Möller 已提交
495
		$(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl \
496
		$(INSTALL_PREFIX)$(OPENSSLDIR)/engines \
B
Bodo Möller 已提交
497 498 499
		$(INSTALL_PREFIX)$(OPENSSLDIR)/misc \
		$(INSTALL_PREFIX)$(OPENSSLDIR)/certs \
		$(INSTALL_PREFIX)$(OPENSSLDIR)/private \
500
		$(INSTALL_PREFIX)$(OPENSSLDIR)/lib
B
Bodo Möller 已提交
501 502 503 504 505
	@for i in $(EXHEADER) ;\
	do \
	(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
	done;
506 507
	@for i in $(DIRS) ;\
	do \
508
	if [ -d "$$i" ]; then \
509
		(cd $$i; echo "installing $$i..."; \
510
		$(MAKE) CC='${CC}' CFLAG='${CFLAG}' INSTALL_PREFIX='${INSTALL_PREFIX}' INSTALLTOP='${INSTALLTOP}' OPENSSLDIR='${OPENSSLDIR}' EX_LIBS='${EX_LIBS}' SDIRS='${SDIRS}' RANLIB='${RANLIB}' EXE_EXT='${EXE_EXT}' SHARED_LIBS='${SHARED_LIBS}' install ); \
511
	fi; \
512 513 514
	done
	@for i in $(LIBS) ;\
	do \
515 516
		if [ -f "$$i" ]; then \
		(       echo installing $$i; \
517 518 519
			cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new; \
			$(RANLIB) $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new; \
			chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new; \
520
			mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i ); \
L
Lutz Jänicke 已提交
521 522
		fi; \
	done;
523 524 525 526
	@if [ -n "$(SHARED_LIBS)" ]; then \
		tmp="$(SHARED_LIBS)"; \
		for i in $${tmp:-x}; \
		do \
527
			if [ -f "$$i" -o -f "$$i.a" ]; then \
528
			(       echo installing $$i; \
529
				if [ "$(PLATFORM)" != "Cygwin" ]; then \
530 531
					cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new; \
					chmod 555 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new; \
532
					mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i; \
533 534
				else \
					c=`echo $$i | sed 's/^lib/cyg/'`; \
535 536
					cp $$c $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new; \
					chmod 755 $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new; \
537
					mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c; \
538 539
					cp $$i.a $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.a.new; \
					chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.a.new; \
540
					mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.a.new $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.a; \
541
				fi ); \
L
Lutz Jänicke 已提交
542
			fi; \
543 544 545
		done; \
		(	here="`pwd`"; \
			cd $(INSTALL_PREFIX)$(INSTALLTOP)/lib; \
546
			$(NEWMAKE) -f $$here/Makefile HERE="$$here" link-shared ); \
547 548 549 550
		if [ "$(INSTALLTOP)" != "/usr" ]; then \
			echo 'OpenSSL shared libraries have been installed in:'; \
			echo '  $(INSTALLTOP)'; \
			echo ''; \
551
			sed -e '1,/^$$/d' doc/openssl-shared.txt; \
552
		fi; \
553
	fi
554
	cp openssl.pc $(INSTALL_PREFIX)$(INSTALLTOP)/lib/pkgconfig
555 556 557

install_docs:
	@$(PERL) $(TOP)/util/mkdir-p.pl \
558 559 560 561
		$(INSTALL_PREFIX)$(MANDIR)/man1 \
		$(INSTALL_PREFIX)$(MANDIR)/man3 \
		$(INSTALL_PREFIX)$(MANDIR)/man5 \
		$(INSTALL_PREFIX)$(MANDIR)/man7
562
	@pod2man="`cd util; ./pod2mantest $(PERL)`"; \
563 564 565 566 567
	here="`pwd`"; \
	filecase=; \
	if [ "$(PLATFORM)" = "DJGPP" -o "$(PLATFORM)" = "Cygwin" ]; then \
		filecase=-i; \
	fi; \
568
	for i in doc/apps/*.pod; do \
569
		fn=`basename $$i .pod`; \
570
		if [ "$$fn" = "config" ]; then sec=5; else sec=1; fi; \
571
		echo "installing man$$sec/$$fn.$$sec"; \
572
		(cd `$(PERL) util/dirname.pl $$i`; \
573
		sh -c "$$pod2man \
574 575
			--section=$$sec --center=OpenSSL \
			--release=$(VERSION) `basename $$i`") \
576
			>  $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$$sec; \
577 578 579 580 581 582
		$(PERL) util/extract-names.pl < $$i | \
			grep -v $$filecase "^$$fn\$$" | \
			(cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
			 while read n; do \
				$$here/util/point.sh $$fn.$$sec $$n.$$sec; \
			 done); \
583
	done; \
584
	for i in doc/crypto/*.pod doc/ssl/*.pod; do \
585
		fn=`basename $$i .pod`; \
586
		if [ "$$fn" = "des_modes" ]; then sec=7; else sec=3; fi; \
587
		echo "installing man$$sec/$$fn.$$sec"; \
588
		(cd `$(PERL) util/dirname.pl $$i`; \
589
		sh -c "$$pod2man \
590 591
			--section=$$sec --center=OpenSSL \
			--release=$(VERSION) `basename $$i`") \
592
			>  $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$$sec; \
593 594 595 596 597 598
		$(PERL) util/extract-names.pl < $$i | \
			grep -v $$filecase "^$$fn\$$" | \
			(cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
			 while read n; do \
				$$here/util/point.sh $$fn.$$sec $$n.$$sec; \
			 done); \
599
	done
600 601

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