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