Makefile.org 17.1 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 69
RANLIB= ranlib
PERL= perl
70
TAR= tar
R
Richard Levitte 已提交
71
TARFLAGS= --no-recursion
72
MAKEDEPPROG=makedepend
73

74 75 76 77 78 79
# 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
80
ASFLAG=$(CFLAG)
81

82 83 84 85 86 87
# 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= 
88
BN_ASM= bn_asm.o
89
DES_ENC= des_enc.o fcrypt_b.o
90
AES_ASM_OBJ=aes_core.o aes_cbc.o
91 92 93 94 95 96 97
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= 
98

99 100
# KRB5 stuff
KRB5_INCLUDES=
101
LIBKRB5=
102

103
DIRS=   crypto ssl engines apps test tools
U
Ulf Möller 已提交
104 105
SHLIBDIRS= crypto ssl

106 107
# dirs in crypto to build
SDIRS=  \
108
	objects \
109
	md2 md4 md5 sha mdc2 hmac ripemd \
110 111
	des aes rc2 rc4 rc5 idea bf cast \
	bn ec rsa dsa ecdsa dh ecdh dso engine \
112
	buffer bio stack lhash rand err \
113
	evp asn1 pem x509 x509v3 conf txt_db pkcs7 pkcs12 comp ocsp ui krb5 \
B
Ben Laurie 已提交
114
	store pqueue
115

116 117 118 119
# tests to perform.  "alltests" is a special word indicating that all tests
# should be performed.
TESTS = alltests

B
Ben Laurie 已提交
120
MAKEFILE= Makefile
121

122
MANDIR=$(OPENSSLDIR)/man
123 124
MAN1=1
MAN3=3
125
MANSUFFIX=
126 127
SHELL=/bin/sh

128
TOP=    .
129
ONEDIRS=out tmp
U
Ulf Möller 已提交
130
EDIRS=  times doc bugs util include certs ms shlib mt demos perl sf dep VMS
131
WDIRS=  windows
132
LIBS=   libcrypto.a libssl.a
133 134 135 136
SHARED_CRYPTO=libcrypto$(SHLIB_EXT)
SHARED_SSL=libssl$(SHLIB_EXT)
SHARED_LIBS=
SHARED_LIBS_LINK_EXTS=
137
SHARED_LDFLAGS=
138 139

GENERAL=        Makefile
R
Ralf S. Engelschall 已提交
140
BASENAME=       openssl
141 142 143
NAME=           $(BASENAME)-$(VERSION)
TARFILE=        $(NAME).tar
WTARFILE=       $(NAME)-win.tar
144
EXHEADER=       e_os2.h
145
HEADER=         e_os.h
146

B
Ben Laurie 已提交
147
all: Makefile build_all openssl.pc
148

149 150 151
BUILDENV=	PLATFORM='${PLATFORM}' PROCESSOR='${PROCESSOR}' \
		SDIRS='$(SDIRS)' INSTALLTOP='${INSTALLTOP}'	\
		CC='${CC}' CFLAG='${CFLAG}' 			\
152
		AS='${CC}' ASFLAG='${CFLAG} -c'			\
153 154 155 156 157 158
		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}'	\
159
		CPUID_OBJ='${CPUID_OBJ}'			\
160 161 162 163 164 165 166 167
		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}'

168 169 170
BUILD_CMD=if echo " $(DIRS) " | grep " $$dir " >/dev/null 2>/dev/null; then \
	if [ -d "$$dir" ]; then \
		(cd $$dir && echo "making $$target in $$dir..." && \
A
Andy Polyakov 已提交
171
		$(MAKE) -e $(BUILDENV) $$target ) || exit 1; \
172
	else \
173
		$(MAKE) $$dir; \
174 175
	fi; fi

176
sub_all: build_all
177 178
build_all: build_libs build_apps build_tests build_tools

179
build_libs: build_crypto build_ssl build_engines
180 181

build_crypto:
182
	@dir=crypto; target=all; $(BUILD_CMD)
183
build_ssl:
184
	@dir=ssl; target=all; $(BUILD_CMD)
185
build_engines:
186
	@dir=engines; target=all; $(BUILD_CMD)
187
build_apps:
188
	@dir=apps; target=all; $(BUILD_CMD)
189
build_tests:
190
	@dir=test; target=all; $(BUILD_CMD)
191
build_tools:
192 193 194 195 196
	@dir=tools; target=all; $(BUILD_CMD)

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

198
libcrypto$(SHLIB_EXT): libcrypto.a
199
	@if [ "$(SHLIB_TARGET)" != "" ]; then \
200
		$(MAKE) SHLIBDIRS=crypto build-shared; \
201 202
	else \
		echo "There's no support for shared libraries on this platform" >&2; \
203
		exit 1; \
204
	fi
205

206
libssl$(SHLIB_EXT): libcrypto$(SHLIB_EXT) libssl.a
207
	@if [ "$(SHLIB_TARGET)" != "" ]; then \
208
		$(MAKE) SHLIBDIRS=ssl SHLIBDEPS='-lcrypto' build-shared; \
209 210
	else \
		echo "There's no support for shared libraries on this platform" >&2; \
211
		exit 1; \
212
	fi
213 214

clean-shared:
215
	@set -e; for i in $(SHLIBDIRS); do \
216 217 218 219 220 221 222
		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) ); \
223
		if [ "$(PLATFORM)" = "Cygwin" ]; then \
224 225
			( set -x; rm -f cyg$$i$(SHLIB_EXT) lib$$i$(SHLIB_EXT).a ); \
		fi; \
226
	done
227

228
link-shared:
229
	@ set -e; for i in ${SHLIBDIRS}; do \
230
		$(MAKE) -f $(HERE)/Makefile.shared \
231 232 233
			LIBNAME=$$i LIBVERSION=${SHLIB_MAJOR}.${SHLIB_MINOR} \
			LIBCOMPATVERSIONS=";${SHLIB_VERSION_HISTORY}" \
			symlink.$(SHLIB_TARGET); \
234
		libs="$$libs -l$$i"; \
235 236
	done

237 238 239
build-shared: do_$(SHLIB_TARGET) link-shared

do_$(SHLIB_TARGET):
240
	@ set -e; libs='-L. ${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \
241 242 243
		if [ "${SHLIBDIRS}" = "ssl" -a -n "$(LIBKRB5)" ]; then \
			libs="$(LIBKRB5) $$libs"; \
		fi; \
244
		$(MAKE) -f Makefile.shared \
245
			$(BUILDENV) \
246 247 248
			LIBNAME=$$i LIBVERSION=${SHLIB_MAJOR}.${SHLIB_MINOR} \
			LIBCOMPATVERSIONS=";${SHLIB_VERSION_HISTORY}" \
			LIBDEPS="$$libs $(EX_LIBS)" \
249
			LIBRPATH="$(INSTALLTOP)/lib" \
250
			link_a.$(SHLIB_TARGET); \
251
		libs="-l$$i $$libs"; \
252 253
	done

B
Ben Laurie 已提交
254
openssl.pc: Makefile
255 256 257 258 259 260 261 262 263 264
	@ ( 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)'; \
265
	    echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > openssl.pc
266

267 268
Makefile: Makefile.org Configure config
	@echo "Makefile is older than Makefile.org, Configure or config."
269
	@echo "Reconfigure the source tree (via './config' or 'perl Configure'), please."
270 271
	@false

272
libclean:
273
	rm -f *.map *.so *.so.* engines/*.so *.a */lib */*/lib
274

275 276
clean:	libclean
	rm -f shlib/*.o *.o core a.out fluff rehash.time testlog make.log cctest cctest.c
277
	@set -e; for i in $(DIRS) ;\
278
	do \
279
	if [ -d "$$i" ]; then \
280 281 282 283
		(cd $$i && echo "making clean in $$i..." && \
		$(MAKE) SDIRS='${SDIRS}' clean ) || exit 1; \
		rm -f $(LIBS); \
	fi; \
284
	done;
285
	rm -f openssl.pc
286
	rm -f speed.* .pure
287
	rm -f $(TARFILE)
288
	@set -e; for i in $(ONEDIRS) ;\
289
	do \
290
	rm -fr $$i/*; \
291 292 293
	done

makefile.one: files
294
	$(PERL) util/mk1mf.pl >makefile.one; \
295 296
	sh util/do_ms.sh

U
Ulf Möller 已提交
297
files:
B
Ben Laurie 已提交
298
	$(PERL) $(TOP)/util/files.pl Makefile > $(TOP)/MINFO
299
	@set -e; for i in $(DIRS) ;\
300
	do \
301
	if [ -d "$$i" ]; then \
302 303 304
		(cd $$i && echo "making 'files' in $$i..." && \
		$(MAKE) SDIRS='${SDIRS}' PERL='${PERL}' files ) || exit 1; \
	fi; \
305 306 307
	done;

links:
308
	@$(PERL) $(TOP)/util/mkdir-p.pl include/openssl
309
	@$(PERL) $(TOP)/util/mklink.pl include/openssl $(EXHEADER)
310
	@set -e; target=links; for dir in $(DIRS); do $(BUILD_CMD); done
311

312 313
gentests:
	@(cd test && echo "generating dummy tests (if needed)..." && \
314
	$(MAKE) $(BUILDENV) TESTS='${TESTS}' OPENSSL_DEBUG_MEMORY=on generate );
315

316
dclean:
317
	rm -f *.bak
318
	@set -e; for i in $(DIRS) ;\
319
	do \
320
	if [ -d "$$i" ]; then \
321 322 323
		(cd $$i && echo "making dclean in $$i..." && \
		$(MAKE) SDIRS='${SDIRS}' PERL='${PERL}' dclean ) || exit 1; \
	fi; \
324 325
	done;

326 327
rehash: rehash.time
rehash.time: certs
328 329
	@(OPENSSL="`pwd`/util/opensslwrap.sh"; \
	  OPENSSL_DEBUG_MEMORY=on; \
330 331
	  export OPENSSL OPENSSL_DEBUG_MEMORY; \
	  $(PERL) tools/c_rehash certs)
B
Bodo Möller 已提交
332
	touch rehash.time
333

334
test:   tests
335

336
tests: rehash
337
	@(cd test && echo "testing..." && \
338 339
	$(MAKE) -e $(BUILDENV) TESTS='${TESTS}' OPENSSL_DEBUG_MEMORY=on tests );
	util/opensslwrap.sh version -a
340

341 342 343
report:
	@$(PERL) util/selftest.pl

344
depend:
345
	@set -e; for i in $(DIRS) ;\
346
	do \
347
	if [ -d "$$i" ]; then \
348
		(cd $$i && echo "making dependencies $$i..." && \
349
		$(MAKE) SDIRS='${SDIRS}' CFLAG='-DOPENSSL_NO_DEPRECATED ${CFLAG}' DEPFLAG='${DEPFLAG}' MAKEDEPPROG='${MAKEDEPPROG}' KRB5_INCLUDES='${KRB5_INCLUDES}' PERL='${PERL}' depend ) || exit 1; \
350
	fi; \
351 352 353
	done;

lint:
354
	@set -e; for i in $(DIRS) ;\
355
	do \
356
	if [ -d "$$i" ]; then \
357 358 359
		(cd $$i && echo "making lint $$i..." && \
		$(MAKE) SDIRS='${SDIRS}' lint ) || exit 1; \
	fi; \
360 361 362
	done;

tags:
B
Ben Laurie 已提交
363 364
	rm -f TAGS
	find . -name '[^.]*.[ch]' | xargs etags -a
365 366

errors:
367
	$(PERL) util/mkerr.pl -recurse -write
368
	(cd engines; $(MAKE) PERL=$(PERL) errors)
369
	$(PERL) util/ck_errf.pl */*.c */*/*.c
370

371
stacks:
372
	$(PERL) util/mkstack.pl -write
373

374
util/libeay.num::
375
	$(PERL) util/mkdef.pl crypto update
376 377

util/ssleay.num::
378
	$(PERL) util/mkdef.pl ssl update
379

380
crypto/objects/obj_dat.h: crypto/objects/obj_dat.pl crypto/objects/obj_mac.h
381
	$(PERL) crypto/objects/obj_dat.pl crypto/objects/obj_mac.h crypto/objects/obj_dat.h
B
typo  
Bodo Möller 已提交
382
crypto/objects/obj_mac.h: crypto/objects/objects.pl crypto/objects/objects.txt crypto/objects/obj_mac.num
383
	$(PERL) crypto/objects/objects.pl crypto/objects/objects.txt crypto/objects/obj_mac.num crypto/objects/obj_mac.h
384

385 386 387
apps/openssl-vms.cnf: apps/openssl.cnf
	$(PERL) VMS/VMSify-conf.pl < apps/openssl.cnf > apps/openssl-vms.cnf

388
TABLE: Configure
B
Bodo Möller 已提交
389
	(echo 'Output of `Configure TABLE'"':"; \
390
	$(PERL) Configure TABLE) > TABLE
391

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

394 395 396 397 398
# 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.
399
tar:
400 401 402
	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
403 404
	find * \! -path CVS/\* \! -path \*/CVS/\* \! -name CVS \! -name .cvsignore \! -name STATUS \! -name TABLE | sort > ../$(TARFILE).list; \
	$(TAR) $(TARFLAGS) --files-from ../$(TARFILE).list -cvf - | \
405
	tardy --user_number=0  --user_name=openssl \
R
Ralf S. Engelschall 已提交
406 407
	      --group_number=0 --group_name=openssl \
	      --prefix=openssl-$(VERSION) - |\
408
	gzip --best >../$(TARFILE).gz; \
409
	rm -f ../$(TARFILE).list; \
410
	ls -l ../$(TARFILE).gz
411

412 413
tar-snap:
	@$(TAR) $(TARFLAGS) -cvf - \
414
		`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` |\
415 416 417 418 419
	tardy --user_number=0  --user_name=openssl \
	      --group_number=0 --group_name=openssl \
	      --prefix=openssl-$(VERSION) - > ../$(TARFILE);\
	ls -l ../$(TARFILE)

420
dist:   
421
	$(PERL) Configure dist
422 423
	@$(MAKE) dist_pem_h
	@$(MAKE) SDIRS='${SDIRS}' clean
424
	@$(MAKE) TAR='${TAR}' TARFLAGS='${TARFLAGS}' tar
425 426

dist_pem_h:
427
	(cd crypto/pem; $(MAKE) $(BUILDENV) pem.h; $(MAKE) clean)
428

429 430 431
install: all install_docs install_sw

install_sw:
B
Bodo Möller 已提交
432 433
	@$(PERL) $(TOP)/util/mkdir-p.pl $(INSTALL_PREFIX)$(INSTALLTOP)/bin \
		$(INSTALL_PREFIX)$(INSTALLTOP)/lib \
434
		$(INSTALL_PREFIX)$(INSTALLTOP)/lib/engines \
435
		$(INSTALL_PREFIX)$(INSTALLTOP)/lib/pkgconfig \
B
Bodo Möller 已提交
436 437 438
		$(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl \
		$(INSTALL_PREFIX)$(OPENSSLDIR)/misc \
		$(INSTALL_PREFIX)$(OPENSSLDIR)/certs \
439
		$(INSTALL_PREFIX)$(OPENSSLDIR)/private
440
	@set -e; headerlist="$(EXHEADER)"; for i in $$headerlist;\
B
Bodo Möller 已提交
441 442 443 444
	do \
	(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
	done;
445
	@set -e; for i in $(DIRS) ;\
446
	do \
447
	if [ -d "$$i" ]; then \
448
		(cd $$i; echo "installing $$i..."; \
449
		$(MAKE) $(BUILDENV) INSTALL_PREFIX='${INSTALL_PREFIX}' OPENSSLDIR='${OPENSSLDIR}' install ); \
450
	fi; \
451
	done
452
	@set -e; for i in $(LIBS) ;\
453
	do \
454 455
		if [ -f "$$i" ]; then \
		(       echo installing $$i; \
456 457 458
			cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new; \
			$(RANLIB) $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new; \
			chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new; \
459
			mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i ); \
L
Lutz Jänicke 已提交
460 461
		fi; \
	done;
462
	@set -e; if [ -n "$(SHARED_LIBS)" ]; then \
463 464 465
		tmp="$(SHARED_LIBS)"; \
		for i in $${tmp:-x}; \
		do \
466
			if [ -f "$$i" -o -f "$$i.a" ]; then \
467
			(       echo installing $$i; \
468
				if [ "$(PLATFORM)" != "Cygwin" ]; then \
469 470
					cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new; \
					chmod 555 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new; \
471
					mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i; \
472 473
				else \
					c=`echo $$i | sed 's/^lib/cyg/'`; \
474 475
					cp $$c $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new; \
					chmod 755 $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new; \
476
					mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c; \
477 478
					cp $$i.a $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.a.new; \
					chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.a.new; \
479
					mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.a.new $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.a; \
480
				fi ); \
L
Lutz Jänicke 已提交
481
			fi; \
482 483 484
		done; \
		(	here="`pwd`"; \
			cd $(INSTALL_PREFIX)$(INSTALLTOP)/lib; \
485
			$(MAKE) -f $$here/Makefile HERE="$$here" link-shared ); \
486 487 488 489
		if [ "$(INSTALLTOP)" != "/usr" ]; then \
			echo 'OpenSSL shared libraries have been installed in:'; \
			echo '  $(INSTALLTOP)'; \
			echo ''; \
490
			sed -e '1,/^$$/d' doc/openssl-shared.txt; \
491
		fi; \
492
	fi
493
	cp openssl.pc $(INSTALL_PREFIX)$(INSTALLTOP)/lib/pkgconfig
494
	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/pkgconfig/openssl.pc
495 496 497

install_docs:
	@$(PERL) $(TOP)/util/mkdir-p.pl \
498 499 500 501
		$(INSTALL_PREFIX)$(MANDIR)/man1 \
		$(INSTALL_PREFIX)$(MANDIR)/man3 \
		$(INSTALL_PREFIX)$(MANDIR)/man5 \
		$(INSTALL_PREFIX)$(MANDIR)/man7
502
	@pod2man="`cd util; ./pod2mantest $(PERL)`"; \
503 504
	here="`pwd`"; \
	filecase=; \
A
Andy Polyakov 已提交
505
	if [ "$(PLATFORM)" = "DJGPP" -o "$(PLATFORM)" = "Cygwin" -o "$(PLATFORM)" = "mingw" ]; then \
506 507
		filecase=-i; \
	fi; \
508
	set -e; for i in doc/apps/*.pod; do \
509
		fn=`basename $$i .pod`; \
510
		sec=`$(PERL) util/extract-section.pl 1 < $$i`; \
511
		echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \
512
		(cd `$(PERL) util/dirname.pl $$i`; \
513
		sh -c "$$pod2man \
514 515
			--section=$$sec --center=OpenSSL \
			--release=$(VERSION) `basename $$i`") \
516
			>  $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
517 518
		$(PERL) util/extract-names.pl < $$i | \
			grep -v $$filecase "^$$fn\$$" | \
519
			grep -v "[	]" | \
520 521
			(cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
			 while read n; do \
R
Richard Levitte 已提交
522
				$$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}$(MANSUFFIX); \
523
			 done); \
524
	done; \
525
	set -e; for i in doc/crypto/*.pod doc/ssl/*.pod; do \
526
		fn=`basename $$i .pod`; \
527
		sec=`$(PERL) util/extract-section.pl 3 < $$i`; \
528
		echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \
529
		(cd `$(PERL) util/dirname.pl $$i`; \
530
		sh -c "$$pod2man \
531 532
			--section=$$sec --center=OpenSSL \
			--release=$(VERSION) `basename $$i`") \
533
			>  $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
534 535
		$(PERL) util/extract-names.pl < $$i | \
			grep -v $$filecase "^$$fn\$$" | \
R
Richard Levitte 已提交
536
			grep -v "[	]" | \
537 538
			(cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
			 while read n; do \
R
Richard Levitte 已提交
539
				$$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}$(MANSUFFIX); \
540
			 done); \
541
	done
542 543

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