1### Generated automatically from Makefile.org by Configure.
2
3##
4## Makefile for OpenSSL
5##
6
7VERSION=0.9.8e
8MAJOR=0
9MINOR=9.8
10SHLIB_VERSION_NUMBER=0.9.8
11SHLIB_VERSION_HISTORY=
12SHLIB_MAJOR=0
13SHLIB_MINOR=9.8
14SHLIB_EXT=.so.$(SHLIB_MAJOR).$(SHLIB_MINOR)
15PLATFORM=linux-openwrt
16OPTIONS=--prefix=/usr --openssldir=/etc/ssl -I${PKG_INSTALL_DIR}/usr/include -L${PKG_INSTALL_DIR}/usr/lib -ldl -DOPENSSL_SMALL_FOOTPRINT enable-shared enable-zlib-dynamic no-aes192 no-ans1 no-camellia no-ec no-ecdh no-ecdsa no-engines no-err no-fips no-gmp no-hw no-idea no-krb5 no-md2 no-mdc2 no-perlasm no-rc2 no-rc5 no-rfc3779 no-ripemd no-rmd160 no-sha0 no-smime no-sse2 no-threads
17CONFIGURE_ARGS=linux-openwrt --prefix=/usr --openssldir=/etc/ssl -I${PKG_INSTALL_DIR}/usr/include -L${PKG_INSTALL_DIR}/usr/lib -ldl -DOPENSSL_SMALL_FOOTPRINT no-idea no-md2 no-mdc2 no-rc2 no-rc5 no-sha0 no-smime no-rmd160 no-aes192 no-ripemd no-camellia no-ans1 no-krb5 shared no-ec no-err no-fips no-hw no-threads zlib-dynamic no-engines no-sse2 no-perlasm
18SHLIB_TARGET=linux-shared
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= ${PKG_INSTALL_DIR}
29INSTALLTOP=/usr
30
31# Do not edit this manually. Use Configure --openssldir=DIR do change this!
32OPENSSLDIR=/etc/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= mipsel-linux-uclibc-gcc
63CFLAG= -fPIC -DOPENSSL_PIC -DZLIB_SHARED -DZLIB -DDSO_DLFCN -DHAVE_DLFCN_H -I${PKG_INSTALL_DIR}/usr/include -DOPENSSL_SMALL_FOOTPRINT -DOPENSSL_NO_ERR -DTERMIO $(OPENWRT_OPTIMIZATION_FLAGS) -fomit-frame-pointer -Wall
64DEPFLAG= -DOPENSSL_NO_AES192 -DOPENSSL_NO_ANS1 -DOPENSSL_NO_CAMELLIA -DOPENSSL_NO_EC -DOPENSSL_NO_ECDH -DOPENSSL_NO_ECDSA -DOPENSSL_NO_ENGINES -DOPENSSL_NO_FIPS -DOPENSSL_NO_GMP -DOPENSSL_NO_IDEA -DOPENSSL_NO_MD2 -DOPENSSL_NO_MDC2 -DOPENSSL_NO_PERLASM -DOPENSSL_NO_RC2 -DOPENSSL_NO_RC5 -DOPENSSL_NO_RFC3779 -DOPENSSL_NO_RIPEMD -DOPENSSL_NO_RMD160 -DOPENSSL_NO_SHA0 -DOPENSSL_NO_SMIME 
65PEX_LIBS= 
66EX_LIBS= -L${PKG_INSTALL_DIR}/usr/lib -ldl -ldl
67EXE_EXT= 
68ARFLAGS= 
69AR=mipsel-linux-linux26-ar $(ARFLAGS) r
70RANLIB= mipsel-linux-linux26-ranlib
71PERL= /usr/bin/perl
72TAR= tar
73TARFLAGS= --no-recursion
74MAKEDEPPROG= gcc
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
91DES_ENC= des_enc.o fcrypt_b.o
92AES_ASM_OBJ= aes_core.o aes_cbc.o
93BF_ENC= bf_enc.o
94CAST_ENC= c_enc.o
95RC4_ENC= rc4_enc.o
96RC5_ENC= rc5_enc.o
97MD5_ASM_OBJ= 
98SHA1_ASM_OBJ= 
99RMD160_ASM_OBJ= 
100
101# KRB5 stuff
102KRB5_INCLUDES=
103LIBKRB5=
104
105# Zlib stuff
106ZLIB_INCLUDE=
107LIBZLIB=
108
109DIRS=   crypto ssl apps
110SHLIBDIRS= crypto ssl
111
112# dirs in crypto to build
113SDIRS=  \
114	objects \
115	md4 md5 sha hmac \
116	des aes rc4 bf cast \
117	bn rsa dsa dh dso engine \
118	buffer bio stack lhash rand err \
119	evp asn1 pem x509 x509v3 conf txt_db pkcs7 pkcs12 comp ocsp ui krb5 \
120	store pqueue
121# keep in mind that the above list is adjusted by ./Configure
122# according to no-xxx arguments...
123
124# tests to perform.  "alltests" is a special word indicating that all tests
125# should be performed.
126TESTS = alltests
127
128MAKEFILE= Makefile
129
130MANDIR=$(OPENSSLDIR)/man
131MAN1=1
132MAN3=3
133MANSUFFIX=
134SHELL=/bin/sh
135
136TOP=    .
137ONEDIRS=out tmp
138EDIRS=  times doc bugs util include certs ms shlib mt demos perl sf dep VMS
139WDIRS=  windows
140LIBS=   libcrypto.a libssl.a
141SHARED_CRYPTO=libcrypto$(SHLIB_EXT)
142SHARED_SSL=libssl$(SHLIB_EXT)
143SHARED_LIBS=$(SHARED_CRYPTO) $(SHARED_SSL)
144SHARED_LIBS_LINK_EXTS=.so.$(SHLIB_MAJOR) .so
145SHARED_LDFLAGS=
146
147GENERAL=        Makefile
148BASENAME=       openssl
149NAME=           $(BASENAME)-$(VERSION)
150TARFILE=        $(NAME).tar
151WTARFILE=       $(NAME)-win.tar
152EXHEADER=       e_os2.h
153HEADER=         e_os.h
154
155all: Makefile build_all openssl.pc libssl.pc libcrypto.pc
156
157# as we stick to -e, CLEARENV ensures that local variables in lower
158# Makefiles remain local and variable. $${VAR+VAR} is tribute to Korn
159# shell, which [annoyingly enough] terminates unset with error if VAR
160# is not present:-( TOP= && unset TOP is tribute to HP-UX /bin/sh,
161# which terminates unset with error if no variable was present:-(
162CLEARENV=	TOP= && unset TOP $${LIB+LIB} $${LIBS+LIBS}	\
163		$${INCLUDE+INCLUDE} $${INCLUDES+INCLUDES}	\
164		$${DIR+DIR} $${DIRS+DIRS} $${SRC+SRC}		\
165		$${LIBSRC+LIBSRC} $${LIBOBJ+LIBOBJ} $${ALL+ALL}	\
166		$${EXHEADER+EXHEADER} $${HEADER+HEADER}		\
167		$${GENERAL+GENERAL} $${CFLAGS+CFLAGS}		\
168		$${ASFLAGS+ASFLAGS} $${AFLAGS+AFLAGS}		\
169		$${LDCMD+LDCMD} $${LDFLAGS+LDFLAGS}		\
170		$${SHAREDCMD+SHAREDCMD} $${SHAREDFLAGS+SHAREDFLAGS}	\
171		$${SHARED_LIB+SHARED_LIB} $${LIBEXTRAS+LIBEXTRAS}
172
173BUILDENV=	PLATFORM='${PLATFORM}' PROCESSOR='${PROCESSOR}' \
174		CC='${CC}' CFLAG='${CFLAG}' 			\
175		AS='${CC}' ASFLAG='${CFLAG} -c'			\
176		AR='${AR}' PERL='${PERL}' RANLIB='${RANLIB}'	\
177		SDIRS='${SDIRS}' LIBRPATH='${INSTALLTOP}/lib'	\
178		INSTALL_PREFIX='${INSTALL_PREFIX}'		\
179		INSTALLTOP='${INSTALLTOP}' OPENSSLDIR='${OPENSSLDIR}'	\
180		MAKEDEPEND='$$$${TOP}/util/domd $$$${TOP} -MD ${MAKEDEPPROG}' \
181		DEPFLAG='-DOPENSSL_NO_DEPRECATED ${DEPFLAG}'	\
182		MAKEDEPPROG='${MAKEDEPPROG}'			\
183		SHARED_LDFLAGS='${SHARED_LDFLAGS}'		\
184		KRB5_INCLUDES='${KRB5_INCLUDES}' LIBKRB5='${LIBKRB5}'	\
185		EXE_EXT='${EXE_EXT}' SHARED_LIBS='${SHARED_LIBS}'	\
186		SHLIB_EXT='${SHLIB_EXT}' SHLIB_TARGET='${SHLIB_TARGET}'	\
187		PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}'	\
188		CPUID_OBJ='${CPUID_OBJ}'			\
189		BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' 	\
190		AES_ASM_OBJ='${AES_ASM_OBJ}'			\
191		BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}'	\
192		RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}'	\
193		SHA1_ASM_OBJ='${SHA1_ASM_OBJ}'			\
194		MD5_ASM_OBJ='${MD5_ASM_OBJ}'			\
195		RMD160_ASM_OBJ='${RMD160_ASM_OBJ}'		\
196		THIS=$${THIS:-$@} MAKEFILE=Makefile MAKEOVERRIDES=
197# MAKEOVERRIDES= effectively "equalizes" GNU-ish and SysV-ish make flavors,
198# which in turn eliminates ambiguities in variable treatment with -e.
199
200# BUILD_CMD is a generic macro to build a given target in a given
201# subdirectory.  The target must be given through the shell variable
202# `target' and the subdirectory to build in must be given through `dir'.
203# This macro shouldn't be used directly, use RECURSIVE_BUILD_CMD or
204# BUILD_ONE_CMD instead.
205#
206# BUILD_ONE_CMD is a macro to build a given target in a given
207# subdirectory if that subdirectory is part of $(DIRS).  It requires
208# exactly the same shell variables as BUILD_CMD.
209#
210# RECURSIVE_BUILD_CMD is a macro to build a given target in all
211# subdirectories defined in $(DIRS).  It requires that the target
212# is given through the shell variable `target'.
213BUILD_CMD=  if [ -d "$$dir" ]; then \
214	    (	cd $$dir && echo "making $$target in $$dir..." && \
215		$(CLEARENV) && $(MAKE) -e $(BUILDENV) TOP=.. DIR=$$dir $$target \
216	    ) || exit 1; \
217	    fi
218RECURSIVE_BUILD_CMD=for dir in $(DIRS); do $(BUILD_CMD); done
219BUILD_ONE_CMD=\
220	if echo " $(DIRS) " | grep " $$dir " >/dev/null 2>/dev/null; then \
221		$(BUILD_CMD); \
222	fi
223
224reflect:
225	@[ -n "$(THIS)" ] && $(CLEARENV) && $(MAKE) $(THIS) -e $(BUILDENV)
226
227sub_all: build_all
228build_all: build_libs build_apps build_tests build_tools
229
230build_libs: build_crypto build_ssl build_engines
231
232build_crypto:
233	@dir=crypto; target=all; $(BUILD_ONE_CMD)
234build_ssl:
235	@dir=ssl; target=all; $(BUILD_ONE_CMD)
236build_engines:
237	@dir=engines; target=all; $(BUILD_ONE_CMD)
238build_apps:
239	@dir=apps; target=all; $(BUILD_ONE_CMD)
240build_tests:
241	@dir=test; target=all; $(BUILD_ONE_CMD)
242build_tools:
243	@dir=tools; target=all; $(BUILD_ONE_CMD)
244
245all_testapps: build_libs build_testapps
246build_testapps:
247	@dir=crypto; target=testapps; $(BUILD_ONE_CMD)
248
249libcrypto$(SHLIB_EXT): libcrypto.a
250	@if [ "$(SHLIB_TARGET)" != "" ]; then \
251		$(MAKE) SHLIBDIRS=crypto build-shared; \
252	else \
253		echo "There's no support for shared libraries on this platform" >&2; \
254		exit 1; \
255	fi
256
257libssl$(SHLIB_EXT): libcrypto$(SHLIB_EXT) libssl.a
258	@if [ "$(SHLIB_TARGET)" != "" ]; then \
259		$(MAKE) SHLIBDIRS=ssl SHLIBDEPS='-lcrypto' build-shared; \
260	else \
261		echo "There's no support for shared libraries on this platform" >&2; \
262		exit 1; \
263	fi
264
265clean-shared:
266	@set -e; for i in $(SHLIBDIRS); do \
267		if [ -n "$(SHARED_LIBS_LINK_EXTS)" ]; then \
268			tmp="$(SHARED_LIBS_LINK_EXTS)"; \
269			for j in $${tmp:-x}; do \
270				( set -x; rm -f lib$$i$$j ); \
271			done; \
272		fi; \
273		( set -x; rm -f lib$$i$(SHLIB_EXT) ); \
274		if [ "$(PLATFORM)" = "Cygwin" ]; then \
275			( set -x; rm -f cyg$$i$(SHLIB_EXT) lib$$i$(SHLIB_EXT).a ); \
276		fi; \
277	done
278
279link-shared:
280	@ set -e; for i in ${SHLIBDIRS}; do \
281		$(MAKE) -f $(HERE)/Makefile.shared -e $(BUILDENV) \
282			LIBNAME=$$i LIBVERSION=${SHLIB_MAJOR}.${SHLIB_MINOR} \
283			LIBCOMPATVERSIONS=";${SHLIB_VERSION_HISTORY}" \
284			symlink.$(SHLIB_TARGET); \
285		libs="$$libs -l$$i"; \
286	done
287
288build-shared: do_$(SHLIB_TARGET) link-shared
289
290do_$(SHLIB_TARGET):
291	@ set -e; libs='-L. ${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \
292		if [ "${SHLIBDIRS}" = "ssl" -a -n "$(LIBKRB5)" ]; then \
293			libs="$(LIBKRB5) $$libs"; \
294		fi; \
295		$(CLEARENV) && $(MAKE) -f Makefile.shared -e $(BUILDENV) \
296			LIBNAME=$$i LIBVERSION=${SHLIB_MAJOR}.${SHLIB_MINOR} \
297			LIBCOMPATVERSIONS=";${SHLIB_VERSION_HISTORY}" \
298			LIBDEPS="$$libs $(EX_LIBS)" \
299			link_a.$(SHLIB_TARGET); \
300		libs="-l$$i $$libs"; \
301	done
302
303libcrypto.pc: Makefile
304	@ ( echo 'prefix=$(INSTALLTOP)'; \
305	    echo 'exec_prefix=$${prefix}'; \
306	    echo 'libdir=$${exec_prefix}/lib'; \
307	    echo 'includedir=$${prefix}/include'; \
308	    echo ''; \
309	    echo 'Name: OpenSSL-libcrypto'; \
310	    echo 'Description: OpenSSL cryptography library'; \
311	    echo 'Version: '$(VERSION); \
312	    echo 'Requires: '; \
313	    echo 'Libs: -L$${libdir} -lcrypto $(EX_LIBS)'; \
314	    echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > libcrypto.pc
315
316libssl.pc: Makefile
317	@ ( echo 'prefix=$(INSTALLTOP)'; \
318	    echo 'exec_prefix=$${prefix}'; \
319	    echo 'libdir=$${exec_prefix}/lib'; \
320	    echo 'includedir=$${prefix}/include'; \
321	    echo ''; \
322	    echo 'Name: OpenSSL'; \
323	    echo 'Description: Secure Sockets Layer and cryptography libraries'; \
324	    echo 'Version: '$(VERSION); \
325	    echo 'Requires: '; \
326	    echo 'Libs: -L$${libdir} -lssl -lcrypto $(EX_LIBS)'; \
327	    echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > libssl.pc
328
329openssl.pc: Makefile
330	@ ( echo 'prefix=$(INSTALLTOP)'; \
331	    echo 'exec_prefix=$${prefix}'; \
332	    echo 'libdir=$${exec_prefix}/lib'; \
333	    echo 'includedir=$${prefix}/include'; \
334	    echo ''; \
335	    echo 'Name: OpenSSL'; \
336	    echo 'Description: Secure Sockets Layer and cryptography libraries and tools'; \
337	    echo 'Version: '$(VERSION); \
338	    echo 'Requires: '; \
339	    echo 'Libs: -L$${libdir} -lssl -lcrypto $(EX_LIBS)'; \
340	    echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > openssl.pc
341
342Makefile: Makefile.org Configure config
343	@echo "Makefile is older than Makefile.org, Configure or config."
344	@echo "Reconfigure the source tree (via './config' or 'perl Configure'), please."
345	@false
346
347libclean:
348	rm -f *.map *.so *.so.* *.dll engines/*.so engines/*.dll *.a engines/*.a */lib */*/lib
349
350clean:	libclean
351	rm -f shlib/*.o *.o core a.out fluff rehash.time testlog make.log cctest cctest.c
352	@set -e; target=clean; $(RECURSIVE_BUILD_CMD)
353	rm -f $(LIBS)
354	rm -f openssl.pc libssl.pc libcrypto.pc
355	rm -f speed.* .pure
356	rm -f $(TARFILE)
357	@set -e; for i in $(ONEDIRS) ;\
358	do \
359	rm -fr $$i/*; \
360	done
361
362makefile.one: files
363	$(PERL) util/mk1mf.pl >makefile.one; \
364	sh util/do_ms.sh
365
366files:
367	$(PERL) $(TOP)/util/files.pl Makefile > $(TOP)/MINFO
368	@set -e; target=files; $(RECURSIVE_BUILD_CMD)
369
370links:
371	@$(PERL) $(TOP)/util/mkdir-p.pl include/openssl
372	@$(PERL) $(TOP)/util/mklink.pl include/openssl $(EXHEADER)
373	@set -e; target=links; $(RECURSIVE_BUILD_CMD)
374
375gentests:
376	@(cd test && echo "generating dummy tests (if needed)..." && \
377	$(CLEARENV) && $(MAKE) -e $(BUILDENV) TESTS='${TESTS}' OPENSSL_DEBUG_MEMORY=on generate );
378
379dclean:
380	rm -f *.bak
381	@set -e; target=dclean; $(RECURSIVE_BUILD_CMD)
382
383rehash: rehash.time
384rehash.time: certs
385	@(OPENSSL="`pwd`/util/opensslwrap.sh"; \
386	  OPENSSL_DEBUG_MEMORY=on; \
387	  export OPENSSL OPENSSL_DEBUG_MEMORY; \
388	  $(PERL) tools/c_rehash certs)
389	touch rehash.time
390
391test:   tests
392
393tests: rehash
394	@(cd test && echo "testing..." && \
395	$(CLEARENV) && $(MAKE) -e $(BUILDENV) TOP=.. TESTS='${TESTS}' OPENSSL_DEBUG_MEMORY=on tests );
396	util/opensslwrap.sh version -a
397
398report:
399	@$(PERL) util/selftest.pl
400
401depend:
402	@set -e; target=depend; $(RECURSIVE_BUILD_CMD)
403
404lint:
405	@set -e; target=lint; $(RECURSIVE_BUILD_CMD)
406
407tags:
408	rm -f TAGS
409	find . -name '[^.]*.[ch]' | xargs etags -a
410
411errors:
412	$(PERL) util/mkerr.pl -recurse -write
413	(cd engines; $(MAKE) PERL=$(PERL) errors)
414	$(PERL) util/ck_errf.pl */*.c */*/*.c
415
416stacks:
417	$(PERL) util/mkstack.pl -write
418
419util/libeay.num::
420	$(PERL) util/mkdef.pl crypto update
421
422util/ssleay.num::
423	$(PERL) util/mkdef.pl ssl update
424
425crypto/objects/obj_dat.h: crypto/objects/obj_dat.pl crypto/objects/obj_mac.h
426	$(PERL) crypto/objects/obj_dat.pl crypto/objects/obj_mac.h crypto/objects/obj_dat.h
427crypto/objects/obj_mac.h: crypto/objects/objects.pl crypto/objects/objects.txt crypto/objects/obj_mac.num
428	$(PERL) crypto/objects/objects.pl crypto/objects/objects.txt crypto/objects/obj_mac.num crypto/objects/obj_mac.h
429
430apps/openssl-vms.cnf: apps/openssl.cnf
431	$(PERL) VMS/VMSify-conf.pl < apps/openssl.cnf > apps/openssl-vms.cnf
432
433crypto/bn/bn_prime.h: crypto/bn/bn_prime.pl
434	$(PERL) crypto/bn/bn_prime.pl >crypto/bn/bn_prime.h
435
436
437TABLE: Configure
438	(echo 'Output of `Configure TABLE'"':"; \
439	$(PERL) Configure TABLE) > TABLE
440
441update: errors stacks util/libeay.num util/ssleay.num crypto/objects/obj_dat.h apps/openssl-vms.cnf crypto/bn/bn_prime.h TABLE depend
442
443# Build distribution tar-file. As the list of files returned by "find" is
444# pretty long, on several platforms a "too many arguments" error or similar
445# would occur. Therefore the list of files is temporarily stored into a file
446# and read directly, requiring GNU-Tar. Call "make TAR=gtar dist" if the normal
447# tar does not support the --files-from option.
448tar:
449	find . -type d -print | xargs chmod 755
450	find . -type f -print | xargs chmod a+r
451	find . -type f -perm -0100 -print | xargs chmod a+x
452	find * \! -path CVS/\* \! -path \*/CVS/\* \! -name CVS \! -name .cvsignore \! -name STATUS \! -name TABLE | sort > ../$(TARFILE).list; \
453	$(TAR) $(TARFLAGS) --files-from ../$(TARFILE).list -cvf - | \
454	tardy --user_number=0  --user_name=openssl \
455	      --group_number=0 --group_name=openssl \
456	      --prefix=openssl-$(VERSION) - |\
457	gzip --best >../$(TARFILE).gz; \
458	rm -f ../$(TARFILE).list; \
459	ls -l ../$(TARFILE).gz
460
461tar-snap:
462	@$(TAR) $(TARFLAGS) -cvf - \
463		`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` |\
464	tardy --user_number=0  --user_name=openssl \
465	      --group_number=0 --group_name=openssl \
466	      --prefix=openssl-$(VERSION) - > ../$(TARFILE);\
467	ls -l ../$(TARFILE)
468
469dist:   
470	$(PERL) Configure dist
471	@$(MAKE) dist_pem_h
472	@$(MAKE) SDIRS='${SDIRS}' clean
473	@$(MAKE) TAR='${TAR}' TARFLAGS='${TARFLAGS}' tar
474
475dist_pem_h:
476	(cd crypto/pem; $(MAKE) -e $(BUILDENV) pem.h; $(MAKE) clean)
477
478install: all install_sw
479
480install_sw:
481	@$(PERL) $(TOP)/util/mkdir-p.pl $(INSTALL_PREFIX)$(INSTALLTOP)/bin \
482		$(INSTALL_PREFIX)$(INSTALLTOP)/lib \
483		$(INSTALL_PREFIX)$(INSTALLTOP)/lib/engines \
484		$(INSTALL_PREFIX)$(INSTALLTOP)/lib/pkgconfig \
485		$(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl \
486		$(INSTALL_PREFIX)$(OPENSSLDIR)/misc \
487		$(INSTALL_PREFIX)$(OPENSSLDIR)/certs \
488		$(INSTALL_PREFIX)$(OPENSSLDIR)/private
489	@set -e; headerlist="$(EXHEADER)"; for i in $$headerlist;\
490	do \
491	(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
492	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
493	done;
494	@set -e; target=install; $(RECURSIVE_BUILD_CMD)
495	@set -e; for i in $(LIBS) ;\
496	do \
497		if [ -f "$$i" ]; then \
498		(       echo installing $$i; \
499			cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new; \
500			$(RANLIB) $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new; \
501			chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new; \
502			mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i ); \
503		fi; \
504	done;
505	@set -e; if [ -n "$(SHARED_LIBS)" ]; then \
506		tmp="$(SHARED_LIBS)"; \
507		for i in $${tmp:-x}; \
508		do \
509			if [ -f "$$i" -o -f "$$i.a" ]; then \
510			(       echo installing $$i; \
511				if [ "$(PLATFORM)" != "Cygwin" ]; then \
512					cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new; \
513					chmod 555 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new; \
514					mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i; \
515				else \
516					c=`echo $$i | sed 's/^lib\(.*\)\.dll\.a/cyg\1-$(SHLIB_VERSION_NUMBER).dll/'`; \
517					cp $$c $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new; \
518					chmod 755 $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new; \
519					mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c; \
520					cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new; \
521					chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new; \
522					mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i; \
523				fi ); \
524			fi; \
525		done; \
526		(	here="`pwd`"; \
527			cd $(INSTALL_PREFIX)$(INSTALLTOP)/lib; \
528			$(MAKE) -f $$here/Makefile HERE="$$here" link-shared ); \
529		if [ "$(INSTALLTOP)" != "/usr" ]; then \
530			echo 'OpenSSL shared libraries have been installed in:'; \
531			echo '  $(INSTALLTOP)'; \
532			echo ''; \
533			sed -e '1,/^$$/d' doc/openssl-shared.txt; \
534		fi; \
535	fi
536	cp libcrypto.pc $(INSTALL_PREFIX)$(INSTALLTOP)/lib/pkgconfig
537	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/pkgconfig/libcrypto.pc
538	cp libssl.pc $(INSTALL_PREFIX)$(INSTALLTOP)/lib/pkgconfig
539	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/pkgconfig/libssl.pc
540	cp openssl.pc $(INSTALL_PREFIX)$(INSTALLTOP)/lib/pkgconfig
541	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/pkgconfig/openssl.pc
542
543install_docs:
544	@$(PERL) $(TOP)/util/mkdir-p.pl \
545		$(INSTALL_PREFIX)$(MANDIR)/man1 \
546		$(INSTALL_PREFIX)$(MANDIR)/man3 \
547		$(INSTALL_PREFIX)$(MANDIR)/man5 \
548		$(INSTALL_PREFIX)$(MANDIR)/man7
549	@pod2man="`cd util; ./pod2mantest $(PERL)`"; \
550	here="`pwd`"; \
551	filecase=; \
552	if [ "$(PLATFORM)" = "DJGPP" -o "$(PLATFORM)" = "Cygwin" -o "$(PLATFORM)" = "mingw" ]; then \
553		filecase=-i; \
554	fi; \
555	set -e; for i in doc/apps/*.pod; do \
556		fn=`basename $$i .pod`; \
557		sec=`$(PERL) util/extract-section.pl 1 < $$i`; \
558		echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \
559		(cd `$(PERL) util/dirname.pl $$i`; \
560		sh -c "$$pod2man \
561			--section=$$sec --center=OpenSSL \
562			--release=$(VERSION) `basename $$i`") \
563			>  $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
564		$(PERL) util/extract-names.pl < $$i | \
565			(grep -v $$filecase "^$$fn\$$"; true) | \
566			(grep -v "[	]"; true) | \
567			(cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
568			 while read n; do \
569				$$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}$(MANSUFFIX); \
570			 done); \
571	done; \
572	set -e; for i in doc/crypto/*.pod doc/ssl/*.pod; do \
573		fn=`basename $$i .pod`; \
574		sec=`$(PERL) util/extract-section.pl 3 < $$i`; \
575		echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \
576		(cd `$(PERL) util/dirname.pl $$i`; \
577		sh -c "$$pod2man \
578			--section=$$sec --center=OpenSSL \
579			--release=$(VERSION) `basename $$i`") \
580			>  $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
581		$(PERL) util/extract-names.pl < $$i | \
582			(grep -v $$filecase "^$$fn\$$"; true) | \
583			(grep -v "[	]"; true) | \
584			(cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
585			 while read n; do \
586				$$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}$(MANSUFFIX); \
587			 done); \
588	done
589
590# DO NOT DELETE THIS LINE -- make depend depends on it.
591