Makefile.org 20.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
# 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
81
ASFLAG=$(CFLAG)
82

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
AES_ASM_OBJ=

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

122 123
# Set CAST_ENC to c_enc.o if you want to use the C version
#There are 4 x86 assember options.
B
Ben Laurie 已提交
124
CAST_ENC= asm/cx86-out.o
125 126 127 128 129 130 131 132
#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 已提交
133
RC4_ENC= asm/rx86-out.o
134 135 136 137 138 139 140 141
#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 已提交
142
RC5_ENC= asm/r586-out.o
143 144 145 146 147 148 149
#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 已提交
150
MD5_ASM_OBJ= asm/mx86-out.o
151 152 153 154 155 156
#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 已提交
157
SHA1_ASM_OBJ= asm/sx86-out.o
158 159 160 161 162 163
#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 已提交
164
RMD160_ASM_OBJ= asm/rm86-out.o
165 166 167 168 169
#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

170 171
# KRB5 stuff
KRB5_INCLUDES=
172
LIBKRB5=
173

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

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

187 188 189 190
# tests to perform.  "alltests" is a special word indicating that all tests
# should be performed.
TESTS = alltests

191
MAKEFILE= Makefile.ssl
192 193
NEWMAKE=  make
MAKE=     $(NEWMAKE) -f Makefile.ssl
194

195
MANDIR=$(OPENSSLDIR)/man
196 197
MAN1=1
MAN3=3
198
MANSUFFIX=
199 200
SHELL=/bin/sh

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

GENERAL=        Makefile
R
Ralf S. Engelschall 已提交
213
BASENAME=       openssl
214 215 216
NAME=           $(BASENAME)-$(VERSION)
TARFILE=        $(NAME).tar
WTARFILE=       $(NAME)-win.tar
217
EXHEADER=       e_os2.h
218
HEADER=         e_os.h
219

220
all: Makefile.ssl build_all openssl.pc
221

222 223 224
BUILDENV=	PLATFORM='${PLATFORM}' PROCESSOR='${PROCESSOR}' \
		SDIRS='$(SDIRS)' INSTALLTOP='${INSTALLTOP}'	\
		CC='${CC}' CFLAG='${CFLAG}' 			\
225
		AS='${CC}' ASFLAG='${CFLAG} -c'			\
226 227 228 229 230 231 232 233 234 235 236 237 238 239
		AR='${AR}' PERL='${PERL}' RANLIB='${RANLIB}'	\
		LDFLAGS="$(LDFLAGS)" SHARED_LDFLAGS="$(SHARED_LDFLAGS)"	\
		KRB5_INCLUDES='${KRB5_INCLUDES}' LIBKRB5='${LIBKRB5}'	\
		EXE_EXT='${EXE_EXT}' SHARED_LIBS='${SHARED_LIBS}'	\
		SHLIB_EXT='${SHLIB_EXT}' SHLIB_TARGET='${SHLIB_TARGET}'	\
		PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}'	\
		BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' 	\
		AES_ASM_OBJ='${AES_ASM_OBJ}'			\
		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}'

240 241 242
BUILD_CMD=if echo " $(DIRS) " | grep " $$dir " >/dev/null 2>/dev/null; then \
	if [ -d "$$dir" ]; then \
		(cd $$dir && echo "making $$target in $$dir..." && \
243
		$(MAKE) $(BUILDENV) $$target ) || exit 1; \
244
	else \
245
		$(MAKE) $$dir; \
246 247
	fi; fi

248
sub_all: build_all
249 250
build_all: build_libs build_apps build_tests build_tools

251
build_libs: build_crypto build_ssl build_engines
252 253

build_crypto:
254
	@dir=crypto; target=all; $(BUILD_CMD)
255
build_ssl:
256
	@dir=ssl; target=all; $(BUILD_CMD)
257
build_engines:
258
	@dir=engines; target=all; $(BUILD_CMD)
259
build_apps:
260
	@dir=apps; target=all; $(BUILD_CMD)
261
build_tests:
262
	@dir=test; target=all; $(BUILD_CMD)
263
build_tools:
264 265 266 267 268
	@dir=tools; target=all; $(BUILD_CMD)

all_testapps: build_libs build_testapps
build_testapps:
	@dir=crypto; target=testapps; $(BUILD_CMD)
269

270
libcrypto$(SHLIB_EXT): libcrypto.a
271
	@if [ "$(SHLIB_TARGET)" != "" ]; then \
272
		$(MAKE) SHLIBDIRS=crypto build-shared; \
273 274
	else \
		echo "There's no support for shared libraries on this platform" >&2; \
275
		exit 1; \
276
	fi
277

278
libssl$(SHLIB_EXT): libcrypto$(SHLIB_EXT) libssl.a
279
	@if [ "$(SHLIB_TARGET)" != "" ]; then \
280
		$(MAKE) SHLIBDIRS=ssl SHLIBDEPS='-lcrypto' build-shared; \
281 282
	else \
		echo "There's no support for shared libraries on this platform" >&2; \
283
		exit 1; \
284
	fi
285 286

clean-shared:
287
	@set -e; for i in $(SHLIBDIRS); do \
288 289 290 291 292 293 294
		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) ); \
295
		if [ "$(PLATFORM)" = "Cygwin" ]; then \
296 297
			( set -x; rm -f cyg$$i$(SHLIB_EXT) lib$$i$(SHLIB_EXT).a ); \
		fi; \
298
	done
299

300
link-shared:
301
	@ set -e; for i in ${SHLIBDIRS}; do \
302
		$(NEWMAKE) -f $(HERE)/Makefile.shared \
303 304 305
			LIBNAME=$$i LIBVERSION=${SHLIB_MAJOR}.${SHLIB_MINOR} \
			LIBCOMPATVERSIONS=";${SHLIB_VERSION_HISTORY}" \
			symlink.$(SHLIB_TARGET); \
306
		libs="$$libs -l$$i"; \
307 308
	done

309 310 311
build-shared: do_$(SHLIB_TARGET) link-shared

do_$(SHLIB_TARGET):
312
	@ set -e; libs='-L. ${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \
313 314 315
		if [ "${SHLIBDIRS}" = "ssl" -a -n "$(LIBKRB5)" ]; then \
			libs="$(LIBKRB5) $$libs"; \
		fi; \
316
		$(NEWMAKE) -f Makefile.shared \
317
			$(BUILDENV) \
318 319 320
			LIBNAME=$$i LIBVERSION=${SHLIB_MAJOR}.${SHLIB_MINOR} \
			LIBCOMPATVERSIONS=";${SHLIB_VERSION_HISTORY}" \
			LIBDEPS="$$libs $(EX_LIBS)" \
321
			LIBRPATH="$(INSTALLTOP)/lib" \
322
			link_a.$(SHLIB_TARGET); \
323
		libs="-l$$i $$libs"; \
324 325
	done

326
openssl.pc: Makefile.ssl
327 328 329 330 331 332 333 334 335 336
	@ ( 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)'; \
337
	    echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > openssl.pc
338

339
Makefile.ssl: Makefile.org
340
	@echo "Makefile.ssl is older than Makefile.org."
341
	@echo "Reconfigure the source tree (via './config' or 'perl Configure'), please."
342 343
	@false

344
libclean:
345
	rm -f *.map *.so *.so.* engines/*.so *.a */lib */*/lib
346

347 348
clean:	libclean
	rm -f shlib/*.o *.o core a.out fluff rehash.time testlog make.log cctest cctest.c
349
	@set -e; for i in $(DIRS) ;\
350
	do \
351
	if [ -d "$$i" ]; then \
352 353 354 355
		(cd $$i && echo "making clean in $$i..." && \
		$(MAKE) SDIRS='${SDIRS}' clean ) || exit 1; \
		rm -f $(LIBS); \
	fi; \
356
	done;
357
	rm -f openssl.pc
358
	rm -f speed.* .pure
359
	rm -f $(TARFILE)
360
	@set -e; for i in $(ONEDIRS) ;\
361
	do \
362
	rm -fr $$i/*; \
363 364 365
	done

makefile.one: files
366
	$(PERL) util/mk1mf.pl >makefile.one; \
367 368
	sh util/do_ms.sh

U
Ulf Möller 已提交
369
files:
370
	$(PERL) $(TOP)/util/files.pl Makefile.ssl > $(TOP)/MINFO
371
	@set -e; for i in $(DIRS) ;\
372
	do \
373
	if [ -d "$$i" ]; then \
374 375 376
		(cd $$i && echo "making 'files' in $$i..." && \
		$(MAKE) SDIRS='${SDIRS}' PERL='${PERL}' files ) || exit 1; \
	fi; \
377 378 379
	done;

links:
380
	@$(TOP)/util/point.sh Makefile.ssl Makefile
381
	@$(PERL) $(TOP)/util/mkdir-p.pl include/openssl
382
	@$(PERL) $(TOP)/util/mklink.pl include/openssl $(EXHEADER)
383
	@set -e; target=links; for dir in $(DIRS); do $(BUILD_CMD); done
384

385 386
gentests:
	@(cd test && echo "generating dummy tests (if needed)..." && \
387
	$(MAKE) $(BUILDENV) TESTS='${TESTS}' OPENSSL_DEBUG_MEMORY=on generate );
388

389
dclean:
390
	rm -f *.bak
391
	@set -e; for i in $(DIRS) ;\
392
	do \
393
	if [ -d "$$i" ]; then \
394 395 396
		(cd $$i && echo "making dclean in $$i..." && \
		$(MAKE) SDIRS='${SDIRS}' PERL='${PERL}' dclean ) || exit 1; \
	fi; \
397 398
	done;

399 400
rehash: rehash.time
rehash.time: certs
401
	@(OPENSSL="`pwd`/apps/openssl$(EXE_EXT)"; OPENSSL_DEBUG_MEMORY=on; \
402
		export OPENSSL OPENSSL_DEBUG_MEMORY; \
403 404 405 406
		LD_LIBRARY_PATH="`pwd`:$$LD_LIBRARY_PATH"; \
		DYLD_LIBRARY_PATH="`pwd`:$$DYLD_LIBRARY_PATH"; \
		SHLIB_PATH="`pwd`:$$SHLIB_PATH"; \
		LIBPATH="`pwd`:$$LIBPATH"; \
407
		if [ "$(PLATFORM)" = "Cygwin" ]; then PATH="`pwd`:$$PATH"; fi; \
408
		export LD_LIBRARY_PATH DYLD_LIBRARY_PATH SHLIB_PATH LIBPATH PATH; \
409
		$(PERL) tools/c_rehash certs)
B
Bodo Möller 已提交
410
	touch rehash.time
411

412
test:   tests
413

414
tests: rehash
415
	@(cd test && echo "testing..." && \
416
	$(MAKE) $(BUILDENV) TESTS='${TESTS}' OPENSSL_DEBUG_MEMORY=on tests );
R
Richard Levitte 已提交
417 418 419 420
	@LD_LIBRARY_PATH="`pwd`:$$LD_LIBRARY_PATH"; \
	DYLD_LIBRARY_PATH="`pwd`:$$DYLD_LIBRARY_PATH"; \
	SHLIB_PATH="`pwd`:$$SHLIB_PATH"; \
	LIBPATH="`pwd`:$$LIBPATH"; \
421 422 423
	if [ "$(PLATFORM)" = "Cygwin" ]; then PATH="`pwd`:$$PATH"; fi; \
	export LD_LIBRARY_PATH DYLD_LIBRARY_PATH SHLIB_PATH LIBPATH PATH; \
	apps/openssl version -a
424

425 426 427
report:
	@$(PERL) util/selftest.pl

428
depend:
429
	@set -e; for i in $(DIRS) ;\
430
	do \
431
	if [ -d "$$i" ]; then \
432
		(cd $$i && echo "making dependencies $$i..." && \
433
		$(MAKE) SDIRS='${SDIRS}' CFLAG='-DOPENSSL_NO_DEPRECATED ${CFLAG}' DEPFLAG='${DEPFLAG}' MAKEDEPPROG='${MAKEDEPPROG}' KRB5_INCLUDES='${KRB5_INCLUDES}' PERL='${PERL}' depend ) || exit 1; \
434
	fi; \
435 436 437
	done;

lint:
438
	@set -e; for i in $(DIRS) ;\
439
	do \
440
	if [ -d "$$i" ]; then \
441 442 443
		(cd $$i && echo "making lint $$i..." && \
		$(MAKE) SDIRS='${SDIRS}' lint ) || exit 1; \
	fi; \
444 445 446
	done;

tags:
447
	@set -e; for i in $(DIRS) ;\
448
	do \
449
	if [ -d "$$i" ]; then \
450 451 452
		(cd $$i && echo "making tags $$i..." && \
		$(MAKE) SDIRS='${SDIRS}' tags ) || exit 1; \
	fi; \
453 454 455
	done;

errors:
456
	$(PERL) util/mkerr.pl -recurse -write
457
	(cd engines; $(MAKE) PERL=$(PERL) errors)
458

459
stacks:
460
	$(PERL) util/mkstack.pl -write
461

462
util/libeay.num::
463
	$(PERL) util/mkdef.pl crypto update
464 465

util/ssleay.num::
466
	$(PERL) util/mkdef.pl ssl update
467

468
crypto/objects/obj_dat.h: crypto/objects/obj_dat.pl crypto/objects/obj_mac.h
469
	$(PERL) crypto/objects/obj_dat.pl crypto/objects/obj_mac.h crypto/objects/obj_dat.h
B
typo  
Bodo Möller 已提交
470
crypto/objects/obj_mac.h: crypto/objects/objects.pl crypto/objects/objects.txt crypto/objects/obj_mac.num
471
	$(PERL) crypto/objects/objects.pl crypto/objects/objects.txt crypto/objects/obj_mac.num crypto/objects/obj_mac.h
472

473 474 475
apps/openssl-vms.cnf: apps/openssl.cnf
	$(PERL) VMS/VMSify-conf.pl < apps/openssl.cnf > apps/openssl-vms.cnf

476
TABLE: Configure
B
Bodo Möller 已提交
477
	(echo 'Output of `Configure TABLE'"':"; \
478
	$(PERL) Configure TABLE) > TABLE
479

480
update: depend errors stacks util/libeay.num util/ssleay.num crypto/objects/obj_dat.h apps/openssl-vms.cnf TABLE
481

482 483 484 485 486
# 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.
487
tar:
488 489 490
	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
491 492
	find * \! -path CVS/\* \! -path \*/CVS/\* \! -name CVS \! -name .cvsignore \! -name STATUS \! -name TABLE | sort > ../$(TARFILE).list; \
	$(TAR) $(TARFLAGS) --files-from ../$(TARFILE).list -cvf - | \
493
	tardy --user_number=0  --user_name=openssl \
R
Ralf S. Engelschall 已提交
494 495
	      --group_number=0 --group_name=openssl \
	      --prefix=openssl-$(VERSION) - |\
496
	gzip --best >../$(TARFILE).gz; \
497
	rm -f ../$(TARFILE).list; \
498
	ls -l ../$(TARFILE).gz
499

500 501
tar-snap:
	@$(TAR) $(TARFLAGS) -cvf - \
502
		`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` |\
503 504 505 506 507
	tardy --user_number=0  --user_name=openssl \
	      --group_number=0 --group_name=openssl \
	      --prefix=openssl-$(VERSION) - > ../$(TARFILE);\
	ls -l ../$(TARFILE)

508
dist:   
509
	$(PERL) Configure dist
510 511
	@$(MAKE) dist_pem_h
	@$(MAKE) SDIRS='${SDIRS}' clean
512
	@$(MAKE) TAR='${TAR}' TARFLAGS='${TARFLAGS}' tar
513 514

dist_pem_h:
515
	(cd crypto/pem; $(MAKE) $(BUILDENV) pem.h; $(MAKE) clean)
516

517 518 519
install: all install_docs install_sw

install_sw:
B
Bodo Möller 已提交
520 521
	@$(PERL) $(TOP)/util/mkdir-p.pl $(INSTALL_PREFIX)$(INSTALLTOP)/bin \
		$(INSTALL_PREFIX)$(INSTALLTOP)/lib \
522
		$(INSTALL_PREFIX)$(INSTALLTOP)/lib/engines \
523
		$(INSTALL_PREFIX)$(INSTALLTOP)/lib/pkgconfig \
B
Bodo Möller 已提交
524 525 526
		$(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl \
		$(INSTALL_PREFIX)$(OPENSSLDIR)/misc \
		$(INSTALL_PREFIX)$(OPENSSLDIR)/certs \
527
		$(INSTALL_PREFIX)$(OPENSSLDIR)/private
528
	@set -e; for i in $(EXHEADER) ;\
B
Bodo Möller 已提交
529 530 531 532
	do \
	(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
	done;
533
	@set -e; for i in $(DIRS) ;\
534
	do \
535
	if [ -d "$$i" ]; then \
536
		(cd $$i; echo "installing $$i..."; \
537
		$(MAKE) $(BUILDENV) INSTALL_PREFIX='${INSTALL_PREFIX}' OPENSSLDIR='${OPENSSLDIR}' install ); \
538
	fi; \
539
	done
540
	@set -e; for i in $(LIBS) ;\
541
	do \
542 543
		if [ -f "$$i" ]; then \
		(       echo installing $$i; \
544 545 546
			cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new; \
			$(RANLIB) $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new; \
			chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new; \
547
			mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i ); \
L
Lutz Jänicke 已提交
548 549
		fi; \
	done;
550
	@set -e; if [ -n "$(SHARED_LIBS)" ]; then \
551 552 553
		tmp="$(SHARED_LIBS)"; \
		for i in $${tmp:-x}; \
		do \
554
			if [ -f "$$i" -o -f "$$i.a" ]; then \
555
			(       echo installing $$i; \
556
				if [ "$(PLATFORM)" != "Cygwin" ]; then \
557 558
					cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new; \
					chmod 555 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new; \
559
					mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i; \
560 561
				else \
					c=`echo $$i | sed 's/^lib/cyg/'`; \
562 563
					cp $$c $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new; \
					chmod 755 $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new; \
564
					mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c; \
565 566
					cp $$i.a $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.a.new; \
					chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.a.new; \
567
					mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.a.new $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.a; \
568
				fi ); \
L
Lutz Jänicke 已提交
569
			fi; \
570 571 572
		done; \
		(	here="`pwd`"; \
			cd $(INSTALL_PREFIX)$(INSTALLTOP)/lib; \
573
			$(NEWMAKE) -f $$here/Makefile HERE="$$here" link-shared ); \
574 575 576 577
		if [ "$(INSTALLTOP)" != "/usr" ]; then \
			echo 'OpenSSL shared libraries have been installed in:'; \
			echo '  $(INSTALLTOP)'; \
			echo ''; \
578
			sed -e '1,/^$$/d' doc/openssl-shared.txt; \
579
		fi; \
580
	fi
581
	cp openssl.pc $(INSTALL_PREFIX)$(INSTALLTOP)/lib/pkgconfig
582
	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/pkgconfig/openssl.pc
583 584 585

install_docs:
	@$(PERL) $(TOP)/util/mkdir-p.pl \
586 587 588 589
		$(INSTALL_PREFIX)$(MANDIR)/man1 \
		$(INSTALL_PREFIX)$(MANDIR)/man3 \
		$(INSTALL_PREFIX)$(MANDIR)/man5 \
		$(INSTALL_PREFIX)$(MANDIR)/man7
590
	@pod2man="`cd util; ./pod2mantest $(PERL)`"; \
591 592 593 594 595
	here="`pwd`"; \
	filecase=; \
	if [ "$(PLATFORM)" = "DJGPP" -o "$(PLATFORM)" = "Cygwin" ]; then \
		filecase=-i; \
	fi; \
596
	set -e; for i in doc/apps/*.pod; do \
597
		fn=`basename $$i .pod`; \
598
		if [ "$$fn" = "config" ]; then sec=5; else sec=1; fi; \
599
		echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \
600
		(cd `$(PERL) util/dirname.pl $$i`; \
601
		sh -c "$$pod2man \
602 603
			--section=$$sec --center=OpenSSL \
			--release=$(VERSION) `basename $$i`") \
604
			>  $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
605 606
		$(PERL) util/extract-names.pl < $$i | \
			grep -v $$filecase "^$$fn\$$" | \
607
			grep -v "[	]" | \
608 609
			(cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
			 while read n; do \
R
Richard Levitte 已提交
610
				$$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}$(MANSUFFIX); \
611
			 done); \
612
	done; \
613
	set -e; for i in doc/crypto/*.pod doc/ssl/*.pod; do \
614
		fn=`basename $$i .pod`; \
615
		if [ "$$fn" = "des_modes" ]; then sec=7; else sec=3; fi; \
616
		echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \
617
		(cd `$(PERL) util/dirname.pl $$i`; \
618
		sh -c "$$pod2man \
619 620
			--section=$$sec --center=OpenSSL \
			--release=$(VERSION) `basename $$i`") \
621
			>  $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
622 623
		$(PERL) util/extract-names.pl < $$i | \
			grep -v $$filecase "^$$fn\$$" | \
R
Richard Levitte 已提交
624
			grep -v "[	]" | \
625 626
			(cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
			 while read n; do \
R
Richard Levitte 已提交
627
				$$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}$(MANSUFFIX); \
628
			 done); \
629
	done
630 631

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