Make c_rehash more platform neutral and make it work in mixed environment,
[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 \
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                 PERL='${PERL}'                                  \
180                 SDIRS='${SDIRS}' LIBRPATH='${INSTALLTOP}/lib'   \
181                 INSTALL_PREFIX='${INSTALL_PREFIX}'              \
182                 INSTALLTOP='${INSTALLTOP}' OPENSSLDIR='${OPENSSLDIR}'   \
183                 MAKEDEPEND='$$$${TOP}/util/domd $$$${TOP} -MD ${MAKEDEPPROG}' \
184                 DEPFLAG='-DOPENSSL_NO_DEPRECATED ${DEPFLAG}'    \
185                 MAKEDEPPROG='${MAKEDEPPROG}'                    \
186                 SHARED_LDFLAGS='${SHARED_LDFLAGS}'              \
187                 KRB5_INCLUDES='${KRB5_INCLUDES}' LIBKRB5='${LIBKRB5}'   \
188                 EXE_EXT='${EXE_EXT}' SHARED_LIBS='${SHARED_LIBS}'       \
189                 SHLIB_EXT='${SHLIB_EXT}' SHLIB_TARGET='${SHLIB_TARGET}' \
190                 PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}'     \
191                 CPUID_OBJ='${CPUID_OBJ}'                        \
192                 BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}'         \
193                 AES_ASM_OBJ='${AES_ASM_OBJ}'                    \
194                 BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}'       \
195                 RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}'       \
196                 SHA1_ASM_OBJ='${SHA1_ASM_OBJ}'                  \
197                 MD5_ASM_OBJ='${MD5_ASM_OBJ}'                    \
198                 RMD160_ASM_OBJ='${RMD160_ASM_OBJ}'              \
199                 WP_ASM_OBJ='${WP_ASM_OBJ}'                      \
200                 THIS=$${THIS:-$@} MAKEFILE=Makefile MAKEOVERRIDES=
201 # MAKEOVERRIDES= effectively "equalizes" GNU-ish and SysV-ish make flavors,
202 # which in turn eliminates ambiguities in variable treatment with -e.
203
204 # BUILD_CMD is a generic macro to build a given target in a given
205 # subdirectory.  The target must be given through the shell variable
206 # `target' and the subdirectory to build in must be given through `dir'.
207 # This macro shouldn't be used directly, use RECURSIVE_BUILD_CMD or
208 # BUILD_ONE_CMD instead.
209 #
210 # BUILD_ONE_CMD is a macro to build a given target in a given
211 # subdirectory if that subdirectory is part of $(DIRS).  It requires
212 # exactly the same shell variables as BUILD_CMD.
213 #
214 # RECURSIVE_BUILD_CMD is a macro to build a given target in all
215 # subdirectories defined in $(DIRS).  It requires that the target
216 # is given through the shell variable `target'.
217 BUILD_CMD=  if [ -d "$$dir" ]; then \
218             (   cd $$dir && echo "making $$target in $$dir..." && \
219                 $(CLEARENV) && $(MAKE) -e $(BUILDENV) TOP=.. DIR=$$dir $$target \
220             ) || exit 1; \
221             fi
222 RECURSIVE_BUILD_CMD=for dir in $(DIRS); do $(BUILD_CMD); done
223 BUILD_ONE_CMD=\
224         if echo " $(DIRS) " | grep " $$dir " >/dev/null 2>/dev/null; then \
225                 $(BUILD_CMD); \
226         fi
227
228 reflect:
229         @[ -n "$(THIS)" ] && $(CLEARENV) && $(MAKE) $(THIS) -e $(BUILDENV)
230
231 sub_all: build_all
232 build_all: build_libs build_apps build_tests build_tools
233
234 build_libs: build_crypto build_ssl build_engines
235
236 build_crypto:
237         @dir=crypto; target=all; $(BUILD_ONE_CMD)
238 build_ssl:
239         @dir=ssl; target=all; $(BUILD_ONE_CMD)
240 build_engines:
241         @dir=engines; target=all; $(BUILD_ONE_CMD)
242 build_apps:
243         @dir=apps; target=all; $(BUILD_ONE_CMD)
244 build_tests:
245         @dir=test; target=all; $(BUILD_ONE_CMD)
246 build_tools:
247         @dir=tools; target=all; $(BUILD_ONE_CMD)
248
249 all_testapps: build_libs build_testapps
250 build_testapps:
251         @dir=crypto; target=testapps; $(BUILD_ONE_CMD)
252
253 libcrypto$(SHLIB_EXT): libcrypto.a
254         @if [ "$(SHLIB_TARGET)" != "" ]; then \
255                 $(MAKE) SHLIBDIRS=crypto build-shared; \
256         else \
257                 echo "There's no support for shared libraries on this platform" >&2; \
258                 exit 1; \
259         fi
260
261 libssl$(SHLIB_EXT): libcrypto$(SHLIB_EXT) libssl.a
262         @if [ "$(SHLIB_TARGET)" != "" ]; then \
263                 $(MAKE) SHLIBDIRS=ssl SHLIBDEPS='-lcrypto' build-shared; \
264         else \
265                 echo "There's no support for shared libraries on this platform" >&2; \
266                 exit 1; \
267         fi
268
269 clean-shared:
270         @set -e; for i in $(SHLIBDIRS); do \
271                 if [ -n "$(SHARED_LIBS_LINK_EXTS)" ]; then \
272                         tmp="$(SHARED_LIBS_LINK_EXTS)"; \
273                         for j in $${tmp:-x}; do \
274                                 ( set -x; rm -f lib$$i$$j ); \
275                         done; \
276                 fi; \
277                 ( set -x; rm -f lib$$i$(SHLIB_EXT) ); \
278                 if [ "$(PLATFORM)" = "Cygwin" ]; then \
279                         ( set -x; rm -f cyg$$i$(SHLIB_EXT) lib$$i$(SHLIB_EXT).a ); \
280                 fi; \
281         done
282
283 link-shared:
284         @ set -e; for i in ${SHLIBDIRS}; do \
285                 $(MAKE) -f $(HERE)/Makefile.shared -e $(BUILDENV) \
286                         LIBNAME=$$i LIBVERSION=${SHLIB_MAJOR}.${SHLIB_MINOR} \
287                         LIBCOMPATVERSIONS=";${SHLIB_VERSION_HISTORY}" \
288                         symlink.$(SHLIB_TARGET); \
289                 libs="$$libs -l$$i"; \
290         done
291
292 build-shared: do_$(SHLIB_TARGET) link-shared
293
294 do_$(SHLIB_TARGET):
295         @ set -e; libs='-L. ${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \
296                 if [ "${SHLIBDIRS}" = "ssl" -a -n "$(LIBKRB5)" ]; then \
297                         libs="$(LIBKRB5) $$libs"; \
298                 fi; \
299                 $(CLEARENV) && $(MAKE) -f Makefile.shared -e $(BUILDENV) \
300                         LIBNAME=$$i LIBVERSION=${SHLIB_MAJOR}.${SHLIB_MINOR} \
301                         LIBCOMPATVERSIONS=";${SHLIB_VERSION_HISTORY}" \
302                         LIBDEPS="$$libs $(EX_LIBS)" \
303                         link_a.$(SHLIB_TARGET); \
304                 libs="-l$$i $$libs"; \
305         done
306
307 libcrypto.pc: Makefile
308         @ ( echo 'prefix=$(INSTALLTOP)'; \
309             echo 'exec_prefix=$${prefix}'; \
310             echo 'libdir=$${exec_prefix}/lib'; \
311             echo 'includedir=$${prefix}/include'; \
312             echo ''; \
313             echo 'Name: OpenSSL-libcrypto'; \
314             echo 'Description: OpenSSL cryptography library'; \
315             echo 'Version: '$(VERSION); \
316             echo 'Requires: '; \
317             echo 'Libs: -L$${libdir} -lcrypto $(EX_LIBS)'; \
318             echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > libcrypto.pc
319
320 libssl.pc: Makefile
321         @ ( echo 'prefix=$(INSTALLTOP)'; \
322             echo 'exec_prefix=$${prefix}'; \
323             echo 'libdir=$${exec_prefix}/lib'; \
324             echo 'includedir=$${prefix}/include'; \
325             echo ''; \
326             echo 'Name: OpenSSL'; \
327             echo 'Description: Secure Sockets Layer and cryptography libraries'; \
328             echo 'Version: '$(VERSION); \
329             echo 'Requires: '; \
330             echo 'Libs: -L$${libdir} -lssl -lcrypto $(EX_LIBS)'; \
331             echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > libssl.pc
332
333 openssl.pc: Makefile
334         @ ( echo 'prefix=$(INSTALLTOP)'; \
335             echo 'exec_prefix=$${prefix}'; \
336             echo 'libdir=$${exec_prefix}/lib'; \
337             echo 'includedir=$${prefix}/include'; \
338             echo ''; \
339             echo 'Name: OpenSSL'; \
340             echo 'Description: Secure Sockets Layer and cryptography libraries and tools'; \
341             echo 'Version: '$(VERSION); \
342             echo 'Requires: '; \
343             echo 'Libs: -L$${libdir} -lssl -lcrypto $(EX_LIBS)'; \
344             echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > openssl.pc
345
346 Makefile: Makefile.org Configure config
347         @echo "Makefile is older than Makefile.org, Configure or config."
348         @echo "Reconfigure the source tree (via './config' or 'perl Configure'), please."
349         @false
350
351 libclean:
352         rm -f *.map *.so *.so.* *.dll engines/*.so engines/*.dll *.a engines/*.a */lib */*/lib
353
354 clean:  libclean
355         rm -f shlib/*.o *.o core a.out fluff rehash.time testlog make.log cctest cctest.c
356         @set -e; target=clean; $(RECURSIVE_BUILD_CMD)
357         rm -f $(LIBS)
358         rm -f openssl.pc libssl.pc libcrypto.pc
359         rm -f speed.* .pure
360         rm -f $(TARFILE)
361         @set -e; for i in $(ONEDIRS) ;\
362         do \
363         rm -fr $$i/*; \
364         done
365
366 makefile.one: files
367         $(PERL) util/mk1mf.pl >makefile.one; \
368         sh util/do_ms.sh
369
370 files:
371         $(PERL) $(TOP)/util/files.pl Makefile > $(TOP)/MINFO
372         @set -e; target=files; $(RECURSIVE_BUILD_CMD)
373
374 links:
375         @$(PERL) $(TOP)/util/mkdir-p.pl include/openssl
376         @$(PERL) $(TOP)/util/mklink.pl include/openssl $(EXHEADER)
377         @set -e; target=links; $(RECURSIVE_BUILD_CMD)
378
379 gentests:
380         @(cd test && echo "generating dummy tests (if needed)..." && \
381         $(CLEARENV) && $(MAKE) -e $(BUILDENV) TESTS='${TESTS}' OPENSSL_DEBUG_MEMORY=on generate );
382
383 dclean:
384         rm -rf *.bak include/openssl certs/.0
385         @set -e; target=dclean; $(RECURSIVE_BUILD_CMD)
386
387 rehash: rehash.time
388 rehash.time: certs apps
389         @if [ -z "$(CROSS_COMPILE_PREFIX)" ]; then \
390                 (OPENSSL="`pwd`/util/opensslwrap.sh"; \
391                 [ -x "apps/openssl.exe" ] && OPENSSL="apps/openssl.exe"; \
392                 OPENSSL_DEBUG_MEMORY=on; \
393                 export OPENSSL OPENSSL_DEBUG_MEMORY; \
394                 $(PERL) tools/c_rehash certs) && \
395                 touch rehash.time; \
396         else :; fi
397
398 test:   tests
399
400 tests: rehash
401         @(cd test && echo "testing..." && \
402         $(CLEARENV) && $(MAKE) -e $(BUILDENV) TOP=.. TESTS='${TESTS}' OPENSSL_DEBUG_MEMORY=on tests );
403         util/opensslwrap.sh version -a
404
405 report:
406         @$(PERL) util/selftest.pl
407
408 depend:
409         @set -e; target=depend; $(RECURSIVE_BUILD_CMD)
410
411 lint:
412         @set -e; target=lint; $(RECURSIVE_BUILD_CMD)
413
414 tags:
415         rm -f TAGS
416         find . -name '[^.]*.[ch]' | xargs etags -a
417
418 errors:
419         $(PERL) util/mkerr.pl -recurse -write
420         (cd engines; $(MAKE) PERL=$(PERL) errors)
421         $(PERL) util/ck_errf.pl */*.c */*/*.c
422
423 stacks:
424         $(PERL) util/mkstack.pl -write
425
426 util/libeay.num::
427         $(PERL) util/mkdef.pl crypto update
428
429 util/ssleay.num::
430         $(PERL) util/mkdef.pl ssl update
431
432 crypto/objects/obj_dat.h: crypto/objects/obj_dat.pl crypto/objects/obj_mac.h
433         $(PERL) crypto/objects/obj_dat.pl crypto/objects/obj_mac.h crypto/objects/obj_dat.h
434 crypto/objects/obj_mac.h: crypto/objects/objects.pl crypto/objects/objects.txt crypto/objects/obj_mac.num
435         $(PERL) crypto/objects/objects.pl crypto/objects/objects.txt crypto/objects/obj_mac.num crypto/objects/obj_mac.h
436 crypto/objects/obj_xref.h: crypto/objects/objxref.pl crypto/objects/obj_xref.txt crypto/objects/obj_mac.num
437         $(PERL) crypto/objects/objxref.pl > crypto/objects/obj_xref.h
438
439 apps/openssl-vms.cnf: apps/openssl.cnf
440         $(PERL) VMS/VMSify-conf.pl < apps/openssl.cnf > apps/openssl-vms.cnf
441
442 crypto/bn/bn_prime.h: crypto/bn/bn_prime.pl
443         $(PERL) crypto/bn/bn_prime.pl >crypto/bn/bn_prime.h
444
445
446 TABLE: Configure
447         (echo 'Output of `Configure TABLE'"':"; \
448         $(PERL) Configure TABLE) > TABLE
449
450 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
451
452 # Build distribution tar-file. As the list of files returned by "find" is
453 # pretty long, on several platforms a "too many arguments" error or similar
454 # would occur. Therefore the list of files is temporarily stored into a file
455 # and read directly, requiring GNU-Tar. Call "make TAR=gtar dist" if the normal
456 # tar does not support the --files-from option.
457 tar:
458         find . -type d -print | xargs chmod 755
459         find . -type f -print | xargs chmod a+r
460         find . -type f -perm -0100 -print | xargs chmod a+x
461         find * \! -path CVS/\* \! -path \*/CVS/\* \! -name CVS \! -name .cvsignore \! -name STATUS \! -name TABLE | sort > ../$(TARFILE).list; \
462         $(TAR) $(TARFLAGS) --files-from ../$(TARFILE).list -cvf - | \
463         tardy --user_number=0  --user_name=openssl \
464               --group_number=0 --group_name=openssl \
465               --prefix=openssl-$(VERSION) - |\
466         gzip --best >../$(TARFILE).gz; \
467         rm -f ../$(TARFILE).list; \
468         ls -l ../$(TARFILE).gz
469
470 tar-snap:
471         @$(TAR) $(TARFLAGS) -cvf - \
472                 `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` |\
473         tardy --user_number=0  --user_name=openssl \
474               --group_number=0 --group_name=openssl \
475               --prefix=openssl-$(VERSION) - > ../$(TARFILE);\
476         ls -l ../$(TARFILE)
477
478 dist:   
479         $(PERL) Configure dist
480         @$(MAKE) dist_pem_h
481         @$(MAKE) SDIRS='${SDIRS}' clean
482         @$(MAKE) TAR='${TAR}' TARFLAGS='${TARFLAGS}' tar
483
484 dist_pem_h:
485         (cd crypto/pem; $(MAKE) -e $(BUILDENV) pem.h; $(MAKE) clean)
486
487 install: all install_docs install_sw
488
489 install_sw:
490         @$(PERL) $(TOP)/util/mkdir-p.pl $(INSTALL_PREFIX)$(INSTALLTOP)/bin \
491                 $(INSTALL_PREFIX)$(INSTALLTOP)/lib \
492                 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/engines \
493                 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/pkgconfig \
494                 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl \
495                 $(INSTALL_PREFIX)$(OPENSSLDIR)/misc \
496                 $(INSTALL_PREFIX)$(OPENSSLDIR)/certs \
497                 $(INSTALL_PREFIX)$(OPENSSLDIR)/private
498         @set -e; headerlist="$(EXHEADER)"; for i in $$headerlist;\
499         do \
500         (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
501         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
502         done;
503         @set -e; target=install; $(RECURSIVE_BUILD_CMD)
504         @set -e; for i in $(LIBS) ;\
505         do \
506                 if [ -f "$$i" ]; then \
507                 (       echo installing $$i; \
508                         cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new; \
509                         $(RANLIB) $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new; \
510                         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new; \
511                         mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i ); \
512                 fi; \
513         done;
514         @set -e; if [ -n "$(SHARED_LIBS)" ]; then \
515                 tmp="$(SHARED_LIBS)"; \
516                 for i in $${tmp:-x}; \
517                 do \
518                         if [ -f "$$i" -o -f "$$i.a" ]; then \
519                         (       echo installing $$i; \
520                                 if [ "$(PLATFORM)" != "Cygwin" ]; then \
521                                         cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new; \
522                                         chmod 555 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new; \
523                                         mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i; \
524                                 else \
525                                         c=`echo $$i | sed 's/^lib\(.*\)\.dll\.a/cyg\1-$(SHLIB_VERSION_NUMBER).dll/'`; \
526                                         cp $$c $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new; \
527                                         chmod 755 $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new; \
528                                         mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c; \
529                                         cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new; \
530                                         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new; \
531                                         mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i; \
532                                 fi ); \
533                         fi; \
534                 done; \
535                 (       here="`pwd`"; \
536                         cd $(INSTALL_PREFIX)$(INSTALLTOP)/lib; \
537                         $(MAKE) -f $$here/Makefile HERE="$$here" link-shared ); \
538                 if [ "$(INSTALLTOP)" != "/usr" ]; then \
539                         echo 'OpenSSL shared libraries have been installed in:'; \
540                         echo '  $(INSTALLTOP)'; \
541                         echo ''; \
542                         sed -e '1,/^$$/d' doc/openssl-shared.txt; \
543                 fi; \
544         fi
545         cp libcrypto.pc $(INSTALL_PREFIX)$(INSTALLTOP)/lib/pkgconfig
546         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/pkgconfig/libcrypto.pc
547         cp libssl.pc $(INSTALL_PREFIX)$(INSTALLTOP)/lib/pkgconfig
548         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/pkgconfig/libssl.pc
549         cp openssl.pc $(INSTALL_PREFIX)$(INSTALLTOP)/lib/pkgconfig
550         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/pkgconfig/openssl.pc
551
552 install_html_docs:
553         here="`pwd`"; \
554         for subdir in apps crypto ssl; do \
555                 mkdir -p $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir; \
556                 for i in doc/$$subdir/*.pod; do \
557                         fn=`basename $$i .pod`; \
558                         echo "installing html/$$fn.$(HTMLSUFFIX)"; \
559                         cat $$i \
560                         | sed -r 's/L<([^)]*)(\([0-9]\))?\|([^)]*)(\([0-9]\))?>/L<\1|\3>/g' \
561                         | pod2html --podroot=doc --htmlroot=.. --podpath=apps:crypto:ssl \
562                         | sed -r 's/<!DOCTYPE.*//g' \
563                         > $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir/$$fn.$(HTMLSUFFIX); \
564                         $(PERL) util/extract-names.pl < $$i | \
565                                 grep -v $$filecase "^$$fn\$$" | \
566                                 (cd $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir; \
567                                  while read n; do \
568                                         $$here/util/point.sh $$fn.$(HTMLSUFFIX) "$$n".$(HTMLSUFFIX); \
569                                  done); \
570                 done; \
571         done
572
573 install_docs:
574         @$(PERL) $(TOP)/util/mkdir-p.pl \
575                 $(INSTALL_PREFIX)$(MANDIR)/man1 \
576                 $(INSTALL_PREFIX)$(MANDIR)/man3 \
577                 $(INSTALL_PREFIX)$(MANDIR)/man5 \
578                 $(INSTALL_PREFIX)$(MANDIR)/man7
579         @pod2man="`cd util; ./pod2mantest $(PERL)`"; \
580         here="`pwd`"; \
581         filecase=; \
582         if [ "$(PLATFORM)" = "DJGPP" -o "$(PLATFORM)" = "Cygwin" -o "$(PLATFORM)" = "mingw" ]; then \
583                 filecase=-i; \
584         fi; \
585         set -e; for i in doc/apps/*.pod; do \
586                 fn=`basename $$i .pod`; \
587                 sec=`$(PERL) util/extract-section.pl 1 < $$i`; \
588                 echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \
589                 (cd `$(PERL) util/dirname.pl $$i`; \
590                 sh -c "$$pod2man \
591                         --section=$$sec --center=OpenSSL \
592                         --release=$(VERSION) `basename $$i`") \
593                         >  $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
594                 $(PERL) util/extract-names.pl < $$i | \
595                         (grep -v $$filecase "^$$fn\$$"; true) | \
596                         (grep -v "[     ]"; true) | \
597                         (cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
598                          while read n; do \
599                                 $$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}$(MANSUFFIX); \
600                          done); \
601         done; \
602         set -e; for i in doc/crypto/*.pod doc/ssl/*.pod; do \
603                 fn=`basename $$i .pod`; \
604                 sec=`$(PERL) util/extract-section.pl 3 < $$i`; \
605                 echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \
606                 (cd `$(PERL) util/dirname.pl $$i`; \
607                 sh -c "$$pod2man \
608                         --section=$$sec --center=OpenSSL \
609                         --release=$(VERSION) `basename $$i`") \
610                         >  $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
611                 $(PERL) util/extract-names.pl < $$i | \
612                         (grep -v $$filecase "^$$fn\$$"; true) | \
613                         (grep -v "[     ]"; true) | \
614                         (cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
615                          while read n; do \
616                                 $$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}$(MANSUFFIX); \
617                          done); \
618         done
619
620 # DO NOT DELETE THIS LINE -- make depend depends on it.