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