📄 makefile
字号:
### Generated automatically from Makefile.org by Configure.#### Makefile for OpenSSL##VERSION=0.9.8aMAJOR=0MINOR=9.8SHLIB_VERSION_NUMBER=0.9.8SHLIB_VERSION_HISTORY=SHLIB_MAJOR=0SHLIB_MINOR=9.8SHLIB_EXT=PLATFORM=distOPTIONS= no-gmp no-krb5 no-mdc2 no-rc5 no-shared no-zlib no-zlib-dynamicCONFIGURE_ARGS=distSHLIB_TARGET=# HERE indicates where this Makefile lives. This can be used to indicate# where sub-Makefiles are expected to be. Currently has very limited usage,# and should probably not be bothered with at all.HERE=.# INSTALL_PREFIX is for package builders so that they can configure# for, say, /usr/ and yet have everything installed to /tmp/somedir/usr/.# Normally it is left empty.INSTALL_PREFIX=INSTALLTOP=/usr/local/ssl# Do not edit this manually. Use Configure --openssldir=DIR do change this!OPENSSLDIR=/usr/local/ssl# NO_IDEA - Define to build without the IDEA algorithm# NO_RC4 - Define to build without the RC4 algorithm# NO_RC2 - Define to build without the RC2 algorithm# THREADS - Define when building with threads, you will probably also need any# system defines as well, i.e. _REENTERANT for Solaris 2.[34]# TERMIO - Define the termio terminal subsystem, needed if sgtty is missing.# TERMIOS - Define the termios terminal subsystem, Silicon Graphics.# LONGCRYPT - Define to use HPUX 10.x's long password modification to crypt(3).# DEVRANDOM - Give this the value of the 'random device' if your OS supports# one. 32 bytes will be read from this when the random# number generator is initalised.# SSL_FORBID_ENULL - define if you want the server to be not able to use the# NULL encryption ciphers.## LOCK_DEBUG - turns on lots of lock debug output :-)# REF_CHECK - turn on some xyz_free() assertions.# REF_PRINT - prints some stuff on structure free.# CRYPTO_MDEBUG - turns on my 'memory leak' detecting stuff# MFUNC - Make all Malloc/Free/Realloc calls call# CRYPTO_malloc/CRYPTO_free/CRYPTO_realloc which can be setup to# call application defined callbacks via CRYPTO_set_mem_functions()# MD5_ASM needs to be defined to use the x86 assembler for MD5# SHA1_ASM needs to be defined to use the x86 assembler for SHA1# RMD160_ASM needs to be defined to use the x86 assembler for RIPEMD160# Do not define B_ENDIAN or L_ENDIAN if 'unsigned long' == 8. It must# equal 4.# PKCS1_CHECK - pkcs1 tests.CC= ccCFLAG= -ODEPFLAG= -DOPENSSL_NO_GMP -DOPENSSL_NO_MDC2 -DOPENSSL_NO_RC5 PEX_LIBS= EX_LIBS= EXE_EXT= ARFLAGS= AR=ar $(ARFLAGS) rRANLIB= /usr/bin/ranlibPERL= /usr/local/bin/perlTAR= tarTARFLAGS= --no-recursionMAKEDEPPROG=makedepend# We let the C compiler driver to take care of .s files. This is done in# order to be excused from maintaining a separate set of architecture# dependent assembler flags. E.g. if you throw -mcpu=ultrasparc at SPARC# gcc, then the driver will automatically translate it to -xarch=v8plus# and pass it down to assembler.AS=$(CC) -cASFLAG=$(CFLAG)# For x86 assembler: Set PROCESSOR to 386 if you want to support# the 80386.PROCESSOR= # CPUID module collects small commonly used assembler snippetsCPUID_OBJ= BN_ASM= bn_asm.oDES_ENC= des_enc.o fcrypt_b.oAES_ASM_OBJ= aes_core.o aes_cbc.oBF_ENC= bf_enc.oCAST_ENC= c_enc.oRC4_ENC= rc4_enc.oRC5_ENC= rc5_enc.oMD5_ASM_OBJ= SHA1_ASM_OBJ= RMD160_ASM_OBJ= # KRB5 stuffKRB5_INCLUDES=LIBKRB5=DIRS= crypto ssl engines apps test toolsSHLIBDIRS= crypto ssl# dirs in crypto to buildSDIRS= \ objects \ md2 md4 md5 sha hmac ripemd \ des aes rc2 rc4 idea bf cast \ bn ec rsa dsa ecdsa dh ecdh dso engine \ buffer bio stack lhash rand err \ evp asn1 pem x509 x509v3 conf txt_db pkcs7 pkcs12 comp ocsp ui krb5 \ store pqueue# keep in mind that the above list is adjusted by ./Configure# according to no-xxx arguments...# tests to perform. "alltests" is a special word indicating that all tests# should be performed.TESTS = alltestsMAKEFILE= MakefileMANDIR=$(OPENSSLDIR)/manMAN1=1MAN3=3MANSUFFIX=SHELL=/bin/shTOP= .ONEDIRS=out tmpEDIRS= times doc bugs util include certs ms shlib mt demos perl sf dep VMSWDIRS= windowsLIBS= libcrypto.a libssl.aSHARED_CRYPTO=libcrypto$(SHLIB_EXT)SHARED_SSL=libssl$(SHLIB_EXT)SHARED_LIBS=SHARED_LIBS_LINK_EXTS=SHARED_LDFLAGS=GENERAL= MakefileBASENAME= opensslNAME= $(BASENAME)-$(VERSION)TARFILE= $(NAME).tarWTARFILE= $(NAME)-win.tarEXHEADER= e_os2.hHEADER= e_os.hall: Makefile build_all openssl.pc libssl.pc libcrypto.pc# as we stick to -e, CLEARENV ensures that local variables in lower# Makefiles remain local and variable. $${VAR+VAR} is tribute to Korn# shell, which [annoyingly enough] terminates unset with error if VAR# is not present:-( TOP= && unset TOP is tribute to HP-UX /bin/sh,# which terminates unset with error if no variable was present:-(CLEARENV= TOP= && unset TOP $${LIB+LIB} $${LIBS+LIBS} \ $${INCLUDE+INCLUDE} $${INCLUDES+INCLUDES} \ $${DIR+DIR} $${DIRS+DIRS} $${SRC+SRC} \ $${LIBSRC+LIBSRC} $${LIBOBJ+LIBOBJ} $${ALL+ALL} \ $${EXHEADER+EXHEADER} $${HEADER+HEADER} \ $${GENERAL+GENERAL} $${CFLAGS+CFLAGS} \ $${ASFLAGS+ASFLAGS} $${AFLAGS+AFLAGS} \ $${LDCMD+LDCMD} $${LDFLAGS+LDFLAGS} \ $${SHAREDCMD+SHAREDCMD} $${SHAREDFLAGS+SHAREDFLAGS} \ $${SHARED_LIB+SHARED_LIB} $${LIBEXTRAS+LIBEXTRAS}BUILDENV= PLATFORM='${PLATFORM}' PROCESSOR='${PROCESSOR}' \ CC='${CC}' CFLAG='${CFLAG}' \ AS='${CC}' ASFLAG='${CFLAG} -c' \ AR='${AR}' PERL='${PERL}' RANLIB='${RANLIB}' \ SDIRS='${SDIRS}' LIBRPATH='${INSTALLTOP}/lib' \ INSTALL_PREFIX='${INSTALL_PREFIX}' \ INSTALLTOP='${INSTALLTOP}' OPENSSLDIR='${OPENSSLDIR}' \ MAKEDEPEND='$$$${TOP}/util/domd $$$${TOP} -MD ${MAKEDEPPROG}' \ DEPFLAG='-DOPENSSL_NO_DEPRECATED ${DEPFLAG}' \ MAKEDEPPROG='${MAKEDEPPROG}' \ SHARED_LDFLAGS='${SHARED_LDFLAGS}' \ KRB5_INCLUDES='${KRB5_INCLUDES}' LIBKRB5='${LIBKRB5}' \ EXE_EXT='${EXE_EXT}' SHARED_LIBS='${SHARED_LIBS}' \ SHLIB_EXT='${SHLIB_EXT}' SHLIB_TARGET='${SHLIB_TARGET}' \ PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' \ CPUID_OBJ='${CPUID_OBJ}' \ BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' \ AES_ASM_OBJ='${AES_ASM_OBJ}' \ BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' \ RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' \ SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' \ MD5_ASM_OBJ='${MD5_ASM_OBJ}' \ RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' \ THIS=$${THIS:-$@} MAKEFILE=Makefile MAKEOVERRIDES=# MAKEOVERRIDES= effectively "equalizes" GNU-ish and SysV-ish make flavors,# which in turn eliminates ambiguities in variable treatment with -e.BUILD_CMD= if [ -d "$$dir" ]; then \ ( cd $$dir && echo "making $$target in $$dir..." && \ $(CLEARENV) && $(MAKE) -e $(BUILDENV) TOP=.. DIR=$$dir $$target \ ) || exit 1; \ fiRECURSIVE_BUILD_CMD=for dir in $(DIRS); do $(BUILD_CMD); donereflect: @[ -n "$(THIS)" ] && $(CLEARENV) && $(MAKE) $(THIS) -e $(BUILDENV)sub_all: build_allbuild_all: build_libs build_apps build_tests build_toolsbuild_libs: build_crypto build_ssl build_enginesbuild_crypto: @dir=crypto; target=all; $(BUILD_CMD)build_ssl: @dir=ssl; target=all; $(BUILD_CMD)build_engines: @dir=engines; target=all; $(BUILD_CMD)build_apps: @dir=apps; target=all; $(BUILD_CMD)build_tests: @dir=test; target=all; $(BUILD_CMD)build_tools: @dir=tools; target=all; $(BUILD_CMD)all_testapps: build_libs build_testappsbuild_testapps: @dir=crypto; target=testapps; $(BUILD_CMD)libcrypto$(SHLIB_EXT): libcrypto.a @if [ "$(SHLIB_TARGET)" != "" ]; then \ $(MAKE) SHLIBDIRS=crypto build-shared; \ else \ echo "There's no support for shared libraries on this platform" >&2; \ exit 1; \ filibssl$(SHLIB_EXT): libcrypto$(SHLIB_EXT) libssl.a @if [ "$(SHLIB_TARGET)" != "" ]; then \ $(MAKE) SHLIBDIRS=ssl SHLIBDEPS='-lcrypto' build-shared; \ else \ echo "There's no support for shared libraries on this platform" >&2; \ exit 1; \ ficlean-shared: @set -e; for i in $(SHLIBDIRS); do \ if [ -n "$(SHARED_LIBS_LINK_EXTS)" ]; then \ tmp="$(SHARED_LIBS_LINK_EXTS)"; \ for j in $${tmp:-x}; do \ ( set -x; rm -f lib$$i$$j ); \ done; \ fi; \ ( set -x; rm -f lib$$i$(SHLIB_EXT) ); \ if [ "$(PLATFORM)" = "Cygwin" ]; then \ ( set -x; rm -f cyg$$i$(SHLIB_EXT) lib$$i$(SHLIB_EXT).a ); \ fi; \ donelink-shared: @ set -e; for i in ${SHLIBDIRS}; do \ $(MAKE) -f $(HERE)/Makefile.shared \ LIBNAME=$$i LIBVERSION=${SHLIB_MAJOR}.${SHLIB_MINOR} \ LIBCOMPATVERSIONS=";${SHLIB_VERSION_HISTORY}" \ symlink.$(SHLIB_TARGET); \ libs="$$libs -l$$i"; \ donebuild-shared: do_$(SHLIB_TARGET) link-shareddo_$(SHLIB_TARGET): @ set -e; libs='-L. ${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \ if [ "${SHLIBDIRS}" = "ssl" -a -n "$(LIBKRB5)" ]; then \ libs="$(LIBKRB5) $$libs"; \ fi; \ $(CLEARENV) && $(MAKE) -f Makefile.shared -e $(BUILDENV) \ LIBNAME=$$i LIBVERSION=${SHLIB_MAJOR}.${SHLIB_MINOR} \ LIBCOMPATVERSIONS=";${SHLIB_VERSION_HISTORY}" \ LIBDEPS="$$libs $(EX_LIBS)" \ link_a.$(SHLIB_TARGET); \ libs="-l$$i $$libs"; \ donelibcrypto.pc: Makefile @ ( echo 'prefix=$(INSTALLTOP)'; \ echo 'exec_prefix=$${prefix}'; \ echo 'libdir=$${exec_prefix}/lib'; \
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -