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.
74 TARFLAGS= --no-recursion
75 MAKEDEPPROG=makedepend
78 # We let the C compiler driver to take care of .s files. This is done in
79 # order to be excused from maintaining a separate set of architecture
80 # dependent assembler flags. E.g. if you throw -mcpu=ultrasparc at SPARC
81 # gcc, then the driver will automatically translate it to -xarch=v8plus
82 # and pass it down to assembler.
86 # For x86 assembler: Set PROCESSOR to 386 if you want to support
90 # CPUID module collects small commonly used assembler snippets
94 DES_ENC= des_enc.o fcrypt_b.o
95 AES_ENC= aes_core.o aes_cbc.o
113 # This is the location of fipscanister.o and friends.
114 # The FIPS module build will place it $(INSTALLTOP)/lib
115 # but since $(INSTALLTOP) can only take the default value
116 # when the module is built it will be in /usr/local/ssl/lib
117 # $(INSTALLTOP) for this build may be different so hard
120 FIPSLIBDIR=/usr/local/ssl/$(LIBDIR)/
122 # The location of the library which contains fipscanister.o
123 # normally it will be libcrypto. If not compiling in FIPS mode
124 # at all this is empty making it a useful test for a FIPS compile.
128 # Shared library base address. Currently only used on Windows.
133 DIRS= crypto ssl engines apps test tools
135 SHLIBDIRS= crypto ssl
136 INSTALL_SUBS= engines apps tools
138 # dirs in crypto to build
141 md2 md4 md5 sha mdc2 hmac ripemd whrlpool \
142 des aes rc2 rc4 rc5 idea bf cast camellia seed modes \
143 bn ec rsa dsa ecdsa dh ecdh dso engine \
144 buffer bio stack lhash rand err \
145 evp asn1 pem x509 x509v3 conf txt_db pkcs7 pkcs12 comp ocsp ui \
146 cms pqueue ts jpake srp store cmac ct
147 # keep in mind that the above list is adjusted by ./Configure
148 # according to no-xxx arguments...
150 # tests to perform. "alltests" is a special word indicating that all tests
151 # should be performed.
156 MANDIR=$(OPENSSLDIR)/man
161 HTMLDIR=$(OPENSSLDIR)/html
165 LIBS= libcrypto.a libssl.a
166 SHARED_CRYPTO=libcrypto$(SHLIB_EXT)
167 SHARED_SSL=libssl$(SHLIB_EXT)
169 SHARED_LIBS_LINK_EXTS=
174 NAME= $(BASENAME)-$(VERSION)
176 WTARFILE= $(NAME)-win.tar
179 # Directories created on install if they don't exist.
181 $(INSTALL_PREFIX)$(INSTALLTOP)/bin \
182 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR) \
183 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines \
184 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig \
185 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl \
186 $(INSTALL_PREFIX)$(OPENSSLDIR)/misc \
187 $(INSTALL_PREFIX)$(OPENSSLDIR)/certs \
188 $(INSTALL_PREFIX)$(OPENSSLDIR)/private
190 all: Makefile build_all
192 # as we stick to -e, CLEARENV ensures that local variables in lower
193 # Makefiles remain local and variable. $${VAR+VAR} is tribute to Korn
194 # shell, which [annoyingly enough] terminates unset with error if VAR
195 # is not present:-( TOP= && unset TOP is tribute to HP-UX /bin/sh,
196 # which terminates unset with error if no variable was present:-(
197 CLEARENV= TOP= && unset TOP $${LIB+LIB} $${LIBS+LIBS} \
198 $${INCLUDE+INCLUDE} $${INCLUDES+INCLUDES} \
199 $${DIR+DIR} $${DIRS+DIRS} $${SRC+SRC} \
200 $${LIBSRC+LIBSRC} $${LIBOBJ+LIBOBJ} $${ALL+ALL} \
202 $${GENERAL+GENERAL} $${CFLAGS+CFLAGS} \
203 $${ASFLAGS+ASFLAGS} $${AFLAGS+AFLAGS} \
204 $${LDCMD+LDCMD} $${LDFLAGS+LDFLAGS} $${SCRIPTS+SCRIPTS} \
205 $${SHAREDCMD+SHAREDCMD} $${SHAREDFLAGS+SHAREDFLAGS} \
206 $${SHARED_LIB+SHARED_LIB} $${LIBEXTRAS+LIBEXTRAS}
208 BUILDENV= PLATFORM='$(PLATFORM)' PROCESSOR='$(PROCESSOR)' \
209 CC='$(CC)' CFLAG='$(CFLAG)' \
210 AS='$(CC)' ASFLAG='$(CFLAG) -c' \
211 AR='$(AR)' NM='$(NM)' RANLIB='$(RANLIB)' \
212 CROSS_COMPILE='$(CROSS_COMPILE)' \
213 PERL='$(PERL)' ENGDIRS='$(ENGDIRS)' \
214 SDIRS='$(SDIRS)' LIBRPATH='$(INSTALLTOP)/$(LIBDIR)' \
215 INSTALL_PREFIX='$(INSTALL_PREFIX)' \
216 INSTALLTOP='$(INSTALLTOP)' OPENSSLDIR='$(OPENSSLDIR)' \
218 MAKEDEPEND='$$$${TOP}/util/domd $$$${TOP} -MD $(MAKEDEPPROG)' \
219 DEPFLAG='$(DEPFLAG)' \
220 MAKEDEPPROG='$(MAKEDEPPROG)' \
221 SHARED_LDFLAGS='$(SHARED_LDFLAGS)' \
222 ZLIB_INCLUDE='$(ZLIB_INCLUDE)' LIBZLIB='$(LIBZLIB)' \
223 EXE_EXT='$(EXE_EXT)' SHARED_LIBS='$(SHARED_LIBS)' \
224 SHLIB_EXT='$(SHLIB_EXT)' SHLIB_TARGET='$(SHLIB_TARGET)' \
225 PEX_LIBS='$(PEX_LIBS)' EX_LIBS='$(EX_LIBS)' \
226 CPUID_OBJ='$(CPUID_OBJ)' BN_ASM='$(BN_ASM)' \
227 EC_ASM='$(EC_ASM)' DES_ENC='$(DES_ENC)' \
228 AES_ENC='$(AES_ENC)' CMLL_ENC='$(CMLL_ENC)' \
229 BF_ENC='$(BF_ENC)' CAST_ENC='$(CAST_ENC)' \
230 RC4_ENC='$(RC4_ENC)' RC5_ENC='$(RC5_ENC)' \
231 SHA1_ASM_OBJ='$(SHA1_ASM_OBJ)' \
232 MD5_ASM_OBJ='$(MD5_ASM_OBJ)' \
233 RMD160_ASM_OBJ='$(RMD160_ASM_OBJ)' \
234 WP_ASM_OBJ='$(WP_ASM_OBJ)' \
235 MODES_ASM_OBJ='$(MODES_ASM_OBJ)' \
236 ENGINES_ASM_OBJ='$(ENGINES_ASM_OBJ)' \
237 PERLASM_SCHEME='$(PERLASM_SCHEME)' \
238 FIPSLIBDIR='${FIPSLIBDIR}' \
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 # RECURSIVE_BUILD_CMD is a macro to build a given target in all
251 # subdirectories defined in $(DIRS). It requires that the target
252 # is given through the shell variable `target'.
254 # BUILD_ONE_CMD is a macro to build a given target in a given
255 # subdirectory if that subdirectory is part of $(DIRS). It requires
256 # exactly the same shell variables as BUILD_CMD.
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)
273 build_all: build_libs build_apps build_tests build_tools
275 build_libs: build_libcrypto build_libssl openssl.pc
277 build_libcrypto: build_crypto build_engines libcrypto.pc
278 build_libssl: build_ssl libssl.pc
281 @dir=crypto; target=all; $(BUILD_ONE_CMD)
282 build_ssl: build_crypto
283 @dir=ssl; target=all; $(BUILD_ONE_CMD)
284 build_engines: build_crypto
285 @dir=engines; target=all; AS='$(CC) -c'; export AS; $(BUILD_ONE_CMD)
287 build_apps: build_libs
288 @dir=apps; target=all; $(BUILD_ONE_CMD)
289 build_tests: build_libs
290 @dir=test; target=all; $(BUILD_ONE_CMD)
291 build_tools: build_libs
292 @dir=tools; target=all; $(BUILD_ONE_CMD)
294 all_testapps: build_libs build_testapps
296 @dir=crypto; target=testapps; $(BUILD_ONE_CMD)
298 libcrypto$(SHLIB_EXT): libcrypto.a
299 @if [ "$(SHLIB_TARGET)" != "" ]; then \
300 if [ "$(FIPSCANLIB)" = "libcrypto" ]; then \
301 FIPSLD_CC="$(CC)"; CC=fips/fipsld; \
302 export CC FIPSLD_CC; \
304 $(MAKE) -e SHLIBDIRS=crypto CC="$${CC:-$(CC)}" build-shared; \
306 echo "There's no support for shared libraries on this platform" >&2; \
310 libssl$(SHLIB_EXT): libcrypto$(SHLIB_EXT) libssl.a
311 @if [ "$(SHLIB_TARGET)" != "" ]; then \
312 $(MAKE) SHLIBDIRS=ssl SHLIBDEPS='-lcrypto' build-shared; \
314 echo "There's no support for shared libraries on this platform" >&2; \
319 @set -e; for i in $(SHLIBDIRS); do \
320 if [ -n "$(SHARED_LIBS_LINK_EXTS)" ]; then \
321 tmp="$(SHARED_LIBS_LINK_EXTS)"; \
322 for j in $${tmp:-x}; do \
323 ( set -x; rm -f lib$$i$$j ); \
326 ( set -x; rm -f lib$$i$(SHLIB_EXT) ); \
327 if expr "$(PLATFORM)" : "Cygwin" >/dev/null; then \
328 ( set -x; rm -f cyg$$i$(SHLIB_EXT) lib$$i$(SHLIB_EXT).a ); \
333 @ set -e; for i in $(SHLIBDIRS); do \
334 $(MAKE) -f $(HERE)/Makefile.shared -e $(BUILDENV) \
335 LIBNAME=$$i LIBVERSION=$(SHLIB_MAJOR).$(SHLIB_MINOR) \
336 LIBCOMPATVERSIONS=";$(SHLIB_VERSION_HISTORY)" \
337 symlink.$(SHLIB_TARGET); \
338 libs="$$libs -l$$i"; \
341 build-shared: do_$(SHLIB_TARGET) link-shared
344 @ set -e; libs='-L. $(SHLIBDEPS)'; for i in $(SHLIBDIRS); do \
345 $(CLEARENV) && $(MAKE) -f Makefile.shared -e $(BUILDENV) \
346 LIBNAME=$$i LIBVERSION=$(SHLIB_MAJOR).$(SHLIB_MINOR) \
347 LIBCOMPATVERSIONS=";$(SHLIB_VERSION_HISTORY)" \
348 LIBDEPS="$$libs $(EX_LIBS)" \
349 link_a.$(SHLIB_TARGET); \
350 libs="-l$$i $$libs"; \
353 libcrypto.pc: Makefile
354 @ ( echo 'prefix=$(INSTALLTOP)'; \
355 echo 'exec_prefix=$${prefix}'; \
356 echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
357 echo 'includedir=$${prefix}/include'; \
359 echo 'Name: OpenSSL-libcrypto'; \
360 echo 'Description: OpenSSL cryptography library'; \
361 echo 'Version: '$(VERSION); \
363 echo 'Libs: -L$${libdir} -lcrypto'; \
364 echo 'Libs.private: $(EX_LIBS)'; \
365 echo 'Cflags: -I$${includedir}' ) > libcrypto.pc
368 @ ( echo 'prefix=$(INSTALLTOP)'; \
369 echo 'exec_prefix=$${prefix}'; \
370 echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
371 echo 'includedir=$${prefix}/include'; \
373 echo 'Name: OpenSSL-libssl'; \
374 echo 'Description: Secure Sockets Layer and cryptography libraries'; \
375 echo 'Version: '$(VERSION); \
376 echo 'Requires.private: libcrypto'; \
377 echo 'Libs: -L$${libdir} -lssl'; \
378 echo 'Libs.private: $(EX_LIBS)'; \
379 echo 'Cflags: -I$${includedir}' ) > libssl.pc
382 @ ( echo 'prefix=$(INSTALLTOP)'; \
383 echo 'exec_prefix=$${prefix}'; \
384 echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
385 echo 'includedir=$${prefix}/include'; \
387 echo 'Name: OpenSSL'; \
388 echo 'Description: Secure Sockets Layer and cryptography libraries and tools'; \
389 echo 'Version: '$(VERSION); \
390 echo 'Requires: libssl libcrypto' ) > openssl.pc
392 Makefile: Makefile.org Configure config
393 @echo "Makefile is older than Makefile.org, Configure or config."
394 @echo "Reconfigure the source tree (via './config' or 'perl Configure'), please."
398 rm -f *.map *.so *.so.* *.dylib *.dll engines/*.so engines/*.dll engines/*.dylib *.a engines/*.a */lib */*/lib
401 rm -f */*/*.o */*.o *.o core a.out fluff rehash.time testlog make.log cctest cctest.c
402 rm -rf *.bak certs/.0
403 @set -e; target=clean; $(RECURSIVE_BUILD_CMD)
404 rm -f $(LIBS) tags TAGS
405 rm -f openssl.pc libssl.pc libcrypto.pc
410 $(PERL) util/mk1mf.pl >makefile.one; \
414 $(PERL) $(TOP)/util/files.pl Makefile > $(TOP)/MINFO
415 @set -e; target=files; $(RECURSIVE_BUILD_CMD)
418 @(cd test && echo "generating dummy tests (if needed)..." && \
419 $(CLEARENV) && $(MAKE) -e $(BUILDENV) TESTS='$(TESTS)' OPENSSL_DEBUG_MEMORY=on generate );
422 @set -e; target=dclean; $(RECURSIVE_BUILD_CMD)
425 rehash.time: certs apps
426 @if [ -z "$(CROSS_COMPILE)" ]; then \
427 (OPENSSL="`pwd`/util/opensslwrap.sh"; \
428 [ -x "apps/openssl.exe" ] && OPENSSL="apps/openssl.exe" || :; \
429 OPENSSL_DEBUG_MEMORY=on; OPENSSL_CONF=/dev/null ; \
430 export OPENSSL OPENSSL_DEBUG_MEMORY OPENSSL_CONF; \
431 $$OPENSSL rehash certs/demo) && \
438 @(cd test && echo "testing..." && \
439 $(CLEARENV) && $(MAKE) -e $(BUILDENV) TOP=.. TESTS='$(TESTS)' OPENSSL_DEBUG_MEMORY=on OPENSSL_CONF=../apps/openssl.cnf tests );
440 @if [ -z "$(CROSS_COMPILE)" ]; then \
441 OPENSSL_CONF=apps/openssl.cnf util/opensslwrap.sh version -a; \
446 $(CLEARENV) && $(MAKE) -e $(BUILDENV) TOP=.. list-tests)
449 @$(PERL) util/selftest.pl
451 update: errors stacks util/libeay.num util/ssleay.num TABLE
452 @set -e; target=update; $(RECURSIVE_BUILD_CMD)
455 @set -e; target=depend; $(RECURSIVE_BUILD_CMD)
458 @set -e; target=lint; $(RECURSIVE_BUILD_CMD)
468 $(PERL) util/ck_errf.pl -strict */*.c */*/*.c
469 $(PERL) util/mkerr.pl -recurse -write
470 (cd engines; $(MAKE) PERL=$(PERL) errors)
471 (cd crypto/ct; $(MAKE) PERL=$(PERL) errors)
474 $(PERL) util/mkstack.pl -write
477 $(PERL) util/mkdef.pl crypto update
480 $(PERL) util/mkdef.pl ssl update
482 TABLE: Configure Configurations/*.conf
483 (echo 'Output of `Configure TABLE'"':"; \
484 $(PERL) Configure TABLE) > TABLE
486 # Build distribution tar-file. As the list of files returned by "find" is
487 # pretty long, on several platforms a "too many arguments" error or similar
488 # would occur. Therefore the list of files is temporarily stored into a file
489 # and read directly, requiring GNU-Tar. Call "make TAR=gtar dist" if the normal
490 # tar does not support the --files-from option.
491 TAR_COMMAND=$(TAR) $(TARFLAGS) --files-from ../$(TARFILE).list \
492 --owner openssl:0 --group openssl:0 \
493 --transform 's|^|openssl-$(VERSION)/|' \
497 find * \! -name STATUS \! -name TABLE \! -name '*.o' \! -name '*.a' \
498 \! -name '*.so' \! -name '*.so.*' \! -name 'openssl' \
499 \! -name '*test' \! -name '.#*' \! -name '*~' \
500 | sort > ../$(TARFILE).list
502 tar: ../$(TARFILE).list
503 find . -type d -print | xargs chmod 755
504 find . -type f -print | xargs chmod a+r
505 find . -type f -perm -0100 -print | xargs chmod a+x
506 $(TAR_COMMAND) | gzip --best >../$(TARFILE).gz
507 rm -f ../$(TARFILE).list
508 ls -l ../$(TARFILE).gz
510 tar-snap: ../$(TARFILE).list
511 $(TAR_COMMAND) > ../$(TARFILE)
512 rm -f ../$(TARFILE).list
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_docs install_sw
526 uninstall: uninstall_sw uninstall_docs
529 @$(PERL) $(TOP)/util/mkdir-p.pl $(INSTALLDIRS)
530 @set -e; for i in include/openssl/*.h; do \
531 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/$$i; \
532 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$$i ); \
534 @set -e; target=install; for dir in $(INSTALL_SUBS); do $(BUILD_CMD); done
535 @set -e; liblist="$(LIBS)"; for i in $$liblist ;\
537 if [ -f "$$i" ]; then \
538 ( echo installing $$i; \
539 cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
540 $(RANLIB) $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
541 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
542 mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i ); \
545 @set -e; if [ -n "$(SHARED_LIBS)" ]; then \
546 tmp="$(SHARED_LIBS)"; \
547 for i in $${tmp:-x}; \
549 if [ -f "$$i" -o -f "$$i.a" ]; then \
550 ( echo installing $$i; \
551 if expr "$(PLATFORM)" : "Cygwin" >/dev/null; then \
552 c=`echo $$i | sed 's/^lib\(.*\)\.dll\.a/cyg\1-$(SHLIB_VERSION_NUMBER).dll/'`; \
553 cp $$c $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new; \
554 chmod 755 $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new; \
555 mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c; \
556 cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
557 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
558 mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i; \
560 cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
561 chmod 555 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new; \
562 mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i; \
564 if expr $(PLATFORM) : 'mingw' > /dev/null; then \
566 *crypto*) i=libeay32.dll;; \
567 *ssl*) i=ssleay32.dll;; \
569 echo installing $$i; \
570 cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new; \
571 chmod 755 $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new; \
572 mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i ); \
577 cd $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR); \
578 $(MAKE) -f $$here/Makefile HERE="$$here" link-shared ); \
579 if [ "$(INSTALLTOP)" != "/usr" ]; then \
580 echo 'OpenSSL shared libraries have been installed in:'; \
581 echo ' $(INSTALLTOP)'; \
584 cp libcrypto.pc $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
585 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libcrypto.pc
586 cp libssl.pc $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
587 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libssl.pc
588 cp openssl.pc $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig
589 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/openssl.pc
592 cd include/openssl && files=* && cd $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl && $(RM) $$files
596 echo $(RM) $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i && \
597 $(RM) $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i; \
599 @if [ -n "$(SHARED_LIBS)" ]; then \
600 tmp="$(SHARED_LIBS)"; \
601 for i in $${tmp:-x}; \
603 if [ -f "$$i" -o -f "$$i.a" ]; then \
604 if expr "$(PLATFORM)" : "Cygwin" >/dev/null; then \
605 c=`echo $$i | sed 's/^lib\(.*\)\.dll\.a/cyg\1-$(SHLIB_VERSION_NUMBER).dll/'`; \
606 echo $(RM) $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c; \
607 $(RM) $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c; \
608 echo $(RM) $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i; \
609 $(RM) $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i; \
611 echo $(RM) $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i; \
612 $(RM) $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/$$i; \
614 if expr $(PLATFORM) : 'mingw' > /dev/null; then \
616 *crypto*) i=libeay32.dll;; \
617 *ssl*) i=ssleay32.dll;; \
619 echo $(RM) $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i; \
620 $(RM) $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i; \
625 $(RM) $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libcrypto.pc
626 $(RM) $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/libssl.pc
627 $(RM) $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/pkgconfig/openssl.pc
628 @target=uninstall; $(RECURSIVE_BUILD_CMD)
633 case "$(PLATFORM)" in DJGPP|Cygwin*|mingw*|darwin*-*-cc) \
636 for subdir in apps crypto ssl; do \
637 $(PERL) $(TOP)/util/mkdir-p $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir; \
638 for i in doc/$$subdir/*.pod; do \
639 fn=`basename $$i .pod`; \
640 echo "installing html/$$fn.$(HTMLSUFFIX)"; \
642 | sed -r 's/L<([^)]*)(\([0-9]\))?\|([^)]*)(\([0-9]\))?>/L<\1|\3>/g' \
643 | pod2html --podroot=doc --htmlroot=.. --podpath=$$subdir:apps:crypto:ssl \
644 | sed -r 's/<!DOCTYPE.*//g' \
645 > $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir/$$fn.$(HTMLSUFFIX); \
646 $(PERL) util/extract-names.pl < $$i | \
647 grep -v $$filecase "^$$fn\$$" | \
648 (cd $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir; \
650 PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn.$(HTMLSUFFIX) "$$n".$(HTMLSUFFIX); \
658 case "$(PLATFORM)" in DJGPP|Cygwin*|mingw*|darwin*-*-cc) \
661 for subdir in apps crypto ssl; do \
662 for i in doc/$$subdir/*.pod; do \
663 fn=`basename $$i .pod`; \
664 $(RM) $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir/$$fn.$(HTMLSUFFIX); \
665 $(PERL) util/extract-names.pl < $$i | \
666 grep -v $$filecase "^$$fn\$$" | \
668 $(RM) $(INSTALL_PREFIX)$(HTMLDIR)/$$subdir/"$$n".$(HTMLSUFFIX); \
674 @$(PERL) $(TOP)/util/mkdir-p.pl \
675 $(INSTALL_PREFIX)$(MANDIR)/man1 \
676 $(INSTALL_PREFIX)$(MANDIR)/man3 \
677 $(INSTALL_PREFIX)$(MANDIR)/man5 \
678 $(INSTALL_PREFIX)$(MANDIR)/man7
681 case "$(PLATFORM)" in DJGPP|Cygwin*|mingw*|darwin*-*-cc) \
684 set -e; for i in doc/apps/*.pod; do \
685 fn=`basename $$i .pod`; \
686 sec=`$(PERL) util/extract-section.pl 1 < $$i`; \
687 echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \
688 (cd `$(PERL) util/dirname.pl $$i`; \
690 --section=$$sec --center=OpenSSL \
691 --release=$(VERSION) `basename $$i`) \
692 > $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
693 $(PERL) util/extract-names.pl < $$i | \
694 (grep -v $$filecase "^$$fn\$$"; true) | \
695 (grep -v "[ ]"; true) | \
696 (cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
698 PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}$(MANSUFFIX); \
701 set -e; for i in doc/crypto/*.pod doc/ssl/*.pod; do \
702 fn=`basename $$i .pod`; \
703 sec=`$(PERL) util/extract-section.pl 3 < $$i`; \
704 echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \
705 (cd `$(PERL) util/dirname.pl $$i`; \
707 --section=$$sec --center=OpenSSL \
708 --release=$(VERSION) `basename $$i`) \
709 > $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
710 $(PERL) util/extract-names.pl < $$i | \
711 (grep -v $$filecase "^$$fn\$$"; true) | \
712 (grep -v "[ ]"; true) | \
713 (cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
715 PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}$(MANSUFFIX); \
722 case "$(PLATFORM)" in DJGPP|Cygwin*|mingw*) \
725 for i in doc/apps/*.pod; do \
726 fn=`basename $$i .pod`; \
727 sec=`$(PERL) util/extract-section.pl 1 < $$i`; \
728 echo $(RM) $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
729 $(RM) $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
730 $(PERL) util/extract-names.pl < $$i | \
731 (grep -v $$filecase "^$$fn\$$"; true) | \
732 (grep -v "[ ]"; true) | \
734 echo $(RM) $(INSTALL_PREFIX)$(MANDIR)/man$$sec/"$$n".$${sec}$(MANSUFFIX); \
735 $(RM) $(INSTALL_PREFIX)$(MANDIR)/man$$sec/"$$n".$${sec}$(MANSUFFIX); \
738 for i in doc/crypto/*.pod doc/ssl/*.pod; do \
739 fn=`basename $$i .pod`; \
740 sec=`$(PERL) util/extract-section.pl 3 < $$i`; \
741 echo $(RM) $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
742 $(RM) $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
743 $(PERL) util/extract-names.pl < $$i | \
744 (grep -v $$filecase "^$$fn\$$"; true) | \
745 (grep -v "[ ]"; true) | \
747 echo $(RM) $(INSTALL_PREFIX)$(MANDIR)/man$$sec/"$$n".$${sec}$(MANSUFFIX); \
748 $(RM) $(INSTALL_PREFIX)$(MANDIR)/man$$sec/"$$n".$${sec}$(MANSUFFIX); \
752 # DO NOT DELETE THIS LINE -- make depend depends on it.