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