Makefile.org 17.7 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
# 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=
22 23 24 25
INSTALLTOP=/usr/local/ssl

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

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

B
Ben Laurie 已提交
55
CC= gcc
56
#CFLAG= -DL_ENDIAN -DTERMIO -O3 -fomit-frame-pointer -m486 -Wall -Wuninitialized -DSHA1_ASM -DMD5_ASM -DRMD160_ASM
B
Ben Laurie 已提交
57
CFLAG= -DTERMIOS -DL_ENDIAN -fomit-frame-pointer -O3 -m486 -Wall -DSHA1_ASM -DMD5_ASM -DRMD160_ASM
58
DEPFLAG= 
59
PEX_LIBS= -L. -L.. -L../.. -L../../..
60
EX_LIBS= 
61
AR=ar r
62 63
RANLIB= ranlib
PERL= perl
64
TAR= tar
R
Richard Levitte 已提交
65
TARFLAGS= --no-recursion
66

67 68 69 70 71 72 73 74 75 76 77 78 79 80
# 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
81

U
Ulf Möller 已提交
82 83 84 85
# For x86 assembler: Set PROCESSOR to 386 if you want to support
# the 80386.
PROCESSOR=

86 87
# Set DES_ENC to des_enc.o if you want to use the C version
#There are 4 x86 assember options.
B
Ben Laurie 已提交
88
DES_ENC= asm/dx86-out.o asm/yx86-out.o
89 90 91 92 93
#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
94 95 96

# Set BF_ENC to bf_enc.o if you want to use the C version
#There are 4 x86 assember options.
B
Ben Laurie 已提交
97
BF_ENC= asm/bx86-out.o
98
#BF_ENC= bf_enc.o
99
#BF_ENC= asm/bx86-elf.o # elf
100 101 102
#BF_ENC= asm/bx86-sol.o # solaris
#BF_ENC= asm/bx86-out.o # a.out, FreeBSD
#BF_ENC= asm/bx86bsdi.o # bsdi
103

104 105
# Set CAST_ENC to c_enc.o if you want to use the C version
#There are 4 x86 assember options.
B
Ben Laurie 已提交
106
CAST_ENC= asm/cx86-out.o
107 108 109 110 111 112 113 114
#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 已提交
115
RC4_ENC= asm/rx86-out.o
116 117 118 119 120 121 122 123
#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 已提交
124
RC5_ENC= asm/r586-out.o
125 126 127 128 129 130 131
#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 已提交
132
MD5_ASM_OBJ= asm/mx86-out.o
133 134 135 136 137 138
#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 已提交
139
SHA1_ASM_OBJ= asm/sx86-out.o
140 141 142 143 144 145
#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 已提交
146
RMD160_ASM_OBJ= asm/rm86-out.o
147 148 149 150 151
#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

152 153 154 155
# KRB5 stuff
KRB5_INCLUDES=
LIBKRB5=

156
# When we're prepared to use shared libraries in the programs we link here
157 158
# we might set SHLIB_MARK to '$(SHARED_LIBS)'.
SHLIB_MARK=
159

160
DIRS=   crypto ssl $(SHLIB_MARK) apps test tools
U
Ulf Möller 已提交
161 162
SHLIBDIRS= crypto ssl

163 164
# dirs in crypto to build
SDIRS=  \
165
	md2 md4 md5 sha mdc2 hmac ripemd \
166
	des rc2 rc4 rc5 idea bf cast \
167
	bn rsa dsa dh dso engine rijndael \
168
	buffer bio stack lhash rand err objects \
169
	evp asn1 pem x509 x509v3 conf txt_db pkcs7 pkcs12 comp ocsp
170

171 172 173 174
# tests to perform.  "alltests" is a special word indicating that all tests
# should be performed.
TESTS = alltests

175
MAKEFILE= Makefile.ssl
176
MAKE=     make -f Makefile.ssl
177

178
MANDIR=$(OPENSSLDIR)/man
179 180 181 182
MAN1=1
MAN3=3
SHELL=/bin/sh

183
TOP=    .
184
ONEDIRS=out tmp
U
Ulf Möller 已提交
185
EDIRS=  times doc bugs util include certs ms shlib mt demos perl sf dep VMS
186
WDIRS=  windows
187
LIBS=   libcrypto.a libssl.a
188 189 190 191
SHARED_CRYPTO=libcrypto$(SHLIB_EXT)
SHARED_SSL=libssl$(SHLIB_EXT)
SHARED_LIBS=
SHARED_LIBS_LINK_EXTS=
192 193

GENERAL=        Makefile
R
Ralf S. Engelschall 已提交
194
BASENAME=       openssl
195 196 197
NAME=           $(BASENAME)-$(VERSION)
TARFILE=        $(NAME).tar
WTARFILE=       $(NAME)-win.tar
198
EXHEADER=       e_os.h e_os2.h
199
HEADER=         e_os.h
200

201 202 203 204
# When we're prepared to use shared libraries in the programs we link here
# we might remove 'clean-shared' from the targets to perform at this stage

all: clean-shared Makefile.ssl sub_all
205 206

sub_all:
207
	@for i in $(DIRS); \
208
	do \
209
	if [ -d "$$i" ]; then \
210
		(cd $$i && echo "making all in $$i..." && \
211
		$(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}' KRB5_INCLUDES='${KRB5_INCLUDES}' LIBKRB5='${LIBKRB5}' all ) || exit 1; \
212 213
	else \
		$(MAKE) $$i; \
214 215
	fi; \
	done; \
216
	if echo "$(DIRS)" | \
217
	    egrep '(^| )(crypto|ssl)( |$$)' > /dev/null 2>&1 && \
218
	   [ -n "$(SHARED_LIBS)" ]; then \
219 220 221
		$(MAKE) $(SHARED_LIBS); \
	fi

222
libcrypto$(SHLIB_EXT): libcrypto.a
223
	@if [ "$(SHLIB_TARGET)" != "" ]; then \
224
		$(MAKE) SHLIBDIRS=crypto build-shared; \
225 226 227
	else \
		echo "There's no support for shared libraries on this platform" >&2; \
	fi
228
libssl$(SHLIB_EXT): libcrypto$(SHLIB_EXT) libssl.a
229
	@if [ "$(SHLIB_TARGET)" != "" ]; then \
230
		$(MAKE) SHLIBDIRS=ssl SHLIBDEPS='-L. -lcrypto' build-shared; \
231 232 233
	else \
		echo "There's no support for shared libraries on this platform" >&2; \
	fi
234 235

clean-shared:
236 237 238 239 240 241 242 243
	@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) ); \
244
	done
245

246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261
link-shared:
	@for i in $(SHLIBDIRS); do \
		prev=lib$$i$(SHLIB_EXT); \
		if [ -n "$(SHARED_LIBS_LINK_EXTS)" ]; then \
			tmp="$(SHARED_LIBS_LINK_EXTS)"; \
			for j in $${tmp:-x}; do \
				( set -x; ln -s -f $$prev lib$$i$$j ); \
				prev=lib$$i$$j; \
			done; \
		fi; \
	done

build-shared: clean-shared do_$(SHLIB_TARGET) link-shared

do_bsd-gcc-shared: linux-shared
do_linux-shared:
262
	libs='${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \
263
	( set -x; ${CC}  -shared -o lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \
264
		-Wl,-S,-soname=lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \
U
Ulf Möller 已提交
265
		-Wl,--whole-archive lib$$i.a \
266
		-Wl,--no-whole-archive $$libs ${EX_LIBS} -lc ) || exit 1; \
267
	libs="$$libs -L. -l$$i"; \
268
	done
269 270

# This assumes that GNU utilities are *not* used
271
do_tru64-shared:
272
	libs='${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \
273 274
	( set -x; ${CC}  -shared -no_archive -o lib$$i.so \
		-set_version "${SHLIB_VERSION_HISTORY}${SHLIB_VERSION_NUMBER}" \
275
		-all lib$$i.a -none $$libs ${EX_LIBS} -lc ) || exit 1; \
276
	libs="$$libs -L. -l$$i"; \
277
	done
U
Ulf Möller 已提交
278

279
# This assumes that GNU utilities are *not* used
280
do_solaris-shared:
281
	libs='${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \
282
	( set -x; ${CC}  -G -o lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \
283
		-h lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \
284
		-z allextract lib$$i.a $$libs ${EX_LIBS} -lc ) || exit 1; \
285
	libs="$$libs -L. -l$$i"; \
286
	done
287

288 289 290 291
# This assumes that GNU utilities are *not* used
do_irix-shared:
	libs='${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \
	( set -x; ${CC} -shared -o lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \
292
		-Wl,-soname,lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \
293 294 295 296
		-all lib$$i.a $$libs ${EX_LIBS} -lc) || exit 1; \
	libs="$$libs -L. -l$$i"; \
	done

297
# This assumes that GNU utilities are *not* used
298 299 300 301 302 303 304 305 306 307
# HP-UX includes the full pathname of libs we depend on, so we would get
# ./libcrypto (with ./ as path information) compiled into libssl, hence
# we omit the SHLIBDEPS. Applications must be linked with -lssl -lcrypto
# anyway.
# The object modules are loaded from lib$i.a using the undocumented -Fl
# option.
#
# WARNING: Until DSO is fixed to support a search path, we support SHLIB_PATH
#          by temporarily specifying "+s"!
#
308
do_hpux-shared:
309
	for i in ${SHLIBDIRS}; do \
310
	( set -x; /usr/ccs/bin/ld +vnocompatwarnings \
311 312
		-b -z +s \
		-o lib$$i.sl.${SHLIB_MAJOR}.${SHLIB_MINOR} \
313
		+h lib$$i.sl.${SHLIB_MAJOR}.${SHLIB_MINOR} \
314
		-Fl lib$$i.a -ldld -lc ) || exit 1; \
315 316 317
	done

# This assumes that GNU utilities are *not* used
318 319 320 321 322 323 324 325
# HP-UX includes the full pathname of libs we depend on, so we would get
# ./libcrypto (with ./ as path information) compiled into libssl, hence
# we omit the SHLIBDEPS. Applications must be linked with -lssl -lcrypto
# anyway.
#
# HP-UX in 64bit mode has "+s" enabled by default; it will search for
# shared libraries along LD_LIBRARY_PATH _and_ SHLIB_PATH.
#
326
do_hpux64-shared:
327 328 329
	for i in ${SHLIBDIRS}; do \
	( set -x; /usr/ccs/bin/ld -b -z \
		-o lib$$i.sl.${SHLIB_MAJOR}.${SHLIB_MINOR} \
330
		+h lib$$i.sl.${SHLIB_MAJOR}.${SHLIB_MINOR} \
331
		+forceload lib$$i.a -ldl -lc ) || exit 1; \
332 333
	done

334
Makefile.ssl: Makefile.org
335
	@echo "Makefile.ssl is older than Makefile.org."
336
	@echo "Reconfigure the source tree (via './config' or 'perl Configure'), please."
337 338
	@false

339
libclean:
340
	rm -f *.a */lib */*/lib
341

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

makefile.one: files
360
	$(PERL) util/mk1mf.pl >makefile.one; \
361 362
	sh util/do_ms.sh

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

links:
374
	@$(TOP)/util/point.sh Makefile.ssl Makefile
375
	@$(PERL) $(TOP)/util/mkdir-p.pl include/openssl
376
	@$(PERL) $(TOP)/util/mklink.pl include/openssl $(EXHEADER)
377
	@for i in $(DIRS); do \
378
	if [ -d "$$i" ]; then \
379
		(cd $$i && echo "making links in $$i..." && \
380
		$(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; \
381
	fi; \
382 383 384
	done;

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

394 395
rehash: rehash.time
rehash.time: certs
396
	@(OPENSSL="`pwd`/apps/openssl"; export OPENSSL; $(PERL) tools/c_rehash certs)
B
Bodo Möller 已提交
397
	touch rehash.time
398

399
test:   tests
400

401
tests: rehash
402
	@(cd test && echo "testing..." && \
403
	$(MAKE) CC='${CC}' CFLAG='${CFLAG}' 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}' SDIRS='${SDIRS}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' AR='${AR}' PERL='${PERL}' TESTS='${TESTS}' KRB5_INCLUDES='${KRB5_INCLUDES}' LIBKRB5='${LIBKRB5}' tests );
404
	@apps/openssl version -a
405

406 407 408
report:
	@$(PERL) util/selftest.pl

409 410 411
depend:
	@for i in $(DIRS) ;\
	do \
412
	if [ -d "$$i" ]; then \
413 414 415
		(cd $$i && echo "making dependencies $$i..." && \
		$(MAKE) SDIRS='${SDIRS}' DEPFLAG='${DEPFLAG}' depend ) || exit 1; \
	fi; \
416 417 418 419 420
	done;

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

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

errors:
437
	$(PERL) util/mkerr.pl -recurse -write
438

439
stacks:
440
	$(PERL) util/mkstack.pl -write
441

442
util/libeay.num::
443
	$(PERL) util/mkdef.pl crypto update
444 445

util/ssleay.num::
446
	$(PERL) util/mkdef.pl ssl update
447

448
crypto/objects/obj_dat.h: crypto/objects/obj_mac.h crypto/objects/obj_dat.pl
449
	$(PERL) crypto/objects/obj_dat.pl crypto/objects/obj_mac.h crypto/objects/obj_dat.h
450
crypto/objects/obj_mac.h: crypto/objects/objects.pl crypto/objects/objects.txt 
451
	$(PERL) crypto/objects/objects.pl crypto/objects/objects.txt crypto/objects/obj_mac.num crypto/objects/obj_mac.h
452

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

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

459
tar:
460
	@$(TAR) $(TARFLAGS) -cvf - \
461
		`find * \! -path CVS/\* \! -path \*/CVS/\* \! -name CVS \! -name .cvsignore \! -name STATUS \! -name TABLE | sort` |\
462
	tardy --user_number=0  --user_name=openssl \
R
Ralf S. Engelschall 已提交
463 464
	      --group_number=0 --group_name=openssl \
	      --prefix=openssl-$(VERSION) - |\
465 466
	gzip --best >../$(TARFILE).gz; \
	ls -l ../$(TARFILE).gz
467

468
dist:   
469
	$(PERL) Configure dist
470 471 472 473 474
	@$(MAKE) dist_pem_h
	@$(MAKE) SDIRS='${SDIRS}' clean
	@$(MAKE) tar

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

477
install: all install_docs
B
Bodo Möller 已提交
478 479 480 481 482 483
	@$(PERL) $(TOP)/util/mkdir-p.pl $(INSTALL_PREFIX)$(INSTALLTOP)/bin \
		$(INSTALL_PREFIX)$(INSTALLTOP)/lib \
		$(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl \
		$(INSTALL_PREFIX)$(OPENSSLDIR)/misc \
		$(INSTALL_PREFIX)$(OPENSSLDIR)/certs \
		$(INSTALL_PREFIX)$(OPENSSLDIR)/private \
484
		$(INSTALL_PREFIX)$(OPENSSLDIR)/lib
B
Bodo Möller 已提交
485 486 487 488 489
	@for i in $(EXHEADER) ;\
	do \
	(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
	done;
490 491
	@for i in $(DIRS) ;\
	do \
492
	if [ -d "$$i" ]; then \
493 494 495
		(cd $$i; echo "installing $$i..."; \
		$(MAKE) CC='${CC}' CFLAG='${CFLAG}' INSTALL_PREFIX='${INSTALL_PREFIX}' INSTALLTOP='${INSTALLTOP}' OPENSSLDIR='${OPENSSLDIR}' EX_LIBS='${EX_LIBS}' SDIRS='${SDIRS}' RANLIB='${RANLIB}' install ); \
	fi; \
496 497 498
	done
	@for i in $(LIBS) ;\
	do \
499 500 501
		if [ -f "$$i" ]; then \
		(       echo installing $$i; \
			cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/lib; \
502
			$(RANLIB) $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i; \
503 504
			chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i ); \
		fi \
505
	done
506 507 508 509 510 511
	@if [ -n "$(SHARED_LIBS)" ]; then \
		tmp="$(SHARED_LIBS)"; \
		for i in $${tmp:-x}; \
		do \
			if [ -f "$$i" ]; then \
			(       echo installing $$i; \
512 513
				cp -f $$i $(INSTALL_PREFIX)$(INSTALLTOP)/lib; \
				chmod 555 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i ); \
514 515 516 517 518 519
			fi \
		done; \
		(	here="`pwd`"; \
			cd $(INSTALL_PREFIX)$(INSTALLTOP)/lib; \
			make -f $$here/Makefile link-shared ); \
	fi
520 521 522

install_docs:
	@$(PERL) $(TOP)/util/mkdir-p.pl \
523 524 525 526
		$(INSTALL_PREFIX)$(MANDIR)/man1 \
		$(INSTALL_PREFIX)$(MANDIR)/man3 \
		$(INSTALL_PREFIX)$(MANDIR)/man5 \
		$(INSTALL_PREFIX)$(MANDIR)/man7
527 528 529
	@for i in doc/apps/*.pod; do \
		fn=`basename $$i .pod`; \
		sec=`[ "$$fn" = "config" ] && echo 5 || echo 1`; \
530
		echo "installing man$$sec/`basename $$i .pod`.$$sec"; \
531
		(cd `dirname $$i`; \
532
		$(PERL) ../../util/pod2man.pl --section=$$sec --center=OpenSSL \
533 534
			 --release=$(VERSION) `basename $$i`) \
			>  $(INSTALL_PREFIX)$(MANDIR)/man$$sec/`basename $$i .pod`.$$sec; \
535 536 537 538
	done
	@for i in doc/crypto/*.pod doc/ssl/*.pod; do \
		fn=`basename $$i .pod`; \
		sec=`[ "$$fn" = "des_modes" ] && echo 7 || echo 3`; \
539
		echo "installing man$$sec/`basename $$i .pod`.$$sec"; \
540
		(cd `dirname $$i`; \
541
		$(PERL) ../../util/pod2man.pl --section=$$sec --center=OpenSSL \
542 543
			--release=$(VERSION) `basename $$i`) \
			>  $(INSTALL_PREFIX)$(MANDIR)/man$$sec/`basename $$i .pod`.$$sec; \
544
	done
545 546

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