2 ## Makefile for OpenSSL
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.
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.
27 INSTALLTOP=/usr/local/ssl
29 # Do not edit this manually. Use Configure --openssldir=DIR do change this!
30 OPENSSLDIR=/usr/local/ssl
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.
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
58 # PKCS1_CHECK - pkcs1 tests.
72 TARFLAGS= --no-recursion
73 MAKEDEPPROG=makedepend
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.
84 # For x86 assembler: Set PROCESSOR to 386 if you want to support
88 # CPUID module collects small commonly used assembler snippets
92 DES_ENC= des_enc.o fcrypt_b.o
93 AES_ENC= aes_core.o aes_cbc.o
115 # TOP level FIPS install directory.
118 # This is the location of fipscanister.o and friends.
119 # The FIPS module build will place it $(INSTALLTOP)/lib
120 # but since $(INSTALLTOP) can only take the default value
121 # when the module is built it will be in /usr/local/ssl/lib
122 # $(INSTALLTOP) for this build may be different so hard
127 # The location of the library which contains fipscanister.o
128 # normally it will be libcrypto unless fipsdso is set in which
129 # case it will be libfips. If not compiling in FIPS mode at all
130 # this is empty making it a useful test for a FIPS compile.
134 # Shared library base address. Currently only used on Windows.
139 DIRS= crypto ssl apps
141 SHLIBDIRS= crypto ssl
143 # dirs in crypto to build
146 md2 md4 md5 sha mdc2 hmac ripemd whrlpool \
147 des aes rc2 rc4 rc5 idea bf cast camellia seed modes \
148 bn ec rsa dsa ecdsa dh ecdh dso engine \
149 buffer bio stack lhash rand err \
150 evp asn1 pem x509 x509v3 conf txt_db pkcs7 pkcs12 comp ocsp ui \
151 cms pqueue ts jpake srp store cmac
152 # keep in mind that the above list is adjusted by ./Configure
153 # according to no-xxx arguments...
155 # tests to perform. "alltests" is a special word indicating that all tests
156 # should be performed.
161 MANDIR=$(OPENSSLDIR)/man
166 HTMLDIR=$(OPENSSLDIR)/html
171 EDIRS= times bugs util include certs ms shlib mt demos perl sf dep VMS
173 LIBS= libcrypto.a libssl.a
174 SHARED_CRYPTO=libcrypto$(SHLIB_EXT)
175 SHARED_SSL=libssl$(SHLIB_EXT)
177 SHARED_LIBS_LINK_EXTS=
182 NAME= $(BASENAME)-$(VERSION)
184 WTARFILE= $(NAME)-win.tar
188 all: Makefile build_all
190 # as we stick to -e, CLEARENV ensures that local variables in lower
191 # Makefiles remain local and variable. $${VAR+VAR} is tribute to Korn
192 # shell, which [annoyingly enough] terminates unset with error if VAR
193 # is not present:-( TOP= && unset TOP is tribute to HP-UX /bin/sh,
194 # which terminates unset with error if no variable was present:-(
195 CLEARENV= TOP= && unset TOP $${LIB+LIB} $${LIBS+LIBS} \
196 $${INCLUDE+INCLUDE} $${INCLUDES+INCLUDES} \
197 $${DIR+DIR} $${DIRS+DIRS} $${SRC+SRC} \
198 $${LIBSRC+LIBSRC} $${LIBOBJ+LIBOBJ} $${ALL+ALL} \
199 $${EXHEADER+EXHEADER} $${HEADER+HEADER} \
200 $${GENERAL+GENERAL} $${CFLAGS+CFLAGS} \
201 $${ASFLAGS+ASFLAGS} $${AFLAGS+AFLAGS} \
202 $${LDCMD+LDCMD} $${LDFLAGS+LDFLAGS} $${SCRIPTS+SCRIPTS} \
203 $${SHAREDCMD+SHAREDCMD} $${SHAREDFLAGS+SHAREDFLAGS} \
204 $${SHARED_LIB+SHARED_LIB} $${LIBEXTRAS+LIBEXTRAS}
206 BUILDENV= PLATFORM='$(PLATFORM)' PROCESSOR='$(PROCESSOR)' \
207 CC='$(CC)' CFLAG='$(CFLAG)' \
208 AS='$(CC)' ASFLAG='$(CFLAG) -c' \
209 AR='$(AR)' NM='$(NM)' RANLIB='$(RANLIB)' \
210 CROSS_COMPILE='$(CROSS_COMPILE)' \
211 PERL='$(PERL)' ENGDIRS='$(ENGDIRS)' \
212 SDIRS='$(SDIRS)' LIBRPATH='$(INSTALLTOP)/$(LIBDIR)' \
213 INSTALL_PREFIX='$(INSTALL_PREFIX)' \
214 INSTALLTOP='$(INSTALLTOP)' OPENSSLDIR='$(OPENSSLDIR)' \
216 MAKEDEPEND='$$$${TOP}/util/domd $$$${TOP} -MD $(MAKEDEPPROG)' \
217 DEPFLAG='-DOPENSSL_NO_DEPRECATED $(DEPFLAG)' \
218 MAKEDEPPROG='$(MAKEDEPPROG)' \
219 SHARED_LDFLAGS='$(SHARED_LDFLAGS)' \
220 KRB5_INCLUDES='$(KRB5_INCLUDES)' LIBKRB5='$(LIBKRB5)' \
221 ZLIB_INCLUDE='$(ZLIB_INCLUDE)' LIBZLIB='$(LIBZLIB)' \
222 EXE_EXT='$(EXE_EXT)' SHARED_LIBS='$(SHARED_LIBS)' \
223 SHLIB_EXT='$(SHLIB_EXT)' SHLIB_TARGET='$(SHLIB_TARGET)' \
224 PEX_LIBS='$(PEX_LIBS)' EX_LIBS='$(EX_LIBS)' \
225 CPUID_OBJ='$(CPUID_OBJ)' BN_ASM='$(BN_ASM)' \
226 EC_ASM='$(EC_ASM)' DES_ENC='$(DES_ENC)' \
227 AES_ENC='$(AES_ENC)' CMLL_ENC='$(CMLL_ENC)' \
228 BF_ENC='$(BF_ENC)' CAST_ENC='$(CAST_ENC)' \
229 RC4_ENC='$(RC4_ENC)' RC5_ENC='$(RC5_ENC)' \
230 SHA1_ASM_OBJ='$(SHA1_ASM_OBJ)' \
231 MD5_ASM_OBJ='$(MD5_ASM_OBJ)' \
232 RMD160_ASM_OBJ='$(RMD160_ASM_OBJ)' \
233 WP_ASM_OBJ='$(WP_ASM_OBJ)' \
234 MODES_ASM_OBJ='$(MODES_ASM_OBJ)' \
235 ENGINES_ASM_OBJ='$(ENGINES_ASM_OBJ)' \
236 PERLASM_SCHEME='$(PERLASM_SCHEME)' \
237 FIPSLIBDIR='${FIPSLIBDIR}' \
238 FIPSDIR='${FIPSDIR}' \
239 FIPSCANLIB="$${FIPSCANLIB:-$(FIPSCANLIB)}" \
240 THIS=$${THIS:-$@} MAKEFILE=Makefile MAKEOVERRIDES=
241 # MAKEOVERRIDES= effectively "equalizes" GNU-ish and SysV-ish make flavors,
242 # which in turn eliminates ambiguities in variable treatment with -e.
244 # BUILD_CMD is a generic macro to build a given target in a given
245 # subdirectory. The target must be given through the shell variable
246 # `target' and the subdirectory to build in must be given through `dir'.
247 # This macro shouldn't be used directly, use RECURSIVE_BUILD_CMD or
248 # BUILD_ONE_CMD instead.
250 # BUILD_ONE_CMD is a macro to build a given target in a given
251 # subdirectory if that subdirectory is part of $(DIRS). It requires
252 # exactly the same shell variables as BUILD_CMD.
254 # RECURSIVE_BUILD_CMD is a macro to build a given target in all
255 # subdirectories defined in $(DIRS). It requires that the target
256 # is given through the shell variable `target'.
257 BUILD_CMD= if [ -d "$$dir" ]; then \
258 ( cd $$dir && echo "making $$target in $$dir..." && \
259 $(CLEARENV) && $(MAKE) -e $(BUILDENV) TOP=.. DIR=$$dir $$target \
262 RECURSIVE_BUILD_CMD=for dir in $(DIRS); do $(BUILD_CMD); done
264 if expr " $(DIRS) " : ".* $$dir " >/dev/null 2>&1; then \
269 @[ -n "$(THIS)" ] && $(CLEARENV) && $(MAKE) $(THIS) -e $(BUILDENV)
272 build_all: build_libs build_apps build_tools
274 build_libs: build_libcrypto build_libssl openssl.pc
276 build_libcrypto: build_crypto build_engines libcrypto.pc
277 build_libssl: build_ssl libssl.pc
280 @dir=crypto; target=all; $(BUILD_ONE_CMD)
281 build_ssl: build_crypto
282 @dir=ssl; target=all; $(BUILD_ONE_CMD)
283 build_engines: build_crypto
284 @dir=engines; target=all; $(BUILD_ONE_CMD)
285 build_apps: build_libs
286 @dir=apps; target=all; $(BUILD_ONE_CMD)
287 build_tests: build_libs
288 @dir=test; target=all; $(BUILD_ONE_CMD)
289 build_tools: build_libs
290 @dir=tools; target=all; $(BUILD_ONE_CMD)
292 all_testapps: build_libs build_testapps
294 @dir=crypto; target=testapps; $(BUILD_ONE_CMD)
296 fips_premain_dso$(EXE_EXT): libcrypto.a
297 [ -z "$(FIPSCANLIB)" ] || $(CC) $(CFLAG) -Iinclude \
298 -DFINGERPRINT_PREMAIN_DSO_LOAD -o $@ \
299 $(FIPSLIBDIR)fips_premain.c $(FIPSLIBDIR)fipscanister.o \
300 libcrypto.a $(EX_LIBS)
302 libcrypto$(SHLIB_EXT): libcrypto.a fips_premain_dso$(EXE_EXT)
303 @if [ "$(SHLIB_TARGET)" != "" ]; then \
304 if [ "$(FIPSCANLIB)" = "libcrypto" ]; then \
305 FIPSLD_LIBCRYPTO=libcrypto.a ; \
306 FIPSLD_CC="$(CC)"; CC=$(FIPSDIR)/bin/fipsld; \
307 export CC FIPSLD_CC FIPSLD_LIBCRYPTO; \
309 $(MAKE) -e SHLIBDIRS=crypto CC="$${CC:-$(CC)}" build-shared && \
310 (touch -c fips_premain_dso$(EXE_EXT) || :); \
312 echo "There's no support for shared libraries on this platform" >&2; \
316 libssl$(SHLIB_EXT): libcrypto$(SHLIB_EXT) libssl.a
317 @if [ "$(SHLIB_TARGET)" != "" ]; then \
318 $(MAKE) SHLIBDIRS=ssl SHLIBDEPS='-lcrypto' build-shared; \
320 echo "There's no support for shared libraries on this platform" >&2; \
325 @set -e; for i in $(SHLIBDIRS); do \
326 if [ -n "$(SHARED_LIBS_LINK_EXTS)" ]; then \
327 tmp="$(SHARED_LIBS_LINK_EXTS)"; \
328 for j in $${tmp:-x}; do \
329 ( set -x; rm -f lib$$i$$j ); \
332 ( set -x; rm -f lib$$i$(SHLIB_EXT) ); \
333 if expr "$(PLATFORM)" : "Cygwin" >/dev/null; then \
334 ( set -x; rm -f cyg$$i$(SHLIB_EXT) lib$$i$(SHLIB_EXT).a ); \
339 @ set -e; for i in $(SHLIBDIRS); do \
340 $(MAKE) -f $(HERE)/Makefile.shared -e $(BUILDENV) \
341 LIBNAME=$$i LIBVERSION=$(SHLIB_MAJOR).$(SHLIB_MINOR) \
342 LIBCOMPATVERSIONS=";$(SHLIB_VERSION_HISTORY)" \
343 symlink.$(SHLIB_TARGET); \
344 libs="$$libs -l$$i"; \
347 build-shared: do_$(SHLIB_TARGET) link-shared
350 @ set -e; libs='-L. $(SHLIBDEPS)'; for i in $(SHLIBDIRS); do \
351 if [ "$$i" = "ssl" -a -n "$(LIBKRB5)" ]; then \
352 libs="$(LIBKRB5) $$libs"; \
354 $(CLEARENV) && $(MAKE) -f Makefile.shared -e $(BUILDENV) \
355 LIBNAME=$$i LIBVERSION=$(SHLIB_MAJOR).$(SHLIB_MINOR) \
356 LIBCOMPATVERSIONS=";$(SHLIB_VERSION_HISTORY)" \
357 LIBDEPS="$$libs $(EX_LIBS)" \
358 link_a.$(SHLIB_TARGET); \
359 libs="-l$$i $$libs"; \
362 libcrypto.pc: Makefile
363 @ ( echo 'prefix=$(INSTALLTOP)'; \
364 echo 'exec_prefix=$${prefix}'; \
365 echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
366 echo 'includedir=$${prefix}/include'; \
368 echo 'Name: OpenSSL-libcrypto'; \
369 echo 'Description: OpenSSL cryptography library'; \
370 echo 'Version: '$(VERSION); \
372 echo 'Libs: -L$${libdir} -lcrypto'; \
373 echo 'Libs.private: $(EX_LIBS)'; \
374 echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > libcrypto.pc
377 @ ( echo 'prefix=$(INSTALLTOP)'; \
378 echo 'exec_prefix=$${prefix}'; \
379 echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
380 echo 'includedir=$${prefix}/include'; \
382 echo 'Name: OpenSSL-libssl'; \
383 echo 'Description: Secure Sockets Layer and cryptography libraries'; \
384 echo 'Version: '$(VERSION); \
385 echo 'Requires.private: libcrypto'; \
386 echo 'Libs: -L$${libdir} -lssl'; \
387 echo 'Libs.private: $(EX_LIBS)'; \
388 echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > libssl.pc
391 @ ( echo 'prefix=$(INSTALLTOP)'; \
392 echo 'exec_prefix=$${prefix}'; \
393 echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
394 echo 'includedir=$${prefix}/include'; \
396 echo 'Name: OpenSSL'; \
397 echo 'Description: Secure Sockets Layer and cryptography libraries and tools'; \
398 echo 'Version: '$(VERSION); \
399 echo 'Requires: libssl libcrypto' ) > openssl.pc
402 rm -f *.map *.so *.so.* *.dylib *.dll engines/*.so engines/*.dll engines/*.dylib *.a engines/*.a */lib */*/lib
405 rm -f shlib/*.o *.o core a.out fluff rehash.time testlog make.log cctest cctest.c
406 @set -e; target=clean; $(RECURSIVE_BUILD_CMD)
408 rm -f openssl.pc libssl.pc libcrypto.pc
411 @set -e; for i in $(ONEDIRS) ;\
417 $(PERL) util/mk1mf.pl >makefile.one; \
421 $(PERL) $(TOP)/util/files.pl Makefile > $(TOP)/MINFO
422 @set -e; target=files; $(RECURSIVE_BUILD_CMD)
425 @$(PERL) $(TOP)/util/mkdir-p.pl include/openssl
426 @$(PERL) $(TOP)/util/mklink.pl include/openssl $(EXHEADER)
427 @set -e; target=links; $(RECURSIVE_BUILD_CMD)
430 @(cd test && echo "generating dummy tests (if needed)..." && \
431 $(CLEARENV) && $(MAKE) -e $(BUILDENV) TESTS='$(TESTS)' OPENSSL_DEBUG_MEMORY=on generate );
434 rm -rf *.bak include/openssl certs/.0
435 @set -e; target=dclean; $(RECURSIVE_BUILD_CMD)
438 rehash.time: certs apps
439 @if [ -z "$(CROSS_COMPILE)" ]; then \
440 (OPENSSL="`pwd`/util/opensslwrap.sh"; \
441 [ -x "apps/openssl.exe" ] && OPENSSL="apps/openssl.exe" || :; \
442 OPENSSL_DEBUG_MEMORY=on; \
443 export OPENSSL OPENSSL_DEBUG_MEMORY; \
444 $(PERL) tools/c_rehash certs/demo) && \
451 @(cd test && echo "testing..." && \
452 $(CLEARENV) && $(MAKE) -e $(BUILDENV) TOP=.. TESTS='$(TESTS)' OPENSSL_DEBUG_MEMORY=on OPENSSL_CONF=../apps/openssl.cnf tests );
453 OPENSSL_CONF=apps/openssl.cnf util/opensslwrap.sh version -a
456 @$(PERL) util/selftest.pl
458 update: errors stacks util/libeay.num util/ssleay.num TABLE
459 @set -e; target=update; $(RECURSIVE_BUILD_CMD)
462 @set -e; target=depend; $(RECURSIVE_BUILD_CMD)
465 @set -e; target=lint; $(RECURSIVE_BUILD_CMD)
469 find . -name '[^.]*.[ch]' | xargs etags -a
472 $(PERL) util/ck_errf.pl -strict */*.c */*/*.c
473 $(PERL) util/mkerr.pl -recurse -write
474 (cd engines; $(MAKE) PERL=$(PERL) errors)
477 $(PERL) util/mkstack.pl -write
480 $(PERL) util/mkdef.pl crypto update
483 $(PERL) util/mkdef.pl ssl update
486 (echo 'Output of `Configure TABLE'"':"; \
487 $(PERL) Configure TABLE) > TABLE
489 # Build distribution tar-file. As the list of files returned by "find" is
490 # pretty long, on several platforms a "too many arguments" error or similar
491 # would occur. Therefore the list of files is temporarily stored into a file
492 # and read directly, requiring GNU-Tar. Call "make TAR=gtar dist" if the normal
493 # tar does not support the --files-from option.
495 find . -type d -print | xargs chmod 755
496 find . -type f -print | xargs chmod a+r
497 find . -type f -perm -0100 -print | xargs chmod a+x
498 find * \! -path CVS/\* \! -path \*/CVS/\* \! -name CVS \! -name .cvsignore \! -name STATUS \! -name TABLE | sort > ../$(TARFILE).list; \
499 $(TAR) $(TARFLAGS) --files-from ../$(TARFILE).list -cvf - | \
500 tardy --user_number=0 --user_name=openssl \
501 --group_number=0 --group_name=openssl \
502 --prefix=openssl-$(VERSION) - |\
503 gzip --best >../$(TARFILE).gz; \
504 rm -f ../$(TARFILE).list; \
505 ls -l ../$(TARFILE).gz
508 @$(TAR) $(TARFLAGS) -cvf - \
509 `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` |\
510 tardy --user_number=0 --user_name=openssl \
511 --group_number=0 --group_name=openssl \
512 --prefix=openssl-$(VERSION) - > ../$(TARFILE);\
516 $(PERL) Configure dist
518 @$(MAKE) SDIRS='$(SDIRS)' clean
519 @$(MAKE) TAR='$(TAR)' TARFLAGS='$(TARFLAGS)' tar
522 (cd crypto/pem; $(MAKE) -e $(BUILDENV) pem.h; $(MAKE) clean)
524 install: all install_sw
527 @$(PERL) $(TOP)/util/mkdir-p.pl $(INSTALL_PREFIX)$(INSTALLTOP)/bin \
528 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR) \
529 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines \
530 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig \
531 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl \
532 $(INSTALL_PREFIX)$(OPENSSLDIR)/misc \
533 $(INSTALL_PREFIX)$(OPENSSLDIR)/certs \
534 $(INSTALL_PREFIX)$(OPENSSLDIR)/private
535 @set -e; headerlist="$(EXHEADER)"; for i in $$headerlist;\
537 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
538 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
540 @set -e; target=install; $(RECURSIVE_BUILD_CMD)
541 @set -e; liblist="$(LIBS)"; for i in $$liblist ;\
543 if [ -f "$$i" ]; then \
544 ( echo installing $$i; \
545 cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
546 $(RANLIB) $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
547 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
548 mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i ); \
551 @set -e; if [ -n "$(SHARED_LIBS)" ]; then \
552 tmp="$(SHARED_LIBS)"; \
553 for i in $${tmp:-x}; \
555 if [ -f "$$i" -o -f "$$i.a" ]; then \
556 ( echo installing $$i; \
557 if expr "$(PLATFORM)" : "Cygwin" >/dev/null; then \
558 c=`echo $$i | sed 's/^lib\(.*\)\.dll\.a/cyg\1-$(SHLIB_VERSION_NUMBER).dll/'`; \
559 cp $$c $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new; \
560 chmod 755 $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new; \
561 mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c; \
562 cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
563 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
564 mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i; \
566 cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
567 chmod 555 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
568 mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i; \
570 if expr $(PLATFORM) : 'mingw' > /dev/null; then \
572 *crypto*) i=libeay32.dll;; \
573 *ssl*) i=ssleay32.dll;; \
575 echo installing $$i; \
576 cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new; \
577 chmod 755 $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new; \
578 mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i ); \
583 cd $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR); \
584 $(MAKE) -f $$here/Makefile HERE="$$here" link-shared ); \
585 if [ "$(INSTALLTOP)" != "/usr" ]; then \
586 echo 'OpenSSL shared libraries have been installed in:'; \
587 echo ' $(INSTALLTOP)'; \
589 sed -e '1,/^$$/d' doc/openssl-shared.txt; \
592 cp libcrypto.pc $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
593 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libcrypto.pc
594 cp libssl.pc $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
595 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libssl.pc
596 cp openssl.pc $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
597 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/openssl.pc
602 case "$(PLATFORM)" in DJGPP|Cygwin*|mingw*|darwin*-*-cc) \
605 for subdir in apps crypto ssl; do \
606 mkdir -p $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir; \
607 for i in doc/$$subdir/*.pod; do \
608 fn=`basename $$i .pod`; \
609 echo "installing html/$$fn.$(HTMLSUFFIX)"; \
611 | sed -r 's/L<([^)]*)(\([0-9]\))?\|([^)]*)(\([0-9]\))?>/L<\1|\3>/g' \
612 | pod2html --podroot=doc --htmlroot=.. --podpath=apps:crypto:ssl \
613 | sed -r 's/<!DOCTYPE.*//g' \
614 > $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir/$$fn.$(HTMLSUFFIX); \
615 $(PERL) util/extract-names.pl < $$i | \
616 grep -v $$filecase "^$$fn\$$" | \
617 (cd $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir; \
619 PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn.$(HTMLSUFFIX) "$$n".$(HTMLSUFFIX); \
625 @$(PERL) $(TOP)/util/mkdir-p.pl \
626 $(INSTALL_PREFIX)$(MANDIR)/man1 \
627 $(INSTALL_PREFIX)$(MANDIR)/man3 \
628 $(INSTALL_PREFIX)$(MANDIR)/man5 \
629 $(INSTALL_PREFIX)$(MANDIR)/man7
630 @pod2man="`cd ./util; ./pod2mantest $(PERL)`"; \
633 case "$(PLATFORM)" in DJGPP|Cygwin*|mingw*|darwin*-*-cc) \
636 set -e; for i in doc/apps/*.pod; do \
637 fn=`basename $$i .pod`; \
638 sec=`$(PERL) util/extract-section.pl 1 < $$i`; \
639 echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \
640 (cd `$(PERL) util/dirname.pl $$i`; \
642 --section=$$sec --center=OpenSSL \
643 --release=$(VERSION) `basename $$i`") \
644 > $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
645 $(PERL) util/extract-names.pl < $$i | \
646 (grep -v $$filecase "^$$fn\$$"; true) | \
647 (grep -v "[ ]"; true) | \
648 (cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
650 PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}$(MANSUFFIX); \
653 set -e; for i in doc/crypto/*.pod doc/ssl/*.pod; do \
654 fn=`basename $$i .pod`; \
655 sec=`$(PERL) util/extract-section.pl 3 < $$i`; \
656 echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \
657 (cd `$(PERL) util/dirname.pl $$i`; \
659 --section=$$sec --center=OpenSSL \
660 --release=$(VERSION) `basename $$i`") \
661 > $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
662 $(PERL) util/extract-names.pl < $$i | \
663 (grep -v $$filecase "^$$fn\$$"; true) | \
664 (grep -v "[ ]"; true) | \
665 (cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
667 PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}$(MANSUFFIX); \
671 # DO NOT DELETE THIS LINE -- make depend depends on it.