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