Makefile revision 296317
1### Generated automatically from Makefile.org by Configure.
2
3##
4## Makefile for OpenSSL
5##
6
7VERSION=1.0.1s
8MAJOR=1
9MINOR=0.1
10SHLIB_VERSION_NUMBER=1.0.0
11SHLIB_VERSION_HISTORY=
12SHLIB_MAJOR=1
13SHLIB_MINOR=0.0
14SHLIB_EXT=
15PLATFORM=dist
16OPTIONS= no-ec_nistp_64_gcc_128 no-gmp no-jpake no-krb5 no-md2 no-rc5 no-rfc3779 no-sctp no-shared no-ssl2 no-store no-unit-test no-weak-ssl-ciphers no-zlib no-zlib-dynamic static-engine
17CONFIGURE_ARGS=dist
18SHLIB_TARGET=
19
20# HERE indicates where this Makefile lives.  This can be used to indicate
21# where sub-Makefiles are expected to be.  Currently has very limited usage,
22# and should probably not be bothered with at all.
23HERE=.
24
25# INSTALL_PREFIX is for package builders so that they can configure
26# for, say, /usr/ and yet have everything installed to /tmp/somedir/usr/.
27# Normally it is left empty.
28INSTALL_PREFIX=
29INSTALLTOP=/usr/local/ssl
30
31# Do not edit this manually. Use Configure --openssldir=DIR do change this!
32OPENSSLDIR=/usr/local/ssl
33
34# NO_IDEA - Define to build without the IDEA algorithm
35# NO_RC4  - Define to build without the RC4 algorithm
36# NO_RC2  - Define to build without the RC2 algorithm
37# THREADS - Define when building with threads, you will probably also need any
38#           system defines as well, i.e. _REENTERANT for Solaris 2.[34]
39# TERMIO  - Define the termio terminal subsystem, needed if sgtty is missing.
40# TERMIOS - Define the termios terminal subsystem, Silicon Graphics.
41# LONGCRYPT - Define to use HPUX 10.x's long password modification to crypt(3).
42# DEVRANDOM - Give this the value of the 'random device' if your OS supports
43#           one.  32 bytes will be read from this when the random
44#           number generator is initalised.
45# SSL_FORBID_ENULL - define if you want the server to be not able to use the
46#           NULL encryption ciphers.
47#
48# LOCK_DEBUG - turns on lots of lock debug output :-)
49# REF_CHECK - turn on some xyz_free() assertions.
50# REF_PRINT - prints some stuff on structure free.
51# CRYPTO_MDEBUG - turns on my 'memory leak' detecting stuff
52# MFUNC - Make all Malloc/Free/Realloc calls call
53#       CRYPTO_malloc/CRYPTO_free/CRYPTO_realloc which can be setup to
54#       call application defined callbacks via CRYPTO_set_mem_functions()
55# MD5_ASM needs to be defined to use the x86 assembler for MD5
56# SHA1_ASM needs to be defined to use the x86 assembler for SHA1
57# RMD160_ASM needs to be defined to use the x86 assembler for RIPEMD160
58# Do not define B_ENDIAN or L_ENDIAN if 'unsigned long' == 8.  It must
59# equal 4.
60# PKCS1_CHECK - pkcs1 tests.
61
62CC= cc
63CFLAG= -O
64DEPFLAG= -DOPENSSL_NO_EC_NISTP_64_GCC_128 -DOPENSSL_NO_GMP -DOPENSSL_NO_JPAKE -DOPENSSL_NO_MD2 -DOPENSSL_NO_RC5 -DOPENSSL_NO_RFC3779 -DOPENSSL_NO_SCTP -DOPENSSL_NO_SSL2 -DOPENSSL_NO_STORE -DOPENSSL_NO_UNIT_TEST -DOPENSSL_NO_WEAK_SSL_CIPHERS
65PEX_LIBS= 
66EX_LIBS= 
67EXE_EXT= 
68ARFLAGS= 
69AR= ar $(ARFLAGS) r
70RANLIB= /usr/bin/ranlib
71NM= nm
72PERL= /usr/bin/perl
73TAR= tar
74TARFLAGS= --no-recursion --record-size=10240
75MAKEDEPPROG=makedepend
76LIBDIR=lib
77
78# We let the C compiler driver to take care of .s files. This is done in
79# order to be excused from maintaining a separate set of architecture
80# dependent assembler flags. E.g. if you throw -mcpu=ultrasparc at SPARC
81# gcc, then the driver will automatically translate it to -xarch=v8plus
82# and pass it down to assembler.
83AS=$(CC) -c
84ASFLAG=$(CFLAG)
85
86# For x86 assembler: Set PROCESSOR to 386 if you want to support
87# the 80386.
88PROCESSOR= 
89
90# CPUID module collects small commonly used assembler snippets
91CPUID_OBJ= mem_clr.o
92BN_ASM= bn_asm.o
93DES_ENC= des_enc.o fcrypt_b.o
94AES_ENC= aes_core.o aes_cbc.o
95BF_ENC= bf_enc.o
96CAST_ENC= c_enc.o
97RC4_ENC= rc4_enc.o rc4_skey.o
98RC5_ENC= rc5_enc.o
99MD5_ASM_OBJ= 
100SHA1_ASM_OBJ= 
101RMD160_ASM_OBJ= 
102WP_ASM_OBJ= wp_block.o
103CMLL_ENC= camellia.o cmll_misc.o cmll_cbc.o
104MODES_ASM_OBJ= 
105ENGINES_ASM_OBJ= 
106PERLASM_SCHEME= 
107
108# KRB5 stuff
109KRB5_INCLUDES=
110LIBKRB5=
111
112# Zlib stuff
113ZLIB_INCLUDE=
114LIBZLIB=
115
116# TOP level FIPS install directory.
117FIPSDIR=/usr/local/ssl/fips-2.0
118
119# This is the location of fipscanister.o and friends.
120# The FIPS module build will place it $(INSTALLTOP)/lib
121# but since $(INSTALLTOP) can only take the default value
122# when the module is built it will be in /usr/local/ssl/lib
123# $(INSTALLTOP) for this build may be different so hard
124# code the path.
125
126FIPSLIBDIR=
127
128# The location of the library which contains fipscanister.o
129# normally it will be libcrypto unless fipsdso is set in which
130# case it will be libfips. If not compiling in FIPS mode at all
131# this is empty making it a useful test for a FIPS compile.
132
133FIPSCANLIB=
134
135# Shared library base address. Currently only used on Windows.
136#
137
138BASEADDR=0xFB00000
139
140DIRS=   crypto ssl engines apps test tools
141ENGDIRS= ccgost
142SHLIBDIRS= crypto ssl
143
144# dirs in crypto to build
145SDIRS=  \
146	objects \
147	md4 md5 sha mdc2 hmac ripemd whrlpool \
148	des aes rc2 rc4 idea bf cast camellia seed modes \
149	bn ec rsa dsa ecdsa dh ecdh dso engine \
150	buffer bio stack lhash rand err \
151	evp asn1 pem x509 x509v3 conf txt_db pkcs7 pkcs12 comp ocsp ui krb5 \
152	cms pqueue ts srp cmac
153# keep in mind that the above list is adjusted by ./Configure
154# according to no-xxx arguments...
155
156# tests to perform.  "alltests" is a special word indicating that all tests
157# should be performed.
158TESTS = alltests
159
160MAKEFILE= Makefile
161
162MANDIR=$(OPENSSLDIR)/man
163MAN1=1
164MAN3=3
165MANSUFFIX=
166HTMLSUFFIX=html
167HTMLDIR=$(OPENSSLDIR)/html
168SHELL=/bin/sh
169
170TOP=    .
171ONEDIRS=out tmp
172EDIRS=  times doc bugs util include certs ms shlib mt demos perl sf dep VMS
173WDIRS=  windows
174LIBS=   libcrypto.a libssl.a
175SHARED_CRYPTO=libcrypto$(SHLIB_EXT)
176SHARED_SSL=libssl$(SHLIB_EXT)
177SHARED_LIBS=
178SHARED_LIBS_LINK_EXTS=
179SHARED_LDFLAGS=
180
181GENERAL=        Makefile
182BASENAME=       openssl
183NAME=           $(BASENAME)-$(VERSION)
184TARFILE=        ../$(NAME).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)'			\
226		BN_ASM='$(BN_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 [ "$(PLATFORM)" = "Cygwin" ]; 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'; \
384	    echo 'Description: Secure Sockets Layer and cryptography libraries'; \
385	    echo 'Version: '$(VERSION); \
386	    echo 'Requires: '; \
387	    echo 'Libs: -L$${libdir} -lssl -lcrypto'; \
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: '; \
401	    echo 'Libs: -L$${libdir} -lssl -lcrypto'; \
402	    echo 'Libs.private: $(EX_LIBS)'; \
403	    echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > openssl.pc
404
405Makefile: Makefile.org Configure config
406	@echo "Makefile is older than Makefile.org, Configure or config."
407	@echo "Reconfigure the source tree (via './config' or 'perl Configure'), please."
408	@false
409
410libclean:
411	rm -f *.map *.so *.so.* *.dylib *.dll engines/*.so engines/*.dll engines/*.dylib *.a engines/*.a */lib */*/lib
412
413clean:	libclean
414	rm -f shlib/*.o *.o core a.out fluff rehash.time testlog make.log cctest cctest.c
415	@set -e; target=clean; $(RECURSIVE_BUILD_CMD)
416	rm -f $(LIBS)
417	rm -f openssl.pc libssl.pc libcrypto.pc
418	rm -f speed.* .pure
419	rm -f $(TARFILE)
420	@set -e; for i in $(ONEDIRS) ;\
421	do \
422	rm -fr $$i/*; \
423	done
424
425makefile.one: files
426	$(PERL) util/mk1mf.pl >makefile.one; \
427	sh util/do_ms.sh
428
429files:
430	$(PERL) $(TOP)/util/files.pl Makefile > $(TOP)/MINFO
431	@set -e; target=files; $(RECURSIVE_BUILD_CMD)
432
433links:
434	@$(PERL) $(TOP)/util/mkdir-p.pl include/openssl
435	@$(PERL) $(TOP)/util/mklink.pl include/openssl $(EXHEADER)
436	@set -e; target=links; $(RECURSIVE_BUILD_CMD)
437
438gentests:
439	@(cd test && echo "generating dummy tests (if needed)..." && \
440	$(CLEARENV) && $(MAKE) -e $(BUILDENV) TESTS='$(TESTS)' OPENSSL_DEBUG_MEMORY=on generate );
441
442dclean:
443	rm -rf *.bak include/openssl certs/.0
444	@set -e; target=dclean; $(RECURSIVE_BUILD_CMD)
445
446rehash: rehash.time
447rehash.time: certs apps
448	@if [ -z "$(CROSS_COMPILE)" ]; then \
449		(OPENSSL="`pwd`/util/opensslwrap.sh"; \
450		[ -x "apps/openssl.exe" ] && OPENSSL="apps/openssl.exe" || :; \
451		OPENSSL_DEBUG_MEMORY=on; \
452		export OPENSSL OPENSSL_DEBUG_MEMORY; \
453		$(PERL) tools/c_rehash certs/demo) && \
454		touch rehash.time; \
455	else :; fi
456
457test:   tests
458
459tests: rehash
460	@(cd test && echo "testing..." && \
461	$(CLEARENV) && $(MAKE) -e $(BUILDENV) TOP=.. TESTS='$(TESTS)' OPENSSL_DEBUG_MEMORY=on OPENSSL_CONF=../apps/openssl.cnf tests );
462	OPENSSL_CONF=apps/openssl.cnf util/opensslwrap.sh version -a
463
464report:
465	@$(PERL) util/selftest.pl
466
467update: errors stacks util/libeay.num util/ssleay.num TABLE
468	@set -e; target=update; $(RECURSIVE_BUILD_CMD)
469
470depend:
471	@set -e; target=depend; $(RECURSIVE_BUILD_CMD)
472
473lint:
474	@set -e; target=lint; $(RECURSIVE_BUILD_CMD)
475
476tags:
477	rm -f TAGS
478	find . -name '[^.]*.[ch]' | xargs etags -a
479
480errors:
481	$(PERL) util/ck_errf.pl -strict */*.c */*/*.c
482	$(PERL) util/mkerr.pl -recurse -write
483	(cd engines; $(MAKE) PERL=$(PERL) errors)
484
485stacks:
486	$(PERL) util/mkstack.pl -write
487
488util/libeay.num::
489	$(PERL) util/mkdef.pl crypto update
490
491util/ssleay.num::
492	$(PERL) util/mkdef.pl ssl update
493
494TABLE: Configure
495	(echo 'Output of `Configure TABLE'"':"; \
496	$(PERL) Configure TABLE) > TABLE
497
498# Build distribution tar-file. As the list of files returned by "find" is
499# pretty long, on several platforms a "too many arguments" error or similar
500# would occur. Therefore the list of files is temporarily stored into a file
501# and read directly, requiring GNU-Tar. Call "make TAR=gtar dist" if the normal
502# tar does not support the --files-from option.
503TAR_COMMAND=$(TAR) $(TARFLAGS) --files-from $(TARFILE).list \
504	                       --owner 0 --group 0 \
505			       --transform 's|^|$(NAME)/|' \
506			       -cvf -
507
508$(TARFILE).list:
509	find * \! -name STATUS \! -name TABLE \! -name '*.o' \! -name '*.a' \
510	       \! -name '*.so' \! -name '*.so.*'  \! -name 'openssl' \
511	       \( \! -name '*test' -o -name bctest -o -name pod2mantest \) \
512	       \! -name '.#*' \! -name '*~' \! -type l \
513	    | sort > $(TARFILE).list
514
515tar: $(TARFILE).list
516	find . -type d -print | xargs chmod 755
517	find . -type f -print | xargs chmod a+r
518	find . -type f -perm -0100 -print | xargs chmod a+x
519	$(TAR_COMMAND) | gzip --best > $(TARFILE).gz
520	rm -f $(TARFILE).list
521	ls -l $(TARFILE).gz
522
523tar-snap: $(TARFILE).list
524	$(TAR_COMMAND) > $(TARFILE)
525	rm -f $(TARFILE).list
526	ls -l $(TARFILE)
527
528dist:   
529	$(PERL) Configure dist
530	@$(MAKE) SDIRS='$(SDIRS)' clean
531	@$(MAKE) TAR='$(TAR)' TARFLAGS='$(TARFLAGS)' $(DISTTARVARS) tar
532
533install: all install_docs install_sw
534
535install_sw:
536	@$(PERL) $(TOP)/util/mkdir-p.pl $(INSTALL_PREFIX)$(INSTALLTOP)/bin \
537		$(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR) \
538		$(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines \
539		$(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig \
540		$(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl \
541		$(INSTALL_PREFIX)$(OPENSSLDIR)/misc \
542		$(INSTALL_PREFIX)$(OPENSSLDIR)/certs \
543		$(INSTALL_PREFIX)$(OPENSSLDIR)/private
544	@set -e; headerlist="$(EXHEADER)"; for i in $$headerlist;\
545	do \
546	(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
547	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
548	done;
549	@set -e; target=install; $(RECURSIVE_BUILD_CMD)
550	@set -e; liblist="$(LIBS)"; for i in $$liblist ;\
551	do \
552		if [ -f "$$i" ]; then \
553		(       echo installing $$i; \
554			cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
555			$(RANLIB) $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
556			chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
557			mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i ); \
558		fi; \
559	done;
560	@set -e; if [ -n "$(SHARED_LIBS)" ]; then \
561		tmp="$(SHARED_LIBS)"; \
562		for i in $${tmp:-x}; \
563		do \
564			if [ -f "$$i" -o -f "$$i.a" ]; then \
565			(       echo installing $$i; \
566				if [ "$(PLATFORM)" != "Cygwin" ]; then \
567					cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
568					chmod 555 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
569					mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i; \
570				else \
571					c=`echo $$i | sed 's/^lib\(.*\)\.dll\.a/cyg\1-$(SHLIB_VERSION_NUMBER).dll/'`; \
572					cp $$c $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new; \
573					chmod 755 $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new; \
574					mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c; \
575					cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
576					chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
577					mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i; \
578				fi ); \
579				if expr $(PLATFORM) : 'mingw' > /dev/null; then \
580				(	case $$i in \
581						*crypto*) i=libeay32.dll;; \
582						*ssl*)    i=ssleay32.dll;; \
583					esac; \
584					echo installing $$i; \
585	 				cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new; \
586	 				chmod 755 $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new; \
587	 				mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i ); \
588				fi; \
589			fi; \
590		done; \
591		(	here="`pwd`"; \
592			cd $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR); \
593			$(MAKE) -f $$here/Makefile HERE="$$here" link-shared ); \
594		if [ "$(INSTALLTOP)" != "/usr" ]; then \
595			echo 'OpenSSL shared libraries have been installed in:'; \
596			echo '  $(INSTALLTOP)'; \
597			echo ''; \
598			sed -e '1,/^$$/d' doc/openssl-shared.txt; \
599		fi; \
600	fi
601	cp libcrypto.pc $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
602	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libcrypto.pc
603	cp libssl.pc $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
604	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libssl.pc
605	cp openssl.pc $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
606	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/openssl.pc
607
608install_html_docs:
609	here="`pwd`"; \
610	for subdir in apps crypto ssl; do \
611		mkdir -p $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir; \
612		for i in doc/$$subdir/*.pod; do \
613			fn=`basename $$i .pod`; \
614			echo "installing html/$$fn.$(HTMLSUFFIX)"; \
615			cat $$i \
616			| sed -r 's/L<([^)]*)(\([0-9]\))?\|([^)]*)(\([0-9]\))?>/L<\1|\3>/g' \
617			| pod2html --podroot=doc --htmlroot=.. --podpath=apps:crypto:ssl \
618			| sed -r 's/<!DOCTYPE.*//g' \
619			> $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir/$$fn.$(HTMLSUFFIX); \
620			$(PERL) util/extract-names.pl < $$i | \
621				grep -v $$filecase "^$$fn\$$" | \
622				(cd $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir; \
623				 while read n; do \
624					PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn.$(HTMLSUFFIX) "$$n".$(HTMLSUFFIX); \
625				 done); \
626		done; \
627	done
628
629install_docs:
630	@$(PERL) $(TOP)/util/mkdir-p.pl \
631		$(INSTALL_PREFIX)$(MANDIR)/man1 \
632		$(INSTALL_PREFIX)$(MANDIR)/man3 \
633		$(INSTALL_PREFIX)$(MANDIR)/man5 \
634		$(INSTALL_PREFIX)$(MANDIR)/man7
635	@pod2man="`cd ./util; ./pod2mantest $(PERL)`"; \
636	here="`pwd`"; \
637	filecase=; \
638	if [ "$(PLATFORM)" = "DJGPP" -o "$(PLATFORM)" = "Cygwin" -o "$(PLATFORM)" = "mingw" ]; then \
639		filecase=-i; \
640	fi; \
641	set -e; for i in doc/apps/*.pod; do \
642		fn=`basename $$i .pod`; \
643		sec=`$(PERL) util/extract-section.pl 1 < $$i`; \
644		echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \
645		(cd `$(PERL) util/dirname.pl $$i`; \
646		sh -c "$$pod2man \
647			--section=$$sec --center=OpenSSL \
648			--release=$(VERSION) `basename $$i`") \
649			>  $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
650		$(PERL) util/extract-names.pl < $$i | \
651			(grep -v $$filecase "^$$fn\$$"; true) | \
652			(grep -v "[	]"; true) | \
653			(cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
654			 while read n; do \
655				PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}$(MANSUFFIX); \
656			 done); \
657	done; \
658	set -e; for i in doc/crypto/*.pod doc/ssl/*.pod; do \
659		fn=`basename $$i .pod`; \
660		sec=`$(PERL) util/extract-section.pl 3 < $$i`; \
661		echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \
662		(cd `$(PERL) util/dirname.pl $$i`; \
663		sh -c "$$pod2man \
664			--section=$$sec --center=OpenSSL \
665			--release=$(VERSION) `basename $$i`") \
666			>  $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
667		$(PERL) util/extract-names.pl < $$i | \
668			(grep -v $$filecase "^$$fn\$$"; true) | \
669			(grep -v "[	]"; true) | \
670			(cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
671			 while read n; do \
672				PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}$(MANSUFFIX); \
673			 done); \
674	done
675
676# DO NOT DELETE THIS LINE -- make depend depends on it.
677