1##
2## Makefile for OpenSSL
3##
4
5VERSION=
6MAJOR=
7MINOR=
8SHLIB_VERSION_NUMBER=
9SHLIB_VERSION_HISTORY=
10SHLIB_MAJOR=
11SHLIB_MINOR=
12SHLIB_EXT=
13PLATFORM=dist
14OPTIONS=
15CONFIGURE_ARGS=
16SHLIB_TARGET=
17
18# HERE indicates where this Makefile lives.  This can be used to indicate
19# where sub-Makefiles are expected to be.  Currently has very limited usage,
20# and should probably not be bothered with at all.
21HERE=.
22
23# INSTALL_PREFIX is for package builders so that they can configure
24# for, say, /usr/ and yet have everything installed to /tmp/somedir/usr/.
25# Normally it is left empty.
26INSTALL_PREFIX=
27INSTALLTOP=/usr/local/ssl
28
29# Do not edit this manually. Use Configure --openssldir=DIR do change this!
30OPENSSLDIR=/usr/local/ssl
31
32# NO_IDEA - Define to build without the IDEA algorithm
33# NO_RC4  - Define to build without the RC4 algorithm
34# NO_RC2  - Define to build without the RC2 algorithm
35# 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# TERMIO  - Define the termio terminal subsystem, needed if sgtty is missing.
38# TERMIOS - Define the termios terminal subsystem, Silicon Graphics.
39# LONGCRYPT - Define to use HPUX 10.x's long password modification to crypt(3).
40# DEVRANDOM - Give this the value of the 'random device' if your OS supports
41#           one.  32 bytes will be read from this when the random
42#           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# LOCK_DEBUG - turns on lots of lock debug output :-)
47# REF_CHECK - turn on some xyz_free() assertions.
48# REF_PRINT - prints some stuff on structure free.
49# CRYPTO_MDEBUG - turns on my 'memory leak' detecting stuff
50# MFUNC - Make all Malloc/Free/Realloc calls call
51#       CRYPTO_malloc/CRYPTO_free/CRYPTO_realloc which can be setup to
52#       call application defined callbacks via CRYPTO_set_mem_functions()
53# MD5_ASM needs to be defined to use the x86 assembler for MD5
54# SHA1_ASM needs to be defined to use the x86 assembler for SHA1
55# RMD160_ASM needs to be defined to use the x86 assembler for RIPEMD160
56# Do not define B_ENDIAN or L_ENDIAN if 'unsigned long' == 8.  It must
57# equal 4.
58# PKCS1_CHECK - pkcs1 tests.
59
60CC= cc
61CFLAG= -O
62DEPFLAG= 
63PEX_LIBS= 
64EX_LIBS= 
65EXE_EXT= 
66ARFLAGS=
67AR=ar $(ARFLAGS) r
68RANLIB= ranlib
69NM= nm
70PERL= perl
71TAR= tar
72TARFLAGS= --no-recursion
73MAKEDEPPROG=makedepend
74LIBDIR=lib
75
76# We let the C compiler driver to take care of .s files. This is done in
77# order to be excused from maintaining a separate set of architecture
78# dependent assembler flags. E.g. if you throw -mcpu=ultrasparc at SPARC
79# gcc, then the driver will automatically translate it to -xarch=v8plus
80# and pass it down to assembler.
81AS=$(CC) -c
82ASFLAG=$(CFLAG)
83
84# For x86 assembler: Set PROCESSOR to 386 if you want to support
85# the 80386.
86PROCESSOR=
87
88# CPUID module collects small commonly used assembler snippets
89CPUID_OBJ= 
90BN_ASM= bn_asm.o
91EC_ASM=
92DES_ENC= des_enc.o fcrypt_b.o
93AES_ENC= aes_core.o aes_cbc.o
94BF_ENC= bf_enc.o
95CAST_ENC= c_enc.o
96RC4_ENC= rc4_enc.o
97RC5_ENC= rc5_enc.o
98MD5_ASM_OBJ= 
99SHA1_ASM_OBJ= 
100RMD160_ASM_OBJ= 
101WP_ASM_OBJ=
102CMLL_ENC=
103MODES_ASM_OBJ=
104ENGINES_ASM_OBJ=
105PERLASM_SCHEME=
106
107# KRB5 stuff
108KRB5_INCLUDES=
109LIBKRB5=
110
111# Zlib stuff
112ZLIB_INCLUDE=
113LIBZLIB=
114
115# TOP level FIPS install directory.
116FIPSDIR=
117
118# This is the location of fipscanister.o and friends.
119# The FIPS module build will place it $(INSTALLTOP)/lib
120# but since $(INSTALLTOP) can only take the default value
121# when the module is built it will be in /usr/local/ssl/lib
122# $(INSTALLTOP) for this build may be different so hard
123# code the path.
124
125FIPSLIBDIR=
126
127# The location of the library which contains fipscanister.o
128# normally it will be libcrypto unless fipsdso is set in which
129# case it will be libfips. If not compiling in FIPS mode at all
130# this is empty making it a useful test for a FIPS compile.
131
132FIPSCANLIB=
133
134# Shared library base address. Currently only used on Windows.
135#
136
137BASEADDR=
138
139DIRS=   crypto ssl engines apps test tools
140ENGDIRS= ccgost
141SHLIBDIRS= crypto ssl
142
143# dirs in crypto to build
144SDIRS=  \
145	objects \
146	md2 md4 md5 sha mdc2 hmac ripemd whrlpool \
147	des aes rc2 rc4 rc5 idea bf cast camellia seed modes \
148	bn ec rsa dsa ecdsa dh ecdh dso engine \
149	buffer bio stack lhash rand err \
150	evp asn1 pem x509 x509v3 conf txt_db pkcs7 pkcs12 comp ocsp ui krb5 \
151	cms pqueue ts jpake srp store cmac
152# keep in mind that the above list is adjusted by ./Configure
153# according to no-xxx arguments...
154
155# tests to perform.  "alltests" is a special word indicating that all tests
156# should be performed.
157TESTS = alltests
158
159MAKEFILE= Makefile
160
161MANDIR=$(OPENSSLDIR)/man
162MAN1=1
163MAN3=3
164MANSUFFIX=
165HTMLSUFFIX=html
166HTMLDIR=$(OPENSSLDIR)/html
167SHELL=/bin/sh
168
169TOP=    .
170ONEDIRS=out tmp
171EDIRS=  times doc bugs util include certs ms shlib mt demos perl sf dep VMS
172WDIRS=  windows
173LIBS=   libcrypto.a libssl.a
174SHARED_CRYPTO=libcrypto$(SHLIB_EXT)
175SHARED_SSL=libssl$(SHLIB_EXT)
176SHARED_LIBS=
177SHARED_LIBS_LINK_EXTS=
178SHARED_LDFLAGS=
179
180GENERAL=        Makefile
181BASENAME=       openssl
182NAME=           $(BASENAME)-$(VERSION)
183TARFILE=        $(NAME).tar
184WTARFILE=       $(NAME)-win.tar
185EXHEADER=       e_os2.h
186HEADER=         e_os.h
187
188all: Makefile build_all
189
190# as we stick to -e, CLEARENV ensures that local variables in lower
191# Makefiles remain local and variable. $${VAR+VAR} is tribute to Korn
192# shell, which [annoyingly enough] terminates unset with error if VAR
193# is not present:-( TOP= && unset TOP is tribute to HP-UX /bin/sh,
194# which terminates unset with error if no variable was present:-(
195CLEARENV=	TOP= && unset TOP $${LIB+LIB} $${LIBS+LIBS}	\
196		$${INCLUDE+INCLUDE} $${INCLUDES+INCLUDES}	\
197		$${DIR+DIR} $${DIRS+DIRS} $${SRC+SRC}		\
198		$${LIBSRC+LIBSRC} $${LIBOBJ+LIBOBJ} $${ALL+ALL}	\
199		$${EXHEADER+EXHEADER} $${HEADER+HEADER}		\
200		$${GENERAL+GENERAL} $${CFLAGS+CFLAGS}		\
201		$${ASFLAGS+ASFLAGS} $${AFLAGS+AFLAGS}		\
202		$${LDCMD+LDCMD} $${LDFLAGS+LDFLAGS} $${SCRIPTS+SCRIPTS}	\
203		$${SHAREDCMD+SHAREDCMD} $${SHAREDFLAGS+SHAREDFLAGS}	\
204		$${SHARED_LIB+SHARED_LIB} $${LIBEXTRAS+LIBEXTRAS}
205
206BUILDENV=	PLATFORM='$(PLATFORM)' PROCESSOR='$(PROCESSOR)' \
207		CC='$(CC)' CFLAG='$(CFLAG)' 			\
208		AS='$(CC)' ASFLAG='$(CFLAG) -c'			\
209		AR='$(AR)' NM='$(NM)' RANLIB='$(RANLIB)'	\
210		CROSS_COMPILE='$(CROSS_COMPILE)'	\
211		PERL='$(PERL)' ENGDIRS='$(ENGDIRS)'		\
212		SDIRS='$(SDIRS)' LIBRPATH='$(INSTALLTOP)/$(LIBDIR)'	\
213		INSTALL_PREFIX='$(INSTALL_PREFIX)'		\
214		INSTALLTOP='$(INSTALLTOP)' OPENSSLDIR='$(OPENSSLDIR)'	\
215		LIBDIR='$(LIBDIR)'				\
216		MAKEDEPEND='$$$${TOP}/util/domd $$$${TOP} -MD $(MAKEDEPPROG)' \
217		DEPFLAG='-DOPENSSL_NO_DEPRECATED $(DEPFLAG)'	\
218		MAKEDEPPROG='$(MAKEDEPPROG)'			\
219		SHARED_LDFLAGS='$(SHARED_LDFLAGS)'		\
220		KRB5_INCLUDES='$(KRB5_INCLUDES)' LIBKRB5='$(LIBKRB5)'	\
221		ZLIB_INCLUDE='$(ZLIB_INCLUDE)' LIBZLIB='$(LIBZLIB)'	\
222		EXE_EXT='$(EXE_EXT)' SHARED_LIBS='$(SHARED_LIBS)'	\
223		SHLIB_EXT='$(SHLIB_EXT)' SHLIB_TARGET='$(SHLIB_TARGET)'	\
224		PEX_LIBS='$(PEX_LIBS)' EX_LIBS='$(EX_LIBS)'	\
225		CPUID_OBJ='$(CPUID_OBJ)' BN_ASM='$(BN_ASM)'	\
226		EC_ASM='$(EC_ASM)' DES_ENC='$(DES_ENC)' 	\
227		AES_ENC='$(AES_ENC)' CMLL_ENC='$(CMLL_ENC)'	\
228		BF_ENC='$(BF_ENC)' CAST_ENC='$(CAST_ENC)'	\
229		RC4_ENC='$(RC4_ENC)' RC5_ENC='$(RC5_ENC)'	\
230		SHA1_ASM_OBJ='$(SHA1_ASM_OBJ)'			\
231		MD5_ASM_OBJ='$(MD5_ASM_OBJ)'			\
232		RMD160_ASM_OBJ='$(RMD160_ASM_OBJ)'		\
233		WP_ASM_OBJ='$(WP_ASM_OBJ)'			\
234		MODES_ASM_OBJ='$(MODES_ASM_OBJ)'		\
235		ENGINES_ASM_OBJ='$(ENGINES_ASM_OBJ)'		\
236		PERLASM_SCHEME='$(PERLASM_SCHEME)'		\
237		FIPSLIBDIR='${FIPSLIBDIR}'			\
238		FIPSDIR='${FIPSDIR}'				\
239		FIPSCANLIB="$${FIPSCANLIB:-$(FIPSCANLIB)}"	\
240		THIS=$${THIS:-$@} MAKEFILE=Makefile MAKEOVERRIDES=
241# MAKEOVERRIDES= effectively "equalizes" GNU-ish and SysV-ish make flavors,
242# which in turn eliminates ambiguities in variable treatment with -e.
243
244# BUILD_CMD is a generic macro to build a given target in a given
245# subdirectory.  The target must be given through the shell variable
246# `target' and the subdirectory to build in must be given through `dir'.
247# This macro shouldn't be used directly, use RECURSIVE_BUILD_CMD or
248# BUILD_ONE_CMD instead.
249#
250# BUILD_ONE_CMD is a macro to build a given target in a given
251# subdirectory if that subdirectory is part of $(DIRS).  It requires
252# exactly the same shell variables as BUILD_CMD.
253#
254# RECURSIVE_BUILD_CMD is a macro to build a given target in all
255# subdirectories defined in $(DIRS).  It requires that the target
256# is given through the shell variable `target'.
257BUILD_CMD=  if [ -d "$$dir" ]; then \
258	    (	cd $$dir && echo "making $$target in $$dir..." && \
259		$(CLEARENV) && $(MAKE) -e $(BUILDENV) TOP=.. DIR=$$dir $$target \
260	    ) || exit 1; \
261	    fi
262RECURSIVE_BUILD_CMD=for dir in $(DIRS); do $(BUILD_CMD); done
263BUILD_ONE_CMD=\
264	if expr " $(DIRS) " : ".* $$dir " >/dev/null 2>&1; then \
265		$(BUILD_CMD); \
266	fi
267
268reflect:
269	@[ -n "$(THIS)" ] && $(CLEARENV) && $(MAKE) $(THIS) -e $(BUILDENV)
270
271sub_all: build_all
272
273build_all: build_libs build_apps build_tests build_tools
274
275build_libs: build_libcrypto build_libssl openssl.pc
276
277build_libcrypto: build_crypto build_engines libcrypto.pc
278build_libssl: build_ssl libssl.pc
279
280build_crypto:
281	@dir=crypto; target=all; $(BUILD_ONE_CMD)
282build_ssl: build_crypto
283	@dir=ssl; target=all; $(BUILD_ONE_CMD)
284build_engines: build_crypto
285	@dir=engines; target=all; $(BUILD_ONE_CMD)
286build_apps: build_libs
287	@dir=apps; target=all; $(BUILD_ONE_CMD)
288build_tests: build_libs
289	@dir=test; target=all; $(BUILD_ONE_CMD)
290build_tools: build_libs
291	@dir=tools; target=all; $(BUILD_ONE_CMD)
292
293all_testapps: build_libs build_testapps
294build_testapps:
295	@dir=crypto; target=testapps; $(BUILD_ONE_CMD)
296
297fips_premain_dso$(EXE_EXT): libcrypto.a
298	[ -z "$(FIPSCANLIB)" ] || $(CC) $(CFLAG) -Iinclude \
299		-DFINGERPRINT_PREMAIN_DSO_LOAD -o $@  \
300		$(FIPSLIBDIR)fips_premain.c $(FIPSLIBDIR)fipscanister.o \
301		libcrypto.a $(EX_LIBS)
302
303libcrypto$(SHLIB_EXT): libcrypto.a fips_premain_dso$(EXE_EXT)
304	@if [ "$(SHLIB_TARGET)" != "" ]; then \
305		if [ "$(FIPSCANLIB)" = "libcrypto" ]; then \
306			FIPSLD_LIBCRYPTO=libcrypto.a ; \
307			FIPSLD_CC="$(CC)"; CC=$(FIPSDIR)/bin/fipsld; \
308			export CC FIPSLD_CC FIPSLD_LIBCRYPTO; \
309		fi; \
310		$(MAKE) -e SHLIBDIRS=crypto  CC="$${CC:-$(CC)}" build-shared && \
311		(touch -c fips_premain_dso$(EXE_EXT) || :); \
312	else \
313		echo "There's no support for shared libraries on this platform" >&2; \
314		exit 1; \
315	fi
316
317libssl$(SHLIB_EXT): libcrypto$(SHLIB_EXT) libssl.a
318	@if [ "$(SHLIB_TARGET)" != "" ]; then \
319		$(MAKE) SHLIBDIRS=ssl SHLIBDEPS='-lcrypto' build-shared; \
320	else \
321		echo "There's no support for shared libraries on this platform" >&2; \
322		exit 1; \
323	fi
324
325clean-shared:
326	@set -e; for i in $(SHLIBDIRS); do \
327		if [ -n "$(SHARED_LIBS_LINK_EXTS)" ]; then \
328			tmp="$(SHARED_LIBS_LINK_EXTS)"; \
329			for j in $${tmp:-x}; do \
330				( set -x; rm -f lib$$i$$j ); \
331			done; \
332		fi; \
333		( set -x; rm -f lib$$i$(SHLIB_EXT) ); \
334		if expr "$(PLATFORM)" : "Cygwin" >/dev/null; then \
335			( set -x; rm -f cyg$$i$(SHLIB_EXT) lib$$i$(SHLIB_EXT).a ); \
336		fi; \
337	done
338
339link-shared:
340	@ set -e; for i in $(SHLIBDIRS); do \
341		$(MAKE) -f $(HERE)/Makefile.shared -e $(BUILDENV) \
342			LIBNAME=$$i LIBVERSION=$(SHLIB_MAJOR).$(SHLIB_MINOR) \
343			LIBCOMPATVERSIONS=";$(SHLIB_VERSION_HISTORY)" \
344			symlink.$(SHLIB_TARGET); \
345		libs="$$libs -l$$i"; \
346	done
347
348build-shared: do_$(SHLIB_TARGET) link-shared
349
350do_$(SHLIB_TARGET):
351	@ set -e; libs='-L. $(SHLIBDEPS)'; for i in $(SHLIBDIRS); do \
352		if [ "$$i" = "ssl" -a -n "$(LIBKRB5)" ]; then \
353			libs="$(LIBKRB5) $$libs"; \
354		fi; \
355		$(CLEARENV) && $(MAKE) -f Makefile.shared -e $(BUILDENV) \
356			LIBNAME=$$i LIBVERSION=$(SHLIB_MAJOR).$(SHLIB_MINOR) \
357			LIBCOMPATVERSIONS=";$(SHLIB_VERSION_HISTORY)" \
358			LIBDEPS="$$libs $(EX_LIBS)" \
359			link_a.$(SHLIB_TARGET); \
360		libs="-l$$i $$libs"; \
361	done
362
363libcrypto.pc: Makefile
364	@ ( echo 'prefix=$(INSTALLTOP)'; \
365	    echo 'exec_prefix=$${prefix}'; \
366	    echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
367	    echo 'includedir=$${prefix}/include'; \
368	    echo ''; \
369	    echo 'Name: OpenSSL-libcrypto'; \
370	    echo 'Description: OpenSSL cryptography library'; \
371	    echo 'Version: '$(VERSION); \
372	    echo 'Requires: '; \
373	    echo 'Libs: -L$${libdir} -lcrypto'; \
374	    echo 'Libs.private: $(EX_LIBS)'; \
375	    echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > libcrypto.pc
376
377libssl.pc: Makefile
378	@ ( echo 'prefix=$(INSTALLTOP)'; \
379	    echo 'exec_prefix=$${prefix}'; \
380	    echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
381	    echo 'includedir=$${prefix}/include'; \
382	    echo ''; \
383	    echo 'Name: OpenSSL-libssl'; \
384	    echo 'Description: Secure Sockets Layer and cryptography libraries'; \
385	    echo 'Version: '$(VERSION); \
386	    echo 'Requires.private: libcrypto'; \
387	    echo 'Libs: -L$${libdir} -lssl'; \
388	    echo 'Libs.private: $(EX_LIBS)'; \
389	    echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > libssl.pc
390
391openssl.pc: Makefile
392	@ ( echo 'prefix=$(INSTALLTOP)'; \
393	    echo 'exec_prefix=$${prefix}'; \
394	    echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
395	    echo 'includedir=$${prefix}/include'; \
396	    echo ''; \
397	    echo 'Name: OpenSSL'; \
398	    echo 'Description: Secure Sockets Layer and cryptography libraries and tools'; \
399	    echo 'Version: '$(VERSION); \
400	    echo 'Requires: libssl libcrypto' ) > openssl.pc
401
402Makefile: Makefile.org Configure config
403	@echo "Makefile is older than Makefile.org, Configure or config."
404	@echo "Reconfigure the source tree (via './config' or 'perl Configure'), please."
405	@false
406
407libclean:
408	rm -f *.map *.so *.so.* *.dylib *.dll engines/*.so engines/*.dll engines/*.dylib *.a engines/*.a */lib */*/lib
409
410clean:	libclean
411	rm -f shlib/*.o *.o core a.out fluff rehash.time testlog make.log cctest cctest.c
412	@set -e; target=clean; $(RECURSIVE_BUILD_CMD)
413	rm -f $(LIBS)
414	rm -f openssl.pc libssl.pc libcrypto.pc
415	rm -f speed.* .pure
416	rm -f $(TARFILE)
417	@set -e; for i in $(ONEDIRS) ;\
418	do \
419	rm -fr $$i/*; \
420	done
421
422makefile.one: files
423	$(PERL) util/mk1mf.pl >makefile.one; \
424	sh util/do_ms.sh
425
426files:
427	$(PERL) $(TOP)/util/files.pl Makefile > $(TOP)/MINFO
428	@set -e; target=files; $(RECURSIVE_BUILD_CMD)
429
430links:
431	@$(PERL) $(TOP)/util/mkdir-p.pl include/openssl
432	@$(PERL) $(TOP)/util/mklink.pl include/openssl $(EXHEADER)
433	@set -e; target=links; $(RECURSIVE_BUILD_CMD)
434
435gentests:
436	@(cd test && echo "generating dummy tests (if needed)..." && \
437	$(CLEARENV) && $(MAKE) -e $(BUILDENV) TESTS='$(TESTS)' OPENSSL_DEBUG_MEMORY=on generate );
438
439dclean:
440	rm -rf *.bak include/openssl certs/.0
441	@set -e; target=dclean; $(RECURSIVE_BUILD_CMD)
442
443rehash: rehash.time
444rehash.time: certs apps
445	@if [ -z "$(CROSS_COMPILE)" ]; then \
446		(OPENSSL="`pwd`/util/opensslwrap.sh"; \
447		[ -x "apps/openssl.exe" ] && OPENSSL="apps/openssl.exe" || :; \
448		OPENSSL_DEBUG_MEMORY=on; \
449		export OPENSSL OPENSSL_DEBUG_MEMORY; \
450		$(PERL) tools/c_rehash certs/demo) && \
451		touch rehash.time; \
452	else :; fi
453
454test:   tests
455
456tests: rehash
457	@(cd test && echo "testing..." && \
458	$(CLEARENV) && $(MAKE) -e $(BUILDENV) TOP=.. TESTS='$(TESTS)' OPENSSL_DEBUG_MEMORY=on OPENSSL_CONF=../apps/openssl.cnf tests );
459	OPENSSL_CONF=apps/openssl.cnf util/opensslwrap.sh version -a
460
461report:
462	@$(PERL) util/selftest.pl
463
464update: errors stacks util/libeay.num util/ssleay.num TABLE
465	@set -e; target=update; $(RECURSIVE_BUILD_CMD)
466
467depend:
468	@set -e; target=depend; $(RECURSIVE_BUILD_CMD)
469
470lint:
471	@set -e; target=lint; $(RECURSIVE_BUILD_CMD)
472
473tags:
474	rm -f TAGS
475	find . -name '[^.]*.[ch]' | xargs etags -a
476
477errors:
478	$(PERL) util/ck_errf.pl -strict */*.c */*/*.c
479	$(PERL) util/mkerr.pl -recurse -write
480	(cd engines; $(MAKE) PERL=$(PERL) errors)
481
482stacks:
483	$(PERL) util/mkstack.pl -write
484
485util/libeay.num::
486	$(PERL) util/mkdef.pl crypto update
487
488util/ssleay.num::
489	$(PERL) util/mkdef.pl ssl update
490
491TABLE: Configure
492	(echo 'Output of `Configure TABLE'"':"; \
493	$(PERL) Configure TABLE) > TABLE
494
495# Build distribution tar-file. As the list of files returned by "find" is
496# pretty long, on several platforms a "too many arguments" error or similar
497# would occur. Therefore the list of files is temporarily stored into a file
498# and read directly, requiring GNU-Tar. Call "make TAR=gtar dist" if the normal
499# tar does not support the --files-from option.
500tar:
501	find . -type d -print | xargs chmod 755
502	find . -type f -print | xargs chmod a+r
503	find . -type f -perm -0100 -print | xargs chmod a+x
504	find * \! -path CVS/\* \! -path \*/CVS/\* \! -name CVS \! -name .cvsignore \! -name STATUS \! -name TABLE | sort > ../$(TARFILE).list; \
505	$(TAR) $(TARFLAGS) --files-from ../$(TARFILE).list -cvf - | \
506	tardy --user_number=0  --user_name=openssl \
507	      --group_number=0 --group_name=openssl \
508	      --prefix=openssl-$(VERSION) - |\
509	gzip --best >../$(TARFILE).gz; \
510	rm -f ../$(TARFILE).list; \
511	ls -l ../$(TARFILE).gz
512
513tar-snap:
514	@$(TAR) $(TARFLAGS) -cvf - \
515		`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` |\
516	tardy --user_number=0  --user_name=openssl \
517	      --group_number=0 --group_name=openssl \
518	      --prefix=openssl-$(VERSION) - > ../$(TARFILE);\
519	ls -l ../$(TARFILE)
520
521dist:   
522	$(PERL) Configure dist
523	@$(MAKE) dist_pem_h
524	@$(MAKE) SDIRS='$(SDIRS)' clean
525	@$(MAKE) TAR='$(TAR)' TARFLAGS='$(TARFLAGS)' tar
526
527dist_pem_h:
528	(cd crypto/pem; $(MAKE) -e $(BUILDENV) pem.h; $(MAKE) clean)
529
530install: all install_docs install_sw
531
532install_sw:
533	@$(PERL) $(TOP)/util/mkdir-p.pl $(INSTALL_PREFIX)$(INSTALLTOP)/bin \
534		$(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR) \
535		$(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines \
536		$(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig \
537		$(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl \
538		$(INSTALL_PREFIX)$(OPENSSLDIR)/misc \
539		$(INSTALL_PREFIX)$(OPENSSLDIR)/certs \
540		$(INSTALL_PREFIX)$(OPENSSLDIR)/private
541	@set -e; headerlist="$(EXHEADER)"; for i in $$headerlist;\
542	do \
543	(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
544	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
545	done;
546	@set -e; target=install; $(RECURSIVE_BUILD_CMD)
547	@set -e; liblist="$(LIBS)"; for i in $$liblist ;\
548	do \
549		if [ -f "$$i" ]; then \
550		(       echo installing $$i; \
551			cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
552			$(RANLIB) $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
553			chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
554			mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i ); \
555		fi; \
556	done;
557	@set -e; if [ -n "$(SHARED_LIBS)" ]; then \
558		tmp="$(SHARED_LIBS)"; \
559		for i in $${tmp:-x}; \
560		do \
561			if [ -f "$$i" -o -f "$$i.a" ]; then \
562			(       echo installing $$i; \
563				if expr "$(PLATFORM)" : "Cygwin" >/dev/null; then \
564					c=`echo $$i | sed 's/^lib\(.*\)\.dll\.a/cyg\1-$(SHLIB_VERSION_NUMBER).dll/'`; \
565					cp $$c $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new; \
566					chmod 755 $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new; \
567					mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c; \
568					cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
569					chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
570					mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i; \
571				else \
572					cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
573					chmod 555 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
574					mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i; \
575				fi ); \
576				if expr $(PLATFORM) : 'mingw' > /dev/null; then \
577				(	case $$i in \
578						*crypto*) i=libeay32.dll;; \
579						*ssl*)    i=ssleay32.dll;; \
580					esac; \
581					echo installing $$i; \
582	 				cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new; \
583	 				chmod 755 $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new; \
584	 				mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i ); \
585				fi; \
586			fi; \
587		done; \
588		(	here="`pwd`"; \
589			cd $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR); \
590			$(MAKE) -f $$here/Makefile HERE="$$here" link-shared ); \
591		if [ "$(INSTALLTOP)" != "/usr" ]; then \
592			echo 'OpenSSL shared libraries have been installed in:'; \
593			echo '  $(INSTALLTOP)'; \
594			echo ''; \
595			sed -e '1,/^$$/d' doc/openssl-shared.txt; \
596		fi; \
597	fi
598	cp libcrypto.pc $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
599	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libcrypto.pc
600	cp libssl.pc $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
601	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libssl.pc
602	cp openssl.pc $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
603	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/openssl.pc
604
605install_html_docs:
606	here="`pwd`"; \
607	filecase=; \
608	case "$(PLATFORM)" in DJGPP|Cygwin*|mingw*|darwin*-*-cc) \
609		filecase=-i; \
610	esac; \
611	for subdir in apps crypto ssl; do \
612		mkdir -p $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir; \
613		for i in doc/$$subdir/*.pod; do \
614			fn=`basename $$i .pod`; \
615			echo "installing html/$$fn.$(HTMLSUFFIX)"; \
616			cat $$i \
617			| sed -r 's/L<([^)]*)(\([0-9]\))?\|([^)]*)(\([0-9]\))?>/L<\1|\3>/g' \
618			| pod2html --podroot=doc --htmlroot=.. --podpath=apps:crypto:ssl \
619			| sed -r 's/<!DOCTYPE.*//g' \
620			> $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir/$$fn.$(HTMLSUFFIX); \
621			$(PERL) util/extract-names.pl < $$i | \
622				grep -v $$filecase "^$$fn\$$" | \
623				(cd $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir; \
624				 while read n; do \
625					PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn.$(HTMLSUFFIX) "$$n".$(HTMLSUFFIX); \
626				 done); \
627		done; \
628	done
629
630install_docs:
631	@$(PERL) $(TOP)/util/mkdir-p.pl \
632		$(INSTALL_PREFIX)$(MANDIR)/man1 \
633		$(INSTALL_PREFIX)$(MANDIR)/man3 \
634		$(INSTALL_PREFIX)$(MANDIR)/man5 \
635		$(INSTALL_PREFIX)$(MANDIR)/man7
636	@pod2man="`cd ./util; ./pod2mantest $(PERL)`"; \
637	here="`pwd`"; \
638	filecase=; \
639	case "$(PLATFORM)" in DJGPP|Cygwin*|mingw*|darwin*-*-cc) \
640		filecase=-i; \
641	esac; \
642	set -e; for i in doc/apps/*.pod; do \
643		fn=`basename $$i .pod`; \
644		sec=`$(PERL) util/extract-section.pl 1 < $$i`; \
645		echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \
646		(cd `$(PERL) util/dirname.pl $$i`; \
647		sh -c "$$pod2man \
648			--section=$$sec --center=OpenSSL \
649			--release=$(VERSION) `basename $$i`") \
650			>  $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
651		$(PERL) util/extract-names.pl < $$i | \
652			(grep -v $$filecase "^$$fn\$$"; true) | \
653			(grep -v "[	]"; true) | \
654			(cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
655			 while read n; do \
656				PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}$(MANSUFFIX); \
657			 done); \
658	done; \
659	set -e; for i in doc/crypto/*.pod doc/ssl/*.pod; do \
660		fn=`basename $$i .pod`; \
661		sec=`$(PERL) util/extract-section.pl 3 < $$i`; \
662		echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \
663		(cd `$(PERL) util/dirname.pl $$i`; \
664		sh -c "$$pod2man \
665			--section=$$sec --center=OpenSSL \
666			--release=$(VERSION) `basename $$i`") \
667			>  $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
668		$(PERL) util/extract-names.pl < $$i | \
669			(grep -v $$filecase "^$$fn\$$"; true) | \
670			(grep -v "[	]"; true) | \
671			(cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
672			 while read n; do \
673				PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}$(MANSUFFIX); \
674			 done); \
675	done
676
677# DO NOT DELETE THIS LINE -- make depend depends on it.
678