diff options
| author | markus <> | 2002-09-05 12:51:51 +0000 |
|---|---|---|
| committer | markus <> | 2002-09-05 12:51:51 +0000 |
| commit | f3e848761b58c1645ce3b150d17770e528f39556 (patch) | |
| tree | 88a70dc7c35100da165c0ff4f7182805f3d85b76 /src/lib/libcrypto/Makefile.ssl | |
| parent | 2f5692b12332315048054bcce20e370985e19970 (diff) | |
| download | openbsd-f3e848761b58c1645ce3b150d17770e528f39556.tar.gz openbsd-f3e848761b58c1645ce3b150d17770e528f39556.tar.bz2 openbsd-f3e848761b58c1645ce3b150d17770e528f39556.zip | |
import openssl-0.9.7-beta1
Diffstat (limited to 'src/lib/libcrypto/Makefile.ssl')
| -rw-r--r-- | src/lib/libcrypto/Makefile.ssl | 181 |
1 files changed, 117 insertions, 64 deletions
diff --git a/src/lib/libcrypto/Makefile.ssl b/src/lib/libcrypto/Makefile.ssl index efdbba38ac..dd755f49fb 100644 --- a/src/lib/libcrypto/Makefile.ssl +++ b/src/lib/libcrypto/Makefile.ssl | |||
| @@ -5,157 +5,210 @@ | |||
| 5 | DIR= crypto | 5 | DIR= crypto |
| 6 | TOP= .. | 6 | TOP= .. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDE= -I. -I../include | 8 | INCLUDE= -I. -I$(TOP) -I../include |
| 9 | INCLUDES= -I.. -I../../include | 9 | INCLUDES= -I.. -I../.. -I../../include |
| 10 | CFLAG= -g | 10 | CFLAG= -g |
| 11 | INSTALL_PREFIX= | ||
| 12 | OPENSSLDIR= /usr/local/ssl | ||
| 11 | INSTALLTOP= /usr/local/ssl | 13 | INSTALLTOP= /usr/local/ssl |
| 12 | MAKE= make -f Makefile.ssl | 14 | MAKE= make -f Makefile.ssl |
| 13 | MAKEDEPEND= makedepend -f Makefile.ssl | 15 | MAKEDEPPROG= makedepend |
| 16 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 14 | MAKEFILE= Makefile.ssl | 17 | MAKEFILE= Makefile.ssl |
| 15 | RM= /bin/rm -f | 18 | RM= rm -f |
| 16 | AR= ar r | 19 | AR= ar r |
| 17 | 20 | ||
| 18 | MAKE= make -f Makefile.ssl | ||
| 19 | MAKEDEPEND= makedepend -f Makefile.ssl | ||
| 20 | MAKEFILE= Makefile.ssl | ||
| 21 | |||
| 22 | PEX_LIBS= | 21 | PEX_LIBS= |
| 23 | EX_LIBS= | 22 | EX_LIBS= |
| 24 | 23 | ||
| 25 | CFLAGS= $(INCLUDE) $(CFLAG) -DCFLAGS=" \"$(CC) $(CFLAG)\" " | 24 | CFLAGS= $(INCLUDE) $(CFLAG) |
| 26 | 25 | ||
| 27 | ERR=crypto | ||
| 28 | ERRC=cpt_err | ||
| 29 | 26 | ||
| 30 | LIBS= | 27 | LIBS= |
| 31 | 28 | ||
| 32 | SDIRS= md2 md5 sha mdc2 hmac ripemd \ | 29 | SDIRS= md2 md5 sha mdc2 hmac ripemd \ |
| 33 | des rc2 rc4 rc5 idea bf cast \ | 30 | des rc2 rc4 rc5 idea bf cast \ |
| 34 | bn rsa dsa dh \ | 31 | bn ec rsa dsa dh dso engine aes \ |
| 35 | buffer bio stack lhash rand err objects \ | 32 | buffer bio stack lhash rand err objects \ |
| 36 | evp pem x509 \ | 33 | evp asn1 pem x509 x509v3 conf txt_db pkcs7 pkcs12 comp ocsp ui krb5 |
| 37 | asn1 conf txt_db pkcs7 | ||
| 38 | 34 | ||
| 39 | GENERAL=Makefile README | 35 | GENERAL=Makefile README crypto-lib.com install.com |
| 40 | 36 | ||
| 41 | LIB= $(TOP)/libcrypto.a | 37 | LIB= $(TOP)/libcrypto.a |
| 42 | LIBSRC= cryptlib.c mem.c cversion.c ex_data.c $(ERRC).c | 38 | SHARED_LIB= libcrypto$(SHLIB_EXT) |
| 43 | LIBOBJ= cryptlib.o mem.o cversion.o ex_data.o $(ERRC).o | 39 | LIBSRC= cryptlib.c mem.c mem_dbg.c cversion.c ex_data.c tmdiff.c cpt_err.c ebcdic.c uid.c o_time.c |
| 40 | LIBOBJ= cryptlib.o mem.o mem_dbg.o cversion.o ex_data.o tmdiff.o cpt_err.o ebcdic.o uid.o o_time.o | ||
| 44 | 41 | ||
| 45 | SRC= $(LIBSRC) | 42 | SRC= $(LIBSRC) |
| 46 | 43 | ||
| 47 | EXHEADER= crypto.h cryptall.h | 44 | EXHEADER= crypto.h tmdiff.h opensslv.h opensslconf.h ebcdic.h symhacks.h \ |
| 48 | HEADER= cryptlib.h date.h $(EXHEADER) | 45 | ossl_typ.h |
| 46 | HEADER= cryptlib.h buildinf.h md32_common.h o_time.h $(EXHEADER) | ||
| 49 | 47 | ||
| 50 | ALL= $(GENERAL) $(SRC) $(HEADER) | 48 | ALL= $(GENERAL) $(SRC) $(HEADER) |
| 51 | 49 | ||
| 52 | top: | 50 | top: |
| 53 | @(cd ..; $(MAKE) DIRS=$(DIR) all) | 51 | @(cd ..; $(MAKE) DIRS=$(DIR) all) |
| 54 | 52 | ||
| 55 | all: date.h lib subdirs | 53 | all: buildinf.h lib subdirs shared |
| 54 | |||
| 55 | buildinf.h: ../Makefile.ssl | ||
| 56 | ( echo "#ifndef MK1MF_BUILD"; \ | ||
| 57 | echo ' /* auto-generated by crypto/Makefile.ssl for crypto/cversion.c */'; \ | ||
| 58 | echo ' #define CFLAGS "$(CC) $(CFLAG)"'; \ | ||
| 59 | echo ' #define PLATFORM "$(PLATFORM)"'; \ | ||
| 60 | echo " #define DATE \"`LC_ALL=C LC_TIME=C date`\""; \ | ||
| 61 | echo '#endif' ) >buildinf.h | ||
| 56 | 62 | ||
| 57 | date.h: ../Makefile.ssl ../VERSION | 63 | testapps: |
| 58 | echo "#define DATE \"`date`\"" >date.h | 64 | if echo ${SDIRS} | fgrep ' des '; \ |
| 65 | then cd des && $(MAKE) CC='$(CC)' INCLUDES='${INCLUDES}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' AR='${AR}' PROCESSOR='${PROCESSOR}' PERL='${PERL}' RANLIB='${RANLIB}' des; fi | ||
| 66 | cd pkcs7 && $(MAKE) CC='$(CC)' INCLUDES='${INCLUDES}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' AR='${AR}' PROCESSOR='${PROCESSOR}' PERL='${PERL}' RANLIB='${RANLIB}' testapps | ||
| 59 | 67 | ||
| 60 | subdirs: | 68 | subdirs: |
| 61 | @for i in $(SDIRS) ;\ | 69 | @for i in $(SDIRS) ;\ |
| 62 | do \ | 70 | do \ |
| 63 | (cd $$i; echo "making all in $$i..."; \ | 71 | (cd $$i && echo "making all in crypto/$$i..." && \ |
| 64 | $(MAKE) CC='$(CC)' INCLUDES='${INCLUDES}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_MULW='${BN_MULW}' DES_ENC='${DES_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' AR='${AR}' all ); \ | 72 | $(MAKE) CC='$(CC)' INCLUDES='${INCLUDES}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' AR='${AR}' PROCESSOR='${PROCESSOR}' PERL='${PERL}' RANLIB='${RANLIB}' all ) || exit 1; \ |
| 65 | done; | 73 | done; |
| 66 | 74 | ||
| 67 | files: | 75 | files: |
| 68 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 76 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| 69 | @for i in $(SDIRS) ;\ | 77 | @for i in $(SDIRS) ;\ |
| 70 | do \ | 78 | do \ |
| 71 | (cd $$i; echo "making 'files' in $$i..."; \ | 79 | (cd $$i && echo "making 'files' in crypto/$$i..." && \ |
| 72 | $(MAKE) files ); \ | 80 | $(MAKE) PERL='${PERL}' files ); \ |
| 73 | done; | 81 | done; |
| 74 | 82 | ||
| 75 | links: | 83 | links: |
| 76 | /bin/rm -f Makefile | 84 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 77 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 85 | @$(PERL) $(TOP)/util/mklink.pl ../include/openssl $(EXHEADER) |
| 78 | $(TOP)/util/mklink.sh ../include $(HEADER) ; | 86 | @$(PERL) $(TOP)/util/mklink.pl ../test $(TEST) |
| 79 | $(TOP)/util/mklink.sh ../test $(TEST) ; | 87 | @$(PERL) $(TOP)/util/mklink.pl ../apps $(APPS) |
| 80 | $(TOP)/util/mklink.sh ../apps $(APPS) ; | 88 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 81 | $(TOP)/util/point.sh Makefile.ssl Makefile; | 89 | @for i in $(SDIRS); do \ |
| 82 | @for i in $(SDIRS) ;\ | 90 | (cd $$i && echo "making links in crypto/$$i..." && \ |
| 83 | do \ | 91 | $(MAKE) CC='$(CC)' INCLUDES='${INCLUDES}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' AR='${AR}' PERL='${PERL}' links ); \ |
| 84 | (cd $$i; echo "making links in $$i..."; \ | ||
| 85 | $(MAKE) links ); \ | ||
| 86 | done; | 92 | done; |
| 87 | 93 | ||
| 88 | lib: $(LIBOBJ) | 94 | lib: $(LIBOBJ) |
| 89 | $(AR) $(LIB) $(LIBOBJ) | 95 | $(AR) $(LIB) $(LIBOBJ) |
| 90 | sh $(TOP)/util/ranlib.sh $(LIB) | 96 | $(RANLIB) $(LIB) || echo Never mind. |
| 91 | @touch lib | 97 | @touch lib |
| 92 | 98 | ||
| 99 | shared: | ||
| 100 | if [ -n "$(SHARED_LIBS)" ]; then \ | ||
| 101 | (cd ..; make $(SHARED_LIB)); \ | ||
| 102 | fi | ||
| 103 | |||
| 93 | libs: | 104 | libs: |
| 94 | @for i in $(SDIRS) ;\ | 105 | @for i in $(SDIRS) ;\ |
| 95 | do \ | 106 | do \ |
| 96 | (cd $$i; echo "making libs in $$i..."; \ | 107 | (cd $$i && echo "making libs in crypto/$$i..." && \ |
| 97 | $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' AR='${AR}' lib ); \ | 108 | $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALL_PREFIX='${INSTALL_PREFIX}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' AR='${AR}' lib ); \ |
| 98 | done; | 109 | done; |
| 99 | 110 | ||
| 100 | tests: | 111 | tests: |
| 101 | @for i in $(SDIRS) ;\ | 112 | @for i in $(SDIRS) ;\ |
| 102 | do \ | 113 | do \ |
| 103 | (cd $$i; echo "making tests in $$i..."; \ | 114 | (cd $$i && echo "making tests in crypto/$$i..." && \ |
| 104 | $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' AR='${AR}' tests ); \ | 115 | $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' AR='${AR}' tests ); \ |
| 105 | done; | 116 | done; |
| 106 | 117 | ||
| 107 | install: | 118 | install: |
| 108 | @for i in $(EXHEADER) ;\ | 119 | @for i in $(EXHEADER) ;\ |
| 109 | do \ | 120 | do \ |
| 110 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 121 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
| 111 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 122 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
| 112 | done; | 123 | done; |
| 113 | @for i in $(SDIRS) ;\ | 124 | @for i in $(SDIRS) ;\ |
| 114 | do \ | 125 | do \ |
| 115 | (cd $$i; echo "making install in $$i..."; \ | 126 | (cd $$i && echo "making install in crypto/$$i..." && \ |
| 116 | $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' install ); \ | 127 | $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALL_PREFIX='${INSTALL_PREFIX}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' install ); \ |
| 117 | done; | 128 | done; |
| 118 | 129 | ||
| 119 | lint: | 130 | lint: |
| 120 | @for i in $(SDIRS) ;\ | 131 | @for i in $(SDIRS) ;\ |
| 121 | do \ | 132 | do \ |
| 122 | (cd $$i; echo "making lint in $$i..."; \ | 133 | (cd $$i && echo "making lint in crypto/$$i..." && \ |
| 123 | $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' lint ); \ | 134 | $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' lint ); \ |
| 124 | done; | 135 | done; |
| 125 | 136 | ||
| 126 | depend: | 137 | depend: |
| 127 | $(MAKEDEPEND) $(INCLUDE) $(PROGS) $(LIBSRC) | 138 | if [ ! -f buildinf.h ]; then touch buildinf.h; fi # fake buildinf.h if it does not exist |
| 139 | $(MAKEDEPEND) $(INCLUDE) $(DEPFLAG) $(PROGS) $(LIBSRC) | ||
| 140 | if [ ! -s buildinf.h ]; then rm buildinf.h; fi | ||
| 128 | @for i in $(SDIRS) ;\ | 141 | @for i in $(SDIRS) ;\ |
| 129 | do \ | 142 | do \ |
| 130 | (cd $$i; echo "making depend in $$i..."; \ | 143 | (cd $$i && echo "making depend in crypto/$$i..." && \ |
| 131 | $(MAKE) MAKEFILE='${MAKEFILE}' INCLUDES='${INCLUDES}' MAKEDEPEND='${MAKEDEPEND}' depend ); \ | 144 | $(MAKE) MAKEFILE='${MAKEFILE}' INCLUDES='${INCLUDES}' DEPFLAG='${DEPFLAG}' depend ); \ |
| 132 | done; | 145 | done; |
| 133 | 146 | ||
| 134 | clean: | 147 | clean: |
| 135 | /bin/rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 148 | rm -f buildinf.h *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
| 136 | @for i in $(SDIRS) ;\ | 149 | @for i in $(SDIRS) ;\ |
| 137 | do \ | 150 | do \ |
| 138 | (cd $$i; echo "making clean in $$i..."; \ | 151 | (cd $$i && echo "making clean in crypto/$$i..." && \ |
| 139 | $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' clean ); \ | 152 | $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' clean ); \ |
| 140 | done; | 153 | done; |
| 141 | 154 | ||
| 142 | dclean: | 155 | dclean: |
| 143 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 156 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 144 | mv -f Makefile.new $(MAKEFILE) | 157 | mv -f Makefile.new $(MAKEFILE) |
| 145 | @for i in $(SDIRS) ;\ | 158 | @for i in $(SDIRS) ;\ |
| 146 | do \ | 159 | do \ |
| 147 | (cd $$i; echo "making dclean in $$i..."; \ | 160 | (cd $$i && echo "making dclean in crypto/$$i..." && \ |
| 148 | $(MAKE) CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' dclean ); \ | 161 | $(MAKE) PERL='${PERL}' CC='$(CC)' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' dclean ); \ |
| 149 | done; | ||
| 150 | |||
| 151 | errors: | ||
| 152 | perl ./err/err_code.pl -conf err/ssleay.ec *.c */*.c ../ssl/*.c ../rsaref/*.c | ||
| 153 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h | ||
| 154 | perl err/err_genc.pl -s $(ERR).h $(ERRC).c | ||
| 155 | @for i in $(SDIRS) ;\ | ||
| 156 | do \ | ||
| 157 | (cd $$i; echo "making errors in $$i..."; \ | ||
| 158 | $(MAKE) errors ); \ | ||
| 159 | done; | 162 | done; |
| 160 | 163 | ||
| 161 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 164 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 165 | |||
| 166 | cpt_err.o: ../include/openssl/bio.h ../include/openssl/crypto.h | ||
| 167 | cpt_err.o: ../include/openssl/e_os2.h ../include/openssl/err.h | ||
| 168 | cpt_err.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h | ||
| 169 | cpt_err.o: ../include/openssl/opensslv.h ../include/openssl/safestack.h | ||
| 170 | cpt_err.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cpt_err.c | ||
| 171 | cryptlib.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h | ||
| 172 | cryptlib.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | ||
| 173 | cryptlib.o: ../include/openssl/err.h ../include/openssl/lhash.h | ||
| 174 | cryptlib.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 175 | cryptlib.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
| 176 | cryptlib.o: ../include/openssl/symhacks.h cryptlib.c cryptlib.h | ||
| 177 | cversion.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h | ||
| 178 | cversion.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | ||
| 179 | cversion.o: ../include/openssl/err.h ../include/openssl/lhash.h | ||
| 180 | cversion.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 181 | cversion.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
| 182 | cversion.o: ../include/openssl/symhacks.h buildinf.h cryptlib.h cversion.c | ||
| 183 | ebcdic.o: ../include/openssl/opensslconf.h ebcdic.c | ||
| 184 | ex_data.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h | ||
| 185 | ex_data.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | ||
| 186 | ex_data.o: ../include/openssl/err.h ../include/openssl/lhash.h | ||
| 187 | ex_data.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 188 | ex_data.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
| 189 | ex_data.o: ../include/openssl/symhacks.h cryptlib.h ex_data.c | ||
| 190 | mem.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h | ||
| 191 | mem.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | ||
| 192 | mem.o: ../include/openssl/err.h ../include/openssl/lhash.h | ||
| 193 | mem.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 194 | mem.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
| 195 | mem.o: ../include/openssl/symhacks.h cryptlib.h mem.c | ||
| 196 | mem_dbg.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h | ||
| 197 | mem_dbg.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | ||
| 198 | mem_dbg.o: ../include/openssl/err.h ../include/openssl/lhash.h | ||
| 199 | mem_dbg.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 200 | mem_dbg.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
| 201 | mem_dbg.o: ../include/openssl/symhacks.h cryptlib.h mem_dbg.c | ||
| 202 | o_time.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h o_time.c | ||
| 203 | o_time.o: o_time.h | ||
| 204 | tmdiff.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h | ||
| 205 | tmdiff.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | ||
| 206 | tmdiff.o: ../include/openssl/err.h ../include/openssl/lhash.h | ||
| 207 | tmdiff.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 208 | tmdiff.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
| 209 | tmdiff.o: ../include/openssl/symhacks.h ../include/openssl/tmdiff.h cryptlib.h | ||
| 210 | tmdiff.o: tmdiff.c | ||
| 211 | uid.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | ||
| 212 | uid.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 213 | uid.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
| 214 | uid.o: ../include/openssl/symhacks.h uid.c | ||
