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
BUILDENV=	PLATFORM='${PLATFORM}' PROCESSOR='${PROCESSOR}' \
		CC='${CC}' CFLAG='${CFLAG}' 			\
151
		AS='${CC}' ASFLAG='${CFLAG} -c'			\
152
		AR='${AR}' PERL='${PERL}' RANLIB='${RANLIB}'	\
153 154
		SDIRS='$(SDIRS)' LIBRPATH='$(INSTALLTOP)/lib'		\
		INSTALLTOP='${INSTALLTOP}' OPENSSLDIR='${OPENSSLDIR}'	\
155 156 157
		MAKEDEPEND='$$(TOP)/util/domd $$(TOP) -MD $(MAKEDEPPROG)'\
		DEPFLAG='-DOPENSSL_NO_DEPRECATED ${DEPFLAG}'	\
		MAKEDEPPROG='${MAKEDEPPROG}'			\
158 159 160 161 162
		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}'	\
163
		CPUID_OBJ='${CPUID_OBJ}'			\
164 165 166 167 168 169
		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}'			\
170 171
		RMD160_ASM_OBJ='${RMD160_ASM_OBJ}'		\
		THIS=$${THIS:-$@}
172

173 174 175
BUILD_CMD=if echo " $(DIRS) " | grep " $$dir " >/dev/null 2>/dev/null; then \
	if [ -d "$$dir" ]; then \
		(cd $$dir && echo "making $$target in $$dir..." && \
176
		$(MAKE) $(BUILDENV) $$target ) || exit 1; \
177
	else \
178
		$(MAKE) $$dir; \
179 180
	fi; fi

181
reflect:
182
	@[ -n "$(THIS)" ] && $(MAKE) $(THIS) $(BUILDENV)
183

184
sub_all: build_all
185 186
build_all: build_libs build_apps build_tests build_tools

187
build_libs: build_crypto build_ssl build_engines
188 189

build_crypto:
190
	@dir=crypto; target=all; $(BUILD_CMD)
191
build_ssl:
192
	@dir=ssl; target=all; $(BUILD_CMD)
193
build_engines:
194
	@dir=engines; target=all; $(BUILD_CMD)
195
build_apps:
196
	@dir=apps; target=all; $(BUILD_CMD)
197
build_tests:
198
	@dir=test; target=all; $(BUILD_CMD)
199
build_tools:
200 201 202 203 204
	@dir=tools; target=all; $(BUILD_CMD)

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

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

214
libssl$(SHLIB_EXT): libcrypto$(SHLIB_EXT) libssl.a
215
	@if [ "$(SHLIB_TARGET)" != "" ]; then \
216
		$(MAKE) SHLIBDIRS=ssl SHLIBDEPS='-lcrypto' build-shared; \
217 218
	else \
		echo "There's no support for shared libraries on this platform" >&2; \
219
		exit 1; \
220
	fi
221 222

clean-shared:
223
	@set -e; for i in $(SHLIBDIRS); do \
224 225 226 227 228 229 230
		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) ); \
231
		if [ "$(PLATFORM)" = "Cygwin" ]; then \
232 233
			( set -x; rm -f cyg$$i$(SHLIB_EXT) lib$$i$(SHLIB_EXT).a ); \
		fi; \
234
	done
235

236
link-shared:
237
	@ set -e; for i in ${SHLIBDIRS}; do \
238
		$(MAKE) -f $(HERE)/Makefile.shared \
239 240 241
			LIBNAME=$$i LIBVERSION=${SHLIB_MAJOR}.${SHLIB_MINOR} \
			LIBCOMPATVERSIONS=";${SHLIB_VERSION_HISTORY}" \
			symlink.$(SHLIB_TARGET); \
242
		libs="$$libs -l$$i"; \
243 244
	done

245 246 247
build-shared: do_$(SHLIB_TARGET) link-shared

do_$(SHLIB_TARGET):
248
	@ set -e; libs='-L. ${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \
249 250 251
		if [ "${SHLIBDIRS}" = "ssl" -a -n "$(LIBKRB5)" ]; then \
			libs="$(LIBKRB5) $$libs"; \
		fi; \
252
		$(MAKE) -f Makefile.shared $(BUILDENV) \
253 254 255 256
			LIBNAME=$$i LIBVERSION=${SHLIB_MAJOR}.${SHLIB_MINOR} \
			LIBCOMPATVERSIONS=";${SHLIB_VERSION_HISTORY}" \
			LIBDEPS="$$libs $(EX_LIBS)" \
			link_a.$(SHLIB_TARGET); \
257
		libs="-l$$i $$libs"; \
258 259
	done

B
Ben Laurie 已提交
260
openssl.pc: Makefile
261 262 263 264 265 266 267 268 269 270
	@ ( 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)'; \
271
	    echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > openssl.pc
272

273 274
Makefile: Makefile.org Configure config
	@echo "Makefile is older than Makefile.org, Configure or config."
275
	@echo "Reconfigure the source tree (via './config' or 'perl Configure'), please."
276 277
	@false

278
libclean:
279
	rm -f *.map *.so *.so.* engines/*.so *.a */lib */*/lib
280

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

makefile.one: files
300
	$(PERL) util/mk1mf.pl >makefile.one; \
301 302
	sh util/do_ms.sh

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

links:
314
	@$(PERL) $(TOP)/util/mkdir-p.pl include/openssl
315
	@$(PERL) $(TOP)/util/mklink.pl include/openssl $(EXHEADER)
316
	@set -e; target=links; for dir in $(DIRS); do $(BUILD_CMD); done
317

318 319
gentests:
	@(cd test && echo "generating dummy tests (if needed)..." && \
320
	$(MAKE) $(BUILDENV) TESTS='${TESTS}' OPENSSL_DEBUG_MEMORY=on generate );
321

322
dclean:
323
	rm -f *.bak
324
	@set -e; for i in $(DIRS) ;\
325
	do \
326
	if [ -d "$$i" ]; then \
327 328 329
		(cd $$i && echo "making dclean in $$i..." && \
		$(MAKE) SDIRS='${SDIRS}' PERL='${PERL}' dclean ) || exit 1; \
	fi; \
330 331
	done;

332 333
rehash: rehash.time
rehash.time: certs
334 335
	@(OPENSSL="`pwd`/util/opensslwrap.sh"; \
	  OPENSSL_DEBUG_MEMORY=on; \
336 337
	  export OPENSSL OPENSSL_DEBUG_MEMORY; \
	  $(PERL) tools/c_rehash certs)
B
Bodo Möller 已提交
338
	touch rehash.time
339

340
test:   tests
341

342
tests: rehash
343
	@(cd test && echo "testing..." && \
344
	$(MAKE) $(BUILDENV) TESTS='${TESTS}' OPENSSL_DEBUG_MEMORY=on tests );
345
	util/opensslwrap.sh version -a
346

347 348 349
report:
	@$(PERL) util/selftest.pl

350
depend:
351
	@set -e; for i in $(DIRS) ;\
352
	do \
353
	if [ -d "$$i" ]; then \
354
		(cd $$i && echo "making dependencies $$i..." && \
355
		$(MAKE) $(BUILDENV) depend ) || exit 1; \
356
	fi; \
357 358 359
	done;

lint:
360
	@set -e; for i in $(DIRS) ;\
361
	do \
362
	if [ -d "$$i" ]; then \
363 364 365
		(cd $$i && echo "making lint $$i..." && \
		$(MAKE) SDIRS='${SDIRS}' lint ) || exit 1; \
	fi; \
366 367 368
	done;

tags:
B
Ben Laurie 已提交
369 370
	rm -f TAGS
	find . -name '[^.]*.[ch]' | xargs etags -a
371 372

errors:
373
	$(PERL) util/mkerr.pl -recurse -write
374
	(cd engines; $(MAKE) PERL=$(PERL) errors)
375
	$(PERL) util/ck_errf.pl */*.c */*/*.c
376

377
stacks:
378
	$(PERL) util/mkstack.pl -write
379

380
util/libeay.num::
381
	$(PERL) util/mkdef.pl crypto update
382 383

util/ssleay.num::
384
	$(PERL) util/mkdef.pl ssl update
385

386
crypto/objects/obj_dat.h: crypto/objects/obj_dat.pl crypto/objects/obj_mac.h
387
	$(PERL) crypto/objects/obj_dat.pl crypto/objects/obj_mac.h crypto/objects/obj_dat.h
B
typo  
Bodo Möller 已提交
388
crypto/objects/obj_mac.h: crypto/objects/objects.pl crypto/objects/objects.txt crypto/objects/obj_mac.num
389
	$(PERL) crypto/objects/objects.pl crypto/objects/objects.txt crypto/objects/obj_mac.num crypto/objects/obj_mac.h
390

391 392 393
apps/openssl-vms.cnf: apps/openssl.cnf
	$(PERL) VMS/VMSify-conf.pl < apps/openssl.cnf > apps/openssl-vms.cnf

394
TABLE: Configure
B
Bodo Möller 已提交
395
	(echo 'Output of `Configure TABLE'"':"; \
396
	$(PERL) Configure TABLE) > TABLE
397

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

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

418 419
tar-snap:
	@$(TAR) $(TARFLAGS) -cvf - \
420
		`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` |\
421 422 423 424 425
	tardy --user_number=0  --user_name=openssl \
	      --group_number=0 --group_name=openssl \
	      --prefix=openssl-$(VERSION) - > ../$(TARFILE);\
	ls -l ../$(TARFILE)

426
dist:   
427
	$(PERL) Configure dist
428 429
	@$(MAKE) dist_pem_h
	@$(MAKE) SDIRS='${SDIRS}' clean
430
	@$(MAKE) TAR='${TAR}' TARFLAGS='${TARFLAGS}' tar
431 432

dist_pem_h:
433
	(cd crypto/pem; $(MAKE) $(BUILDENV) pem.h; $(MAKE) clean)
434

435 436 437
install: all install_docs install_sw

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

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

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