diff options
Diffstat (limited to 'src/lib/libcrypto')
42 files changed, 4894 insertions, 1555 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 | ||
diff --git a/src/lib/libcrypto/asn1/Makefile.ssl b/src/lib/libcrypto/asn1/Makefile.ssl index 30751bd156..09d4cb4896 100644 --- a/src/lib/libcrypto/asn1/Makefile.ssl +++ b/src/lib/libcrypto/asn1/Makefile.ssl | |||
@@ -5,57 +5,52 @@ | |||
5 | DIR= asn1 | 5 | DIR= asn1 |
6 | TOP= ../.. | 6 | TOP= ../.. |
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
14 | AR= ar r | 17 | AR= ar r |
15 | 18 | ||
16 | CFLAGS= $(INCLUDES) $(CFLAG) | 19 | CFLAGS= $(INCLUDES) $(CFLAG) |
17 | 20 | ||
18 | ERR=asn1 | ||
19 | ERRC=asn1_err | ||
20 | GENERAL=Makefile README | 21 | GENERAL=Makefile README |
21 | TEST= | 22 | TEST= |
22 | APPS= | 23 | APPS= |
23 | 24 | ||
24 | LIB=$(TOP)/libcrypto.a | 25 | LIB=$(TOP)/libcrypto.a |
25 | LIBSRC= a_object.c a_bitstr.c a_utctm.c a_int.c a_octet.c a_print.c \ | 26 | LIBSRC= a_object.c a_bitstr.c a_utctm.c a_gentm.c a_time.c a_int.c a_octet.c \ |
26 | a_type.c a_set.c a_dup.c a_d2i_fp.c a_i2d_fp.c \ | 27 | a_print.c a_type.c a_set.c a_dup.c a_d2i_fp.c a_i2d_fp.c \ |
27 | a_sign.c a_digest.c a_verify.c \ | 28 | a_enum.c a_utf8.c a_sign.c a_digest.c a_verify.c a_mbstr.c a_strex.c \ |
28 | x_algor.c x_val.c x_pubkey.c x_sig.c x_req.c x_attrib.c \ | 29 | x_algor.c x_val.c x_pubkey.c x_sig.c x_req.c x_attrib.c x_bignum.c \ |
29 | x_name.c x_cinf.c x_x509.c x_crl.c x_info.c x_spki.c \ | 30 | x_long.c x_name.c x_x509.c x_x509a.c x_crl.c x_info.c x_spki.c nsseq.c \ |
30 | d2i_r_pr.c i2d_r_pr.c d2i_r_pu.c i2d_r_pu.c \ | ||
31 | d2i_s_pr.c i2d_s_pr.c d2i_s_pu.c i2d_s_pu.c \ | ||
32 | d2i_pu.c d2i_pr.c i2d_pu.c i2d_pr.c\ | 31 | d2i_pu.c d2i_pr.c i2d_pu.c i2d_pr.c\ |
33 | t_req.c t_x509.c t_pkey.c \ | 32 | t_req.c t_x509.c t_x509a.c t_crl.c t_pkey.c t_spki.c t_bitst.c \ |
34 | p7_i_s.c p7_signi.c p7_signd.c p7_recip.c p7_enc_c.c p7_evp.c \ | 33 | tasn_new.c tasn_fre.c tasn_enc.c tasn_dec.c tasn_utl.c tasn_typ.c \ |
35 | p7_dgst.c p7_s_e.c p7_enc.c p7_lib.c \ | 34 | f_int.c f_string.c n_pkey.c \ |
36 | f_int.c f_string.c i2d_dhp.c i2d_dsap.c d2i_dhp.c d2i_dsap.c n_pkey.c \ | 35 | f_enum.c a_hdr.c x_pkey.c a_bool.c x_exten.c \ |
37 | a_hdr.c x_pkey.c a_bool.c x_exten.c \ | 36 | asn1_par.c asn1_lib.c asn1_err.c a_meth.c a_bytes.c a_strnid.c \ |
38 | asn1_par.c asn1_lib.c $(ERRC).c a_meth.c a_bytes.c \ | 37 | evp_asn1.c asn_pack.c p5_pbe.c p5_pbev2.c p8_pkey.c asn_moid.c |
39 | evp_asn1.c | 38 | LIBOBJ= a_object.o a_bitstr.o a_utctm.o a_gentm.o a_time.o a_int.o a_octet.o \ |
40 | LIBOBJ= a_object.o a_bitstr.o a_utctm.o a_int.o a_octet.o a_print.o \ | 39 | a_print.o a_type.o a_set.o a_dup.o a_d2i_fp.o a_i2d_fp.o \ |
41 | a_type.o a_set.o a_dup.o a_d2i_fp.o a_i2d_fp.o \ | 40 | a_enum.o a_utf8.o a_sign.o a_digest.o a_verify.o a_mbstr.o a_strex.o \ |
42 | a_sign.o a_digest.o a_verify.o \ | 41 | x_algor.o x_val.o x_pubkey.o x_sig.o x_req.o x_attrib.o x_bignum.o \ |
43 | x_algor.o x_val.o x_pubkey.o x_sig.o x_req.o x_attrib.o \ | 42 | x_long.o x_name.o x_x509.o x_x509a.o x_crl.o x_info.o x_spki.o nsseq.o \ |
44 | x_name.o x_cinf.o x_x509.o x_crl.o x_info.o x_spki.o \ | ||
45 | d2i_r_pr.o i2d_r_pr.o d2i_r_pu.o i2d_r_pu.o \ | ||
46 | d2i_s_pr.o i2d_s_pr.o d2i_s_pu.o i2d_s_pu.o \ | ||
47 | d2i_pu.o d2i_pr.o i2d_pu.o i2d_pr.o \ | 43 | d2i_pu.o d2i_pr.o i2d_pu.o i2d_pr.o \ |
48 | t_req.o t_x509.o t_pkey.o \ | 44 | t_req.o t_x509.o t_x509a.o t_crl.o t_pkey.o t_spki.o t_bitst.o \ |
49 | p7_i_s.o p7_signi.o p7_signd.o p7_recip.o p7_enc_c.o p7_evp.o \ | 45 | tasn_new.o tasn_fre.o tasn_enc.o tasn_dec.o tasn_utl.o tasn_typ.o \ |
50 | p7_dgst.o p7_s_e.o p7_enc.o p7_lib.o \ | 46 | f_int.o f_string.o n_pkey.o \ |
51 | f_int.o f_string.o i2d_dhp.o i2d_dsap.o d2i_dhp.o d2i_dsap.o n_pkey.o \ | 47 | f_enum.o a_hdr.o x_pkey.o a_bool.o x_exten.o \ |
52 | a_hdr.o x_pkey.o a_bool.o x_exten.o \ | 48 | asn1_par.o asn1_lib.o asn1_err.o a_meth.o a_bytes.o a_strnid.o \ |
53 | asn1_par.o asn1_lib.o $(ERRC).o a_meth.o a_bytes.o \ | 49 | evp_asn1.o asn_pack.o p5_pbe.o p5_pbev2.o p8_pkey.o asn_moid.o |
54 | evp_asn1.o | ||
55 | 50 | ||
56 | SRC= $(LIBSRC) | 51 | SRC= $(LIBSRC) |
57 | 52 | ||
58 | EXHEADER= asn1.h asn1_mac.h | 53 | EXHEADER= asn1.h asn1_mac.h asn1t.h |
59 | HEADER= $(EXHEADER) | 54 | HEADER= $(EXHEADER) |
60 | 55 | ||
61 | ALL= $(GENERAL) $(SRC) $(HEADER) | 56 | ALL= $(GENERAL) $(SRC) $(HEADER) |
@@ -75,24 +70,23 @@ all: lib | |||
75 | 70 | ||
76 | lib: $(LIBOBJ) | 71 | lib: $(LIBOBJ) |
77 | $(AR) $(LIB) $(LIBOBJ) | 72 | $(AR) $(LIB) $(LIBOBJ) |
78 | sh $(TOP)/util/ranlib.sh $(LIB) | 73 | $(RANLIB) $(LIB) || echo Never mind. |
79 | @touch lib | 74 | @touch lib |
80 | 75 | ||
81 | files: | 76 | files: |
82 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 77 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
83 | 78 | ||
84 | links: | 79 | links: |
85 | /bin/rm -f Makefile | 80 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
86 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 81 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
87 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 82 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
88 | $(TOP)/util/mklink.sh ../../test $(TEST) | 83 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
89 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
90 | 84 | ||
91 | install: | 85 | install: |
92 | @for i in $(EXHEADER) ; \ | 86 | @for i in $(EXHEADER) ; \ |
93 | do \ | 87 | do \ |
94 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 88 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
95 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 89 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
96 | done; | 90 | done; |
97 | 91 | ||
98 | tags: | 92 | tags: |
@@ -104,17 +98,789 @@ lint: | |||
104 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 98 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
105 | 99 | ||
106 | depend: | 100 | depend: |
107 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 101 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
108 | 102 | ||
109 | dclean: | 103 | dclean: |
110 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 104 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
111 | mv -f Makefile.new $(MAKEFILE) | 105 | mv -f Makefile.new $(MAKEFILE) |
112 | 106 | ||
113 | clean: | 107 | clean: |
114 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 108 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
115 | 109 | ||
116 | errors: | ||
117 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h | ||
118 | perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c | ||
119 | 110 | ||
120 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 111 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
112 | |||
113 | a_bitstr.o: ../../e_os.h ../../include/openssl/asn1.h | ||
114 | a_bitstr.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
115 | a_bitstr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
116 | a_bitstr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
117 | a_bitstr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
118 | a_bitstr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
119 | a_bitstr.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
120 | a_bitstr.o: ../../include/openssl/symhacks.h ../cryptlib.h a_bitstr.c | ||
121 | a_bool.o: ../../e_os.h ../../include/openssl/asn1.h | ||
122 | a_bool.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
123 | a_bool.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
124 | a_bool.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
125 | a_bool.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
126 | a_bool.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
127 | a_bool.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
128 | a_bool.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
129 | a_bool.o: ../cryptlib.h a_bool.c | ||
130 | a_bytes.o: ../../e_os.h ../../include/openssl/asn1.h | ||
131 | a_bytes.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
132 | a_bytes.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
133 | a_bytes.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
134 | a_bytes.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
135 | a_bytes.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
136 | a_bytes.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
137 | a_bytes.o: ../../include/openssl/symhacks.h ../cryptlib.h a_bytes.c | ||
138 | a_d2i_fp.o: ../../e_os.h ../../include/openssl/asn1.h | ||
139 | a_d2i_fp.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
140 | a_d2i_fp.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
141 | a_d2i_fp.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
142 | a_d2i_fp.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
143 | a_d2i_fp.o: ../../include/openssl/opensslconf.h | ||
144 | a_d2i_fp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
145 | a_d2i_fp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
146 | a_d2i_fp.o: ../../include/openssl/symhacks.h ../cryptlib.h a_d2i_fp.c | ||
147 | a_digest.o: ../../e_os.h ../../include/openssl/asn1.h | ||
148 | a_digest.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
149 | a_digest.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
150 | a_digest.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
151 | a_digest.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
152 | a_digest.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
153 | a_digest.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
154 | a_digest.o: ../../include/openssl/opensslconf.h | ||
155 | a_digest.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
156 | a_digest.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
157 | a_digest.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
158 | a_digest.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
159 | a_digest.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
160 | a_digest.o: ../cryptlib.h a_digest.c | ||
161 | a_dup.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
162 | a_dup.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
163 | a_dup.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
164 | a_dup.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
165 | a_dup.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
166 | a_dup.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
167 | a_dup.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
168 | a_dup.o: ../cryptlib.h a_dup.c | ||
169 | a_enum.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
170 | a_enum.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
171 | a_enum.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
172 | a_enum.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
173 | a_enum.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
174 | a_enum.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
175 | a_enum.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
176 | a_enum.o: ../cryptlib.h a_enum.c | ||
177 | a_gentm.o: ../../e_os.h ../../include/openssl/asn1.h | ||
178 | a_gentm.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
179 | a_gentm.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
180 | a_gentm.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
181 | a_gentm.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
182 | a_gentm.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
183 | a_gentm.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
184 | a_gentm.o: ../../include/openssl/symhacks.h ../cryptlib.h ../o_time.h a_gentm.c | ||
185 | a_hdr.o: ../../e_os.h ../../include/openssl/asn1.h | ||
186 | a_hdr.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
187 | a_hdr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
188 | a_hdr.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
189 | a_hdr.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
190 | a_hdr.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
191 | a_hdr.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
192 | a_hdr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
193 | a_hdr.o: ../cryptlib.h a_hdr.c | ||
194 | a_i2d_fp.o: ../../e_os.h ../../include/openssl/asn1.h | ||
195 | a_i2d_fp.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
196 | a_i2d_fp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
197 | a_i2d_fp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
198 | a_i2d_fp.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
199 | a_i2d_fp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
200 | a_i2d_fp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
201 | a_i2d_fp.o: ../../include/openssl/symhacks.h ../cryptlib.h a_i2d_fp.c | ||
202 | a_int.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
203 | a_int.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
204 | a_int.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
205 | a_int.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
206 | a_int.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
207 | a_int.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
208 | a_int.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
209 | a_int.o: ../cryptlib.h a_int.c | ||
210 | a_mbstr.o: ../../e_os.h ../../include/openssl/asn1.h | ||
211 | a_mbstr.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
212 | a_mbstr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
213 | a_mbstr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
214 | a_mbstr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
215 | a_mbstr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
216 | a_mbstr.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
217 | a_mbstr.o: ../../include/openssl/symhacks.h ../cryptlib.h a_mbstr.c | ||
218 | a_meth.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
219 | a_meth.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
220 | a_meth.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
221 | a_meth.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
222 | a_meth.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
223 | a_meth.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
224 | a_meth.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
225 | a_meth.o: ../cryptlib.h a_meth.c | ||
226 | a_object.o: ../../e_os.h ../../include/openssl/asn1.h | ||
227 | a_object.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
228 | a_object.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
229 | a_object.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
230 | a_object.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
231 | a_object.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
232 | a_object.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
233 | a_object.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
234 | a_object.o: ../../include/openssl/symhacks.h ../cryptlib.h a_object.c | ||
235 | a_octet.o: ../../e_os.h ../../include/openssl/asn1.h | ||
236 | a_octet.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
237 | a_octet.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
238 | a_octet.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
239 | a_octet.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
240 | a_octet.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
241 | a_octet.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
242 | a_octet.o: ../../include/openssl/symhacks.h ../cryptlib.h a_octet.c | ||
243 | a_print.o: ../../e_os.h ../../include/openssl/asn1.h | ||
244 | a_print.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
245 | a_print.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
246 | a_print.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
247 | a_print.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
248 | a_print.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
249 | a_print.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
250 | a_print.o: ../../include/openssl/symhacks.h ../cryptlib.h a_print.c | ||
251 | a_set.o: ../../e_os.h ../../include/openssl/asn1.h | ||
252 | a_set.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
253 | a_set.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
254 | a_set.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
255 | a_set.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
256 | a_set.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
257 | a_set.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
258 | a_set.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
259 | a_set.o: ../cryptlib.h a_set.c | ||
260 | a_sign.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
261 | a_sign.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
262 | a_sign.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
263 | a_sign.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
264 | a_sign.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
265 | a_sign.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
266 | a_sign.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
267 | a_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
268 | a_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
269 | a_sign.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
270 | a_sign.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
271 | a_sign.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
272 | a_sign.o: ../cryptlib.h a_sign.c | ||
273 | a_strex.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
274 | a_strex.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
275 | a_strex.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
276 | a_strex.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
277 | a_strex.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
278 | a_strex.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
279 | a_strex.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
280 | a_strex.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
281 | a_strex.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
282 | a_strex.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
283 | a_strex.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
284 | a_strex.o: ../../include/openssl/x509_vfy.h a_strex.c charmap.h | ||
285 | a_strnid.o: ../../e_os.h ../../include/openssl/asn1.h | ||
286 | a_strnid.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
287 | a_strnid.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
288 | a_strnid.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
289 | a_strnid.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
290 | a_strnid.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
291 | a_strnid.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
292 | a_strnid.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
293 | a_strnid.o: ../../include/openssl/symhacks.h ../cryptlib.h a_strnid.c | ||
294 | a_time.o: ../../e_os.h ../../include/openssl/asn1.h | ||
295 | a_time.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
296 | a_time.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
297 | a_time.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
298 | a_time.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
299 | a_time.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
300 | a_time.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
301 | a_time.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
302 | a_time.o: ../cryptlib.h ../o_time.h a_time.c | ||
303 | a_type.o: ../../e_os.h ../../include/openssl/asn1.h | ||
304 | a_type.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
305 | a_type.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
306 | a_type.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
307 | a_type.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
308 | a_type.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
309 | a_type.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
310 | a_type.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
311 | a_type.o: ../cryptlib.h a_type.c | ||
312 | a_utctm.o: ../../e_os.h ../../include/openssl/asn1.h | ||
313 | a_utctm.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
314 | a_utctm.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
315 | a_utctm.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
316 | a_utctm.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
317 | a_utctm.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
318 | a_utctm.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
319 | a_utctm.o: ../../include/openssl/symhacks.h ../cryptlib.h ../o_time.h a_utctm.c | ||
320 | a_utf8.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
321 | a_utf8.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
322 | a_utf8.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
323 | a_utf8.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
324 | a_utf8.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
325 | a_utf8.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
326 | a_utf8.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
327 | a_utf8.o: ../cryptlib.h a_utf8.c | ||
328 | a_verify.o: ../../e_os.h ../../include/openssl/asn1.h | ||
329 | a_verify.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
330 | a_verify.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
331 | a_verify.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
332 | a_verify.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
333 | a_verify.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
334 | a_verify.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
335 | a_verify.o: ../../include/openssl/opensslconf.h | ||
336 | a_verify.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
337 | a_verify.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
338 | a_verify.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
339 | a_verify.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
340 | a_verify.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
341 | a_verify.o: ../cryptlib.h a_verify.c | ||
342 | asn1_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
343 | asn1_err.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
344 | asn1_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
345 | asn1_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
346 | asn1_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
347 | asn1_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
348 | asn1_err.o: ../../include/openssl/symhacks.h asn1_err.c | ||
349 | asn1_lib.o: ../../e_os.h ../../include/openssl/asn1.h | ||
350 | asn1_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
351 | asn1_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
352 | asn1_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
353 | asn1_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
354 | asn1_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
355 | asn1_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
356 | asn1_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h asn1_lib.c | ||
357 | asn1_par.o: ../../e_os.h ../../include/openssl/asn1.h | ||
358 | asn1_par.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
359 | asn1_par.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
360 | asn1_par.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
361 | asn1_par.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
362 | asn1_par.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
363 | asn1_par.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
364 | asn1_par.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
365 | asn1_par.o: ../../include/openssl/symhacks.h ../cryptlib.h asn1_par.c | ||
366 | asn_moid.o: ../../e_os.h ../../include/openssl/asn1.h | ||
367 | asn_moid.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
368 | asn_moid.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
369 | asn_moid.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
370 | asn_moid.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h | ||
371 | asn_moid.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
372 | asn_moid.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
373 | asn_moid.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
374 | asn_moid.o: ../../include/openssl/opensslconf.h | ||
375 | asn_moid.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
376 | asn_moid.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
377 | asn_moid.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
378 | asn_moid.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
379 | asn_moid.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
380 | asn_moid.o: ../cryptlib.h asn_moid.c | ||
381 | asn_pack.o: ../../e_os.h ../../include/openssl/asn1.h | ||
382 | asn_pack.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
383 | asn_pack.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
384 | asn_pack.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
385 | asn_pack.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
386 | asn_pack.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
387 | asn_pack.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
388 | asn_pack.o: ../../include/openssl/symhacks.h ../cryptlib.h asn_pack.c | ||
389 | d2i_pr.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
390 | d2i_pr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
391 | d2i_pr.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
392 | d2i_pr.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
393 | d2i_pr.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
394 | d2i_pr.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
395 | d2i_pr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
396 | d2i_pr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
397 | d2i_pr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
398 | d2i_pr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
399 | d2i_pr.o: ../cryptlib.h d2i_pr.c | ||
400 | d2i_pu.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
401 | d2i_pu.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
402 | d2i_pu.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
403 | d2i_pu.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
404 | d2i_pu.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
405 | d2i_pu.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
406 | d2i_pu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
407 | d2i_pu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
408 | d2i_pu.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
409 | d2i_pu.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
410 | d2i_pu.o: ../cryptlib.h d2i_pu.c | ||
411 | evp_asn1.o: ../../e_os.h ../../include/openssl/asn1.h | ||
412 | evp_asn1.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
413 | evp_asn1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
414 | evp_asn1.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
415 | evp_asn1.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
416 | evp_asn1.o: ../../include/openssl/opensslconf.h | ||
417 | evp_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
418 | evp_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
419 | evp_asn1.o: ../../include/openssl/symhacks.h ../cryptlib.h evp_asn1.c | ||
420 | f_enum.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
421 | f_enum.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
422 | f_enum.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
423 | f_enum.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
424 | f_enum.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
425 | f_enum.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
426 | f_enum.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
427 | f_enum.o: ../cryptlib.h f_enum.c | ||
428 | f_int.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
429 | f_int.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
430 | f_int.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
431 | f_int.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
432 | f_int.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
433 | f_int.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
434 | f_int.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
435 | f_int.o: ../cryptlib.h f_int.c | ||
436 | f_string.o: ../../e_os.h ../../include/openssl/asn1.h | ||
437 | f_string.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
438 | f_string.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
439 | f_string.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
440 | f_string.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
441 | f_string.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
442 | f_string.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
443 | f_string.o: ../../include/openssl/symhacks.h ../cryptlib.h f_string.c | ||
444 | i2d_pr.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
445 | i2d_pr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
446 | i2d_pr.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
447 | i2d_pr.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
448 | i2d_pr.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
449 | i2d_pr.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
450 | i2d_pr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
451 | i2d_pr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
452 | i2d_pr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
453 | i2d_pr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
454 | i2d_pr.o: ../cryptlib.h i2d_pr.c | ||
455 | i2d_pu.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
456 | i2d_pu.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
457 | i2d_pu.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
458 | i2d_pu.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
459 | i2d_pu.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
460 | i2d_pu.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
461 | i2d_pu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
462 | i2d_pu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
463 | i2d_pu.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
464 | i2d_pu.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
465 | i2d_pu.o: ../cryptlib.h i2d_pu.c | ||
466 | n_pkey.o: ../../e_os.h ../../include/openssl/asn1.h | ||
467 | n_pkey.o: ../../include/openssl/asn1_mac.h ../../include/openssl/asn1t.h | ||
468 | n_pkey.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
469 | n_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
470 | n_pkey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
471 | n_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
472 | n_pkey.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
473 | n_pkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
474 | n_pkey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
475 | n_pkey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
476 | n_pkey.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
477 | n_pkey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
478 | n_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
479 | n_pkey.o: ../../include/openssl/x509_vfy.h ../cryptlib.h n_pkey.c | ||
480 | nsseq.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
481 | nsseq.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
482 | nsseq.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
483 | nsseq.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
484 | nsseq.o: ../../include/openssl/e_os2.h ../../include/openssl/evp.h | ||
485 | nsseq.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
486 | nsseq.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
487 | nsseq.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
488 | nsseq.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
489 | nsseq.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
490 | nsseq.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
491 | nsseq.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h nsseq.c | ||
492 | p5_pbe.o: ../../e_os.h ../../include/openssl/asn1.h | ||
493 | p5_pbe.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
494 | p5_pbe.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
495 | p5_pbe.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
496 | p5_pbe.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
497 | p5_pbe.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
498 | p5_pbe.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
499 | p5_pbe.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
500 | p5_pbe.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
501 | p5_pbe.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
502 | p5_pbe.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
503 | p5_pbe.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
504 | p5_pbe.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
505 | p5_pbe.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p5_pbe.c | ||
506 | p5_pbev2.o: ../../e_os.h ../../include/openssl/asn1.h | ||
507 | p5_pbev2.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
508 | p5_pbev2.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
509 | p5_pbev2.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
510 | p5_pbev2.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
511 | p5_pbev2.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
512 | p5_pbev2.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
513 | p5_pbev2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
514 | p5_pbev2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
515 | p5_pbev2.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
516 | p5_pbev2.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
517 | p5_pbev2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
518 | p5_pbev2.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
519 | p5_pbev2.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p5_pbev2.c | ||
520 | p8_pkey.o: ../../e_os.h ../../include/openssl/asn1.h | ||
521 | p8_pkey.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
522 | p8_pkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
523 | p8_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
524 | p8_pkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
525 | p8_pkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
526 | p8_pkey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
527 | p8_pkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
528 | p8_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
529 | p8_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
530 | p8_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
531 | p8_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
532 | p8_pkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
533 | p8_pkey.o: ../cryptlib.h p8_pkey.c | ||
534 | t_bitst.o: ../../e_os.h ../../include/openssl/asn1.h | ||
535 | t_bitst.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
536 | t_bitst.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
537 | t_bitst.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
538 | t_bitst.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
539 | t_bitst.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
540 | t_bitst.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
541 | t_bitst.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
542 | t_bitst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
543 | t_bitst.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
544 | t_bitst.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
545 | t_bitst.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
546 | t_bitst.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
547 | t_bitst.o: ../../include/openssl/x509v3.h ../cryptlib.h t_bitst.c | ||
548 | t_crl.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
549 | t_crl.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
550 | t_crl.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
551 | t_crl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
552 | t_crl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
553 | t_crl.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
554 | t_crl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
555 | t_crl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
556 | t_crl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
557 | t_crl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
558 | t_crl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
559 | t_crl.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
560 | t_crl.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
561 | t_crl.o: ../cryptlib.h t_crl.c | ||
562 | t_pkey.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
563 | t_pkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
564 | t_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
565 | t_pkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
566 | t_pkey.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
567 | t_pkey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
568 | t_pkey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rsa.h | ||
569 | t_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
570 | t_pkey.o: ../../include/openssl/symhacks.h ../cryptlib.h t_pkey.c | ||
571 | t_req.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
572 | t_req.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
573 | t_req.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
574 | t_req.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
575 | t_req.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
576 | t_req.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
577 | t_req.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
578 | t_req.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
579 | t_req.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
580 | t_req.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
581 | t_req.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
582 | t_req.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
583 | t_req.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
584 | t_req.o: ../cryptlib.h t_req.c | ||
585 | t_spki.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
586 | t_spki.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
587 | t_spki.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
588 | t_spki.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
589 | t_spki.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
590 | t_spki.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
591 | t_spki.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
592 | t_spki.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
593 | t_spki.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
594 | t_spki.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
595 | t_spki.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
596 | t_spki.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
597 | t_spki.o: ../cryptlib.h t_spki.c | ||
598 | t_x509.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
599 | t_x509.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
600 | t_x509.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
601 | t_x509.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
602 | t_x509.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
603 | t_x509.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
604 | t_x509.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
605 | t_x509.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
606 | t_x509.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
607 | t_x509.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
608 | t_x509.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
609 | t_x509.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
610 | t_x509.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
611 | t_x509.o: ../cryptlib.h t_x509.c | ||
612 | t_x509a.o: ../../e_os.h ../../include/openssl/asn1.h | ||
613 | t_x509a.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
614 | t_x509a.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
615 | t_x509a.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
616 | t_x509a.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
617 | t_x509a.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
618 | t_x509a.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
619 | t_x509a.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
620 | t_x509a.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
621 | t_x509a.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
622 | t_x509a.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
623 | t_x509a.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
624 | t_x509a.o: ../../include/openssl/x509_vfy.h ../cryptlib.h t_x509a.c | ||
625 | tasn_dec.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
626 | tasn_dec.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
627 | tasn_dec.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
628 | tasn_dec.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
629 | tasn_dec.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
630 | tasn_dec.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
631 | tasn_dec.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
632 | tasn_dec.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
633 | tasn_dec.o: ../../include/openssl/symhacks.h tasn_dec.c | ||
634 | tasn_enc.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
635 | tasn_enc.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
636 | tasn_enc.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
637 | tasn_enc.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
638 | tasn_enc.o: ../../include/openssl/opensslconf.h | ||
639 | tasn_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
640 | tasn_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
641 | tasn_enc.o: ../../include/openssl/symhacks.h tasn_enc.c | ||
642 | tasn_fre.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
643 | tasn_fre.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
644 | tasn_fre.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
645 | tasn_fre.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
646 | tasn_fre.o: ../../include/openssl/opensslconf.h | ||
647 | tasn_fre.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
648 | tasn_fre.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
649 | tasn_fre.o: ../../include/openssl/symhacks.h tasn_fre.c | ||
650 | tasn_new.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
651 | tasn_new.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
652 | tasn_new.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
653 | tasn_new.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
654 | tasn_new.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
655 | tasn_new.o: ../../include/openssl/opensslconf.h | ||
656 | tasn_new.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
657 | tasn_new.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
658 | tasn_new.o: ../../include/openssl/symhacks.h tasn_new.c | ||
659 | tasn_typ.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
660 | tasn_typ.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
661 | tasn_typ.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
662 | tasn_typ.o: ../../include/openssl/opensslconf.h | ||
663 | tasn_typ.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
664 | tasn_typ.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
665 | tasn_typ.o: ../../include/openssl/symhacks.h tasn_typ.c | ||
666 | tasn_utl.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
667 | tasn_utl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
668 | tasn_utl.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
669 | tasn_utl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
670 | tasn_utl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
671 | tasn_utl.o: ../../include/openssl/opensslconf.h | ||
672 | tasn_utl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
673 | tasn_utl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
674 | tasn_utl.o: ../../include/openssl/symhacks.h tasn_utl.c | ||
675 | x_algor.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
676 | x_algor.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
677 | x_algor.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
678 | x_algor.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
679 | x_algor.o: ../../include/openssl/e_os2.h ../../include/openssl/evp.h | ||
680 | x_algor.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
681 | x_algor.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
682 | x_algor.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
683 | x_algor.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
684 | x_algor.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
685 | x_algor.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
686 | x_algor.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
687 | x_algor.o: x_algor.c | ||
688 | x_attrib.o: ../../e_os.h ../../include/openssl/asn1.h | ||
689 | x_attrib.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
690 | x_attrib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
691 | x_attrib.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
692 | x_attrib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
693 | x_attrib.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
694 | x_attrib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
695 | x_attrib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
696 | x_attrib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
697 | x_attrib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
698 | x_attrib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
699 | x_attrib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
700 | x_attrib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
701 | x_attrib.o: ../cryptlib.h x_attrib.c | ||
702 | x_bignum.o: ../../e_os.h ../../include/openssl/asn1.h | ||
703 | x_bignum.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
704 | x_bignum.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
705 | x_bignum.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
706 | x_bignum.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
707 | x_bignum.o: ../../include/openssl/opensslconf.h | ||
708 | x_bignum.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
709 | x_bignum.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
710 | x_bignum.o: ../../include/openssl/symhacks.h ../cryptlib.h x_bignum.c | ||
711 | x_crl.o: ../../e_os.h ../../include/openssl/asn1.h | ||
712 | x_crl.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
713 | x_crl.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
714 | x_crl.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
715 | x_crl.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
716 | x_crl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
717 | x_crl.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
718 | x_crl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
719 | x_crl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
720 | x_crl.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
721 | x_crl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
722 | x_crl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
723 | x_crl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
724 | x_crl.o: ../cryptlib.h x_crl.c | ||
725 | x_exten.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
726 | x_exten.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
727 | x_exten.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
728 | x_exten.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
729 | x_exten.o: ../../include/openssl/e_os2.h ../../include/openssl/evp.h | ||
730 | x_exten.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
731 | x_exten.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
732 | x_exten.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
733 | x_exten.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
734 | x_exten.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
735 | x_exten.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
736 | x_exten.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
737 | x_exten.o: x_exten.c | ||
738 | x_info.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
739 | x_info.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
740 | x_info.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
741 | x_info.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
742 | x_info.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
743 | x_info.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
744 | x_info.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
745 | x_info.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
746 | x_info.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
747 | x_info.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
748 | x_info.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
749 | x_info.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
750 | x_info.o: ../cryptlib.h x_info.c | ||
751 | x_long.o: ../../e_os.h ../../include/openssl/asn1.h | ||
752 | x_long.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
753 | x_long.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
754 | x_long.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
755 | x_long.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
756 | x_long.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
757 | x_long.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
758 | x_long.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
759 | x_long.o: ../cryptlib.h x_long.c | ||
760 | x_name.o: ../../e_os.h ../../include/openssl/asn1.h | ||
761 | x_name.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
762 | x_name.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
763 | x_name.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
764 | x_name.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
765 | x_name.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
766 | x_name.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
767 | x_name.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
768 | x_name.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
769 | x_name.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
770 | x_name.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
771 | x_name.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
772 | x_name.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
773 | x_name.o: ../cryptlib.h x_name.c | ||
774 | x_pkey.o: ../../e_os.h ../../include/openssl/asn1.h | ||
775 | x_pkey.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
776 | x_pkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
777 | x_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
778 | x_pkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
779 | x_pkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
780 | x_pkey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
781 | x_pkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
782 | x_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
783 | x_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
784 | x_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
785 | x_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
786 | x_pkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
787 | x_pkey.o: ../cryptlib.h x_pkey.c | ||
788 | x_pubkey.o: ../../e_os.h ../../include/openssl/asn1.h | ||
789 | x_pubkey.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
790 | x_pubkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
791 | x_pubkey.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
792 | x_pubkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
793 | x_pubkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
794 | x_pubkey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
795 | x_pubkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
796 | x_pubkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
797 | x_pubkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
798 | x_pubkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
799 | x_pubkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
800 | x_pubkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
801 | x_pubkey.o: ../cryptlib.h x_pubkey.c | ||
802 | x_req.o: ../../e_os.h ../../include/openssl/asn1.h | ||
803 | x_req.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
804 | x_req.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
805 | x_req.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
806 | x_req.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
807 | x_req.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
808 | x_req.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
809 | x_req.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
810 | x_req.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
811 | x_req.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
812 | x_req.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
813 | x_req.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
814 | x_req.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
815 | x_req.o: ../cryptlib.h x_req.c | ||
816 | x_sig.o: ../../e_os.h ../../include/openssl/asn1.h | ||
817 | x_sig.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
818 | x_sig.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
819 | x_sig.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
820 | x_sig.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
821 | x_sig.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
822 | x_sig.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
823 | x_sig.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
824 | x_sig.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
825 | x_sig.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
826 | x_sig.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
827 | x_sig.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
828 | x_sig.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
829 | x_sig.o: ../cryptlib.h x_sig.c | ||
830 | x_spki.o: ../../e_os.h ../../include/openssl/asn1.h | ||
831 | x_spki.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
832 | x_spki.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
833 | x_spki.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
834 | x_spki.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
835 | x_spki.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
836 | x_spki.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
837 | x_spki.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
838 | x_spki.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
839 | x_spki.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
840 | x_spki.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
841 | x_spki.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
842 | x_spki.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
843 | x_spki.o: ../cryptlib.h x_spki.c | ||
844 | x_val.o: ../../e_os.h ../../include/openssl/asn1.h | ||
845 | x_val.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
846 | x_val.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
847 | x_val.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
848 | x_val.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
849 | x_val.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
850 | x_val.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
851 | x_val.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
852 | x_val.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
853 | x_val.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
854 | x_val.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
855 | x_val.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
856 | x_val.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
857 | x_val.o: ../cryptlib.h x_val.c | ||
858 | x_x509.o: ../../e_os.h ../../include/openssl/asn1.h | ||
859 | x_x509.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
860 | x_x509.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
861 | x_x509.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
862 | x_x509.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
863 | x_x509.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
864 | x_x509.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
865 | x_x509.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
866 | x_x509.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
867 | x_x509.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
868 | x_x509.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
869 | x_x509.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
870 | x_x509.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
871 | x_x509.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
872 | x_x509.o: ../cryptlib.h x_x509.c | ||
873 | x_x509a.o: ../../e_os.h ../../include/openssl/asn1.h | ||
874 | x_x509a.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
875 | x_x509a.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
876 | x_x509a.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
877 | x_x509a.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
878 | x_x509a.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
879 | x_x509a.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
880 | x_x509a.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
881 | x_x509a.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
882 | x_x509a.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
883 | x_x509a.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
884 | x_x509a.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
885 | x_x509a.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
886 | x_x509a.o: ../cryptlib.h x_x509a.c | ||
diff --git a/src/lib/libcrypto/asn1/f.c b/src/lib/libcrypto/asn1/f.c index 2ab3a262ac..82bccdfd51 100644 --- a/src/lib/libcrypto/asn1/f.c +++ b/src/lib/libcrypto/asn1/f.c | |||
@@ -56,8 +56,8 @@ | |||
56 | * [including the GNU Public Licence.] | 56 | * [including the GNU Public Licence.] |
57 | */ | 57 | */ |
58 | #include <stdio.h> | 58 | #include <stdio.h> |
59 | #include "asn1.h" | 59 | #include <openssl/asn1.h> |
60 | #include "err.h" | 60 | #include <openssl/err.h> |
61 | 61 | ||
62 | main() | 62 | main() |
63 | { | 63 | { |
diff --git a/src/lib/libcrypto/asn1/x_cinf.c b/src/lib/libcrypto/asn1/x_cinf.c index 4fc2cc9f6e..339a110eef 100644 --- a/src/lib/libcrypto/asn1/x_cinf.c +++ b/src/lib/libcrypto/asn1/x_cinf.c | |||
@@ -58,16 +58,10 @@ | |||
58 | 58 | ||
59 | #include <stdio.h> | 59 | #include <stdio.h> |
60 | #include "cryptlib.h" | 60 | #include "cryptlib.h" |
61 | #include "asn1_mac.h" | 61 | #include <openssl/asn1_mac.h> |
62 | #include <openssl/x509.h> | ||
62 | 63 | ||
63 | /* | 64 | int i2d_X509_CINF(X509_CINF *a, unsigned char **pp) |
64 | * ASN1err(ASN1_F_D2I_X509_CINF,ASN1_R_LENGTH_MISMATCH); | ||
65 | * ASN1err(ASN1_F_X509_CINF_NEW,ASN1_R_LENGTH_MISMATCH); | ||
66 | */ | ||
67 | |||
68 | int i2d_X509_CINF(a,pp) | ||
69 | X509_CINF *a; | ||
70 | unsigned char **pp; | ||
71 | { | 65 | { |
72 | int v1=0,v2=0; | 66 | int v1=0,v2=0; |
73 | M_ASN1_I2D_vars(a); | 67 | M_ASN1_I2D_vars(a); |
@@ -81,7 +75,9 @@ unsigned char **pp; | |||
81 | M_ASN1_I2D_len(a->key, i2d_X509_PUBKEY); | 75 | M_ASN1_I2D_len(a->key, i2d_X509_PUBKEY); |
82 | M_ASN1_I2D_len_IMP_opt(a->issuerUID, i2d_ASN1_BIT_STRING); | 76 | M_ASN1_I2D_len_IMP_opt(a->issuerUID, i2d_ASN1_BIT_STRING); |
83 | M_ASN1_I2D_len_IMP_opt(a->subjectUID, i2d_ASN1_BIT_STRING); | 77 | M_ASN1_I2D_len_IMP_opt(a->subjectUID, i2d_ASN1_BIT_STRING); |
84 | M_ASN1_I2D_len_EXP_set_opt(a->extensions,i2d_X509_EXTENSION,3,V_ASN1_SEQUENCE,v2); | 78 | M_ASN1_I2D_len_EXP_SEQUENCE_opt_type(X509_EXTENSION,a->extensions, |
79 | i2d_X509_EXTENSION,3, | ||
80 | V_ASN1_SEQUENCE,v2); | ||
85 | 81 | ||
86 | M_ASN1_I2D_seq_total(); | 82 | M_ASN1_I2D_seq_total(); |
87 | 83 | ||
@@ -94,15 +90,14 @@ unsigned char **pp; | |||
94 | M_ASN1_I2D_put(a->key, i2d_X509_PUBKEY); | 90 | M_ASN1_I2D_put(a->key, i2d_X509_PUBKEY); |
95 | M_ASN1_I2D_put_IMP_opt(a->issuerUID, i2d_ASN1_BIT_STRING,1); | 91 | M_ASN1_I2D_put_IMP_opt(a->issuerUID, i2d_ASN1_BIT_STRING,1); |
96 | M_ASN1_I2D_put_IMP_opt(a->subjectUID, i2d_ASN1_BIT_STRING,2); | 92 | M_ASN1_I2D_put_IMP_opt(a->subjectUID, i2d_ASN1_BIT_STRING,2); |
97 | M_ASN1_I2D_put_EXP_set_opt(a->extensions,i2d_X509_EXTENSION,3,V_ASN1_SEQUENCE,v2); | 93 | M_ASN1_I2D_put_EXP_SEQUENCE_opt_type(X509_EXTENSION,a->extensions, |
94 | i2d_X509_EXTENSION,3, | ||
95 | V_ASN1_SEQUENCE,v2); | ||
98 | 96 | ||
99 | M_ASN1_I2D_finish(); | 97 | M_ASN1_I2D_finish(); |
100 | } | 98 | } |
101 | 99 | ||
102 | X509_CINF *d2i_X509_CINF(a,pp,length) | 100 | X509_CINF *d2i_X509_CINF(X509_CINF **a, unsigned char **pp, long length) |
103 | X509_CINF **a; | ||
104 | unsigned char **pp; | ||
105 | long length; | ||
106 | { | 101 | { |
107 | int ver=0; | 102 | int ver=0; |
108 | M_ASN1_D2I_vars(a,X509_CINF *,X509_CINF_new); | 103 | M_ASN1_D2I_vars(a,X509_CINF *,X509_CINF_new); |
@@ -120,7 +115,7 @@ long length; | |||
120 | { | 115 | { |
121 | if (ret->version != NULL) | 116 | if (ret->version != NULL) |
122 | { | 117 | { |
123 | ASN1_INTEGER_free(ret->version); | 118 | M_ASN1_INTEGER_free(ret->version); |
124 | ret->version=NULL; | 119 | ret->version=NULL; |
125 | } | 120 | } |
126 | } | 121 | } |
@@ -134,38 +129,48 @@ long length; | |||
134 | { | 129 | { |
135 | if (ret->issuerUID != NULL) | 130 | if (ret->issuerUID != NULL) |
136 | { | 131 | { |
137 | ASN1_BIT_STRING_free(ret->issuerUID); | 132 | M_ASN1_BIT_STRING_free(ret->issuerUID); |
138 | ret->issuerUID=NULL; | 133 | ret->issuerUID=NULL; |
139 | } | 134 | } |
140 | if (ret->subjectUID != NULL) | 135 | if (ret->subjectUID != NULL) |
141 | { | 136 | { |
142 | ASN1_BIT_STRING_free(ret->subjectUID); | 137 | M_ASN1_BIT_STRING_free(ret->subjectUID); |
143 | ret->issuerUID=NULL; | 138 | ret->subjectUID=NULL; |
144 | } | 139 | } |
145 | M_ASN1_D2I_get_IMP_opt(ret->issuerUID,d2i_ASN1_BIT_STRING, 1, | 140 | M_ASN1_D2I_get_IMP_opt(ret->issuerUID,d2i_ASN1_BIT_STRING, 1, |
146 | V_ASN1_BIT_STRING); | 141 | V_ASN1_BIT_STRING); |
147 | M_ASN1_D2I_get_IMP_opt(ret->subjectUID,d2i_ASN1_BIT_STRING, 2, | 142 | M_ASN1_D2I_get_IMP_opt(ret->subjectUID,d2i_ASN1_BIT_STRING, 2, |
148 | V_ASN1_BIT_STRING); | 143 | V_ASN1_BIT_STRING); |
149 | } | 144 | } |
145 | /* Note: some broken certificates include extensions but don't set | ||
146 | * the version number properly. By bypassing this check they can | ||
147 | * be parsed. | ||
148 | */ | ||
149 | |||
150 | #ifdef VERSION_EXT_CHECK | ||
150 | if (ver >= 2) /* version 3 extensions */ | 151 | if (ver >= 2) /* version 3 extensions */ |
152 | #endif | ||
151 | { | 153 | { |
152 | if (ret->extensions != NULL) | 154 | if (ret->extensions != NULL) |
153 | while (sk_num(ret->extensions)) | 155 | while (sk_X509_EXTENSION_num(ret->extensions)) |
154 | X509_EXTENSION_free((X509_EXTENSION *) | 156 | X509_EXTENSION_free( |
155 | sk_pop(ret->extensions)); | 157 | sk_X509_EXTENSION_pop(ret->extensions)); |
156 | M_ASN1_D2I_get_EXP_set_opt(ret->extensions,d2i_X509_EXTENSION,3, | 158 | M_ASN1_D2I_get_EXP_set_opt_type(X509_EXTENSION,ret->extensions, |
157 | V_ASN1_SEQUENCE); | 159 | d2i_X509_EXTENSION, |
160 | X509_EXTENSION_free,3, | ||
161 | V_ASN1_SEQUENCE); | ||
158 | } | 162 | } |
159 | M_ASN1_D2I_Finish(a,X509_CINF_free,ASN1_F_D2I_X509_CINF); | 163 | M_ASN1_D2I_Finish(a,X509_CINF_free,ASN1_F_D2I_X509_CINF); |
160 | } | 164 | } |
161 | 165 | ||
162 | X509_CINF *X509_CINF_new() | 166 | X509_CINF *X509_CINF_new(void) |
163 | { | 167 | { |
164 | X509_CINF *ret=NULL; | 168 | X509_CINF *ret=NULL; |
169 | ASN1_CTX c; | ||
165 | 170 | ||
166 | M_ASN1_New_Malloc(ret,X509_CINF); | 171 | M_ASN1_New_Malloc(ret,X509_CINF); |
167 | ret->version=NULL; | 172 | ret->version=NULL; |
168 | M_ASN1_New(ret->serialNumber,ASN1_INTEGER_new); | 173 | M_ASN1_New(ret->serialNumber,M_ASN1_INTEGER_new); |
169 | M_ASN1_New(ret->signature,X509_ALGOR_new); | 174 | M_ASN1_New(ret->signature,X509_ALGOR_new); |
170 | M_ASN1_New(ret->issuer,X509_NAME_new); | 175 | M_ASN1_New(ret->issuer,X509_NAME_new); |
171 | M_ASN1_New(ret->validity,X509_VAL_new); | 176 | M_ASN1_New(ret->validity,X509_VAL_new); |
@@ -178,20 +183,19 @@ X509_CINF *X509_CINF_new() | |||
178 | M_ASN1_New_Error(ASN1_F_X509_CINF_NEW); | 183 | M_ASN1_New_Error(ASN1_F_X509_CINF_NEW); |
179 | } | 184 | } |
180 | 185 | ||
181 | void X509_CINF_free(a) | 186 | void X509_CINF_free(X509_CINF *a) |
182 | X509_CINF *a; | ||
183 | { | 187 | { |
184 | if (a == NULL) return; | 188 | if (a == NULL) return; |
185 | ASN1_INTEGER_free(a->version); | 189 | M_ASN1_INTEGER_free(a->version); |
186 | ASN1_INTEGER_free(a->serialNumber); | 190 | M_ASN1_INTEGER_free(a->serialNumber); |
187 | X509_ALGOR_free(a->signature); | 191 | X509_ALGOR_free(a->signature); |
188 | X509_NAME_free(a->issuer); | 192 | X509_NAME_free(a->issuer); |
189 | X509_VAL_free(a->validity); | 193 | X509_VAL_free(a->validity); |
190 | X509_NAME_free(a->subject); | 194 | X509_NAME_free(a->subject); |
191 | X509_PUBKEY_free(a->key); | 195 | X509_PUBKEY_free(a->key); |
192 | ASN1_BIT_STRING_free(a->issuerUID); | 196 | M_ASN1_BIT_STRING_free(a->issuerUID); |
193 | ASN1_BIT_STRING_free(a->subjectUID); | 197 | M_ASN1_BIT_STRING_free(a->subjectUID); |
194 | sk_pop_free(a->extensions,X509_EXTENSION_free); | 198 | sk_X509_EXTENSION_pop_free(a->extensions,X509_EXTENSION_free); |
195 | Free((char *)a); | 199 | OPENSSL_free(a); |
196 | } | 200 | } |
197 | 201 | ||
diff --git a/src/lib/libcrypto/bf/Makefile.ssl b/src/lib/libcrypto/bf/Makefile.ssl index 236671f238..1b1cb8842f 100644 --- a/src/lib/libcrypto/bf/Makefile.ssl +++ b/src/lib/libcrypto/bf/Makefile.ssl | |||
@@ -8,9 +8,12 @@ CC= cc | |||
8 | CPP= $(CC) -E | 8 | CPP= $(CC) -E |
9 | INCLUDES= | 9 | INCLUDES= |
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 | AR= ar r | 18 | AR= ar r |
16 | 19 | ||
@@ -42,12 +45,12 @@ all: lib | |||
42 | 45 | ||
43 | lib: $(LIBOBJ) | 46 | lib: $(LIBOBJ) |
44 | $(AR) $(LIB) $(LIBOBJ) | 47 | $(AR) $(LIB) $(LIBOBJ) |
45 | sh $(TOP)/util/ranlib.sh $(LIB) | 48 | $(RANLIB) $(LIB) || echo Never mind. |
46 | @touch lib | 49 | @touch lib |
47 | 50 | ||
48 | # elf | 51 | # elf |
49 | asm/bx86-elf.o: asm/bx86unix.cpp | 52 | asm/bx86-elf.o: asm/bx86unix.cpp |
50 | $(CPP) -DELF asm/bx86unix.cpp | as -o asm/bx86-elf.o | 53 | $(CPP) -DELF -x c asm/bx86unix.cpp | as -o asm/bx86-elf.o |
51 | 54 | ||
52 | # solaris | 55 | # solaris |
53 | asm/bx86-sol.o: asm/bx86unix.cpp | 56 | asm/bx86-sol.o: asm/bx86unix.cpp |
@@ -61,27 +64,27 @@ asm/bx86-out.o: asm/bx86unix.cpp | |||
61 | 64 | ||
62 | # bsdi | 65 | # bsdi |
63 | asm/bx86bsdi.o: asm/bx86unix.cpp | 66 | asm/bx86bsdi.o: asm/bx86unix.cpp |
64 | $(CPP) -DBSDI asm/bx86unix.cpp | as -o asm/bx86bsdi.o | 67 | $(CPP) -DBSDI asm/bx86unix.cpp | sed 's/ :/:/' | as -o asm/bx86bsdi.o |
65 | 68 | ||
66 | asm/bx86unix.cpp: | 69 | asm/bx86unix.cpp: asm/bf-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl |
67 | (cd asm; perl bf-586.pl cpp >bx86unix.cpp) | 70 | (cd asm; $(PERL) bf-586.pl cpp $(PROCESSOR) >bx86unix.cpp) |
68 | 71 | ||
69 | files: | 72 | files: |
70 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 73 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
71 | 74 | ||
72 | links: | 75 | links: |
73 | /bin/rm -f Makefile | 76 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
74 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 77 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
75 | $(TOP)/util/point.sh ../../doc/blowfish.doc blowfish.doc ; | 78 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
76 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 79 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
77 | $(TOP)/util/mklink.sh ../../test $(TEST) | 80 | |
78 | $(TOP)/util/mklink.sh ../../apps $(APPS) | 81 | install: installs |
79 | 82 | ||
80 | install: | 83 | installs: |
81 | @for i in $(EXHEADER) ; \ | 84 | @for i in $(EXHEADER) ; \ |
82 | do \ | 85 | do \ |
83 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 86 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
84 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 87 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
85 | done; | 88 | done; |
86 | 89 | ||
87 | tags: | 90 | tags: |
@@ -93,15 +96,25 @@ lint: | |||
93 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 96 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
94 | 97 | ||
95 | depend: | 98 | depend: |
96 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 99 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
97 | 100 | ||
98 | dclean: | 101 | dclean: |
99 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 102 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
100 | mv -f Makefile.new $(MAKEFILE) | 103 | mv -f Makefile.new $(MAKEFILE) |
101 | 104 | ||
102 | clean: | 105 | clean: |
103 | /bin/rm -f *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 106 | rm -f asm/bx86unix.cpp *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
104 | |||
105 | errors: | ||
106 | 107 | ||
107 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 108 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
109 | |||
110 | bf_cfb64.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h | ||
111 | bf_cfb64.o: ../../include/openssl/opensslconf.h bf_cfb64.c bf_locl.h | ||
112 | bf_ecb.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h | ||
113 | bf_ecb.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
114 | bf_ecb.o: bf_ecb.c bf_locl.h | ||
115 | bf_enc.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h | ||
116 | bf_enc.o: ../../include/openssl/opensslconf.h bf_enc.c bf_locl.h | ||
117 | bf_ofb64.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h | ||
118 | bf_ofb64.o: ../../include/openssl/opensslconf.h bf_locl.h bf_ofb64.c | ||
119 | bf_skey.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h | ||
120 | bf_skey.o: ../../include/openssl/opensslconf.h bf_locl.h bf_pi.h bf_skey.c | ||
diff --git a/src/lib/libcrypto/bio/Makefile.ssl b/src/lib/libcrypto/bio/Makefile.ssl index 42e11e1c94..103a051c03 100644 --- a/src/lib/libcrypto/bio/Makefile.ssl +++ b/src/lib/libcrypto/bio/Makefile.ssl | |||
@@ -5,38 +5,41 @@ | |||
5 | DIR= bio | 5 | DIR= bio |
6 | TOP= ../.. | 6 | TOP= ../.. |
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
14 | AR= ar r | 17 | AR= ar r |
15 | 18 | ||
16 | CFLAGS= $(INCLUDES) $(CFLAG) | 19 | CFLAGS= $(INCLUDES) $(CFLAG) |
17 | 20 | ||
18 | ERR=bio | ||
19 | ERRC=bio_err | ||
20 | GENERAL=Makefile | 21 | GENERAL=Makefile |
21 | TEST= | 22 | TEST= |
22 | APPS= | 23 | APPS= |
23 | 24 | ||
24 | LIB=$(TOP)/libcrypto.a | 25 | LIB=$(TOP)/libcrypto.a |
25 | LIBSRC= bio_lib.c bio_cb.c $(ERRC).c \ | 26 | LIBSRC= bio_lib.c bio_cb.c bio_err.c \ |
26 | bss_mem.c bss_null.c bss_fd.c \ | 27 | bss_mem.c bss_null.c bss_fd.c \ |
27 | bss_file.c bss_sock.c bss_conn.c \ | 28 | bss_file.c bss_sock.c bss_conn.c \ |
28 | bf_null.c bf_buff.c b_print.c b_dump.c \ | 29 | bf_null.c bf_buff.c b_print.c b_dump.c \ |
29 | b_sock.c bss_acpt.c bf_nbio.c | 30 | b_sock.c bss_acpt.c bf_nbio.c bss_log.c bss_bio.c |
30 | LIBOBJ= bio_lib.o bio_cb.o $(ERRC).o \ | 31 | # bf_lbuf.c |
32 | LIBOBJ= bio_lib.o bio_cb.o bio_err.o \ | ||
31 | bss_mem.o bss_null.o bss_fd.o \ | 33 | bss_mem.o bss_null.o bss_fd.o \ |
32 | bss_file.o bss_sock.o bss_conn.o \ | 34 | bss_file.o bss_sock.o bss_conn.o \ |
33 | bf_null.o bf_buff.o b_print.o b_dump.o \ | 35 | bf_null.o bf_buff.o b_print.o b_dump.o \ |
34 | b_sock.o bss_acpt.o bf_nbio.o | 36 | b_sock.o bss_acpt.o bf_nbio.o bss_log.o bss_bio.o |
37 | # bf_lbuf.o | ||
35 | 38 | ||
36 | SRC= $(LIBSRC) | 39 | SRC= $(LIBSRC) |
37 | 40 | ||
38 | EXHEADER= bio.h bss_file.c | 41 | EXHEADER= bio.h |
39 | HEADER= $(EXHEADER) | 42 | HEADER= bss_file.c $(EXHEADER) |
40 | 43 | ||
41 | ALL= $(GENERAL) $(SRC) $(HEADER) | 44 | ALL= $(GENERAL) $(SRC) $(HEADER) |
42 | 45 | ||
@@ -47,24 +50,23 @@ all: lib | |||
47 | 50 | ||
48 | lib: $(LIBOBJ) | 51 | lib: $(LIBOBJ) |
49 | $(AR) $(LIB) $(LIBOBJ) | 52 | $(AR) $(LIB) $(LIBOBJ) |
50 | sh $(TOP)/util/ranlib.sh $(LIB) | 53 | $(RANLIB) $(LIB) || echo Never mind. |
51 | @touch lib | 54 | @touch lib |
52 | 55 | ||
53 | files: | 56 | files: |
54 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 57 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
55 | 58 | ||
56 | links: | 59 | links: |
57 | /bin/rm -f Makefile | 60 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
58 | $(TOP)/util/point.sh Makefile.ssl Makefile; | 61 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
59 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 62 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
60 | $(TOP)/util/mklink.sh ../../test $(TEST) | 63 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
61 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
62 | 64 | ||
63 | install: | 65 | install: |
64 | @for i in $(EXHEADER) bss_file.c ; \ | 66 | @for i in $(EXHEADER); \ |
65 | do \ | 67 | do \ |
66 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 68 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
67 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 69 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
68 | done; | 70 | done; |
69 | 71 | ||
70 | tags: | 72 | tags: |
@@ -76,17 +78,139 @@ lint: | |||
76 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 78 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
77 | 79 | ||
78 | depend: | 80 | depend: |
79 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 81 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
80 | 82 | ||
81 | dclean: | 83 | dclean: |
82 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 84 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
83 | mv -f Makefile.new $(MAKEFILE) | 85 | mv -f Makefile.new $(MAKEFILE) |
84 | 86 | ||
85 | clean: | 87 | clean: |
86 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 88 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
87 | |||
88 | errors: | ||
89 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h | ||
90 | perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c | ||
91 | 89 | ||
92 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 90 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
91 | |||
92 | b_dump.o: ../../e_os.h ../../include/openssl/bio.h | ||
93 | b_dump.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
94 | b_dump.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
95 | b_dump.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
96 | b_dump.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
97 | b_dump.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
98 | b_dump.o: ../cryptlib.h b_dump.c | ||
99 | b_print.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
100 | b_print.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
101 | b_print.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
102 | b_print.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
103 | b_print.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
104 | b_print.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
105 | b_print.o: ../cryptlib.h b_print.c | ||
106 | b_sock.o: ../../e_os.h ../../include/openssl/bio.h | ||
107 | b_sock.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
108 | b_sock.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
109 | b_sock.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
110 | b_sock.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
111 | b_sock.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
112 | b_sock.o: ../cryptlib.h b_sock.c | ||
113 | bf_buff.o: ../../e_os.h ../../include/openssl/bio.h | ||
114 | bf_buff.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
115 | bf_buff.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
116 | bf_buff.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
117 | bf_buff.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
118 | bf_buff.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
119 | bf_buff.o: ../cryptlib.h bf_buff.c | ||
120 | bf_nbio.o: ../../e_os.h ../../include/openssl/bio.h | ||
121 | bf_nbio.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
122 | bf_nbio.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
123 | bf_nbio.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
124 | bf_nbio.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
125 | bf_nbio.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
126 | bf_nbio.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
127 | bf_nbio.o: ../cryptlib.h bf_nbio.c | ||
128 | bf_null.o: ../../e_os.h ../../include/openssl/bio.h | ||
129 | bf_null.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
130 | bf_null.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
131 | bf_null.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
132 | bf_null.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
133 | bf_null.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
134 | bf_null.o: ../cryptlib.h bf_null.c | ||
135 | bio_cb.o: ../../e_os.h ../../include/openssl/bio.h | ||
136 | bio_cb.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
137 | bio_cb.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
138 | bio_cb.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
139 | bio_cb.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
140 | bio_cb.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
141 | bio_cb.o: ../cryptlib.h bio_cb.c | ||
142 | bio_err.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | ||
143 | bio_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
144 | bio_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
145 | bio_err.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
146 | bio_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
147 | bio_err.o: bio_err.c | ||
148 | bio_lib.o: ../../e_os.h ../../include/openssl/bio.h | ||
149 | bio_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
150 | bio_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
151 | bio_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
152 | bio_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
153 | bio_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
154 | bio_lib.o: ../cryptlib.h bio_lib.c | ||
155 | bss_acpt.o: ../../e_os.h ../../include/openssl/bio.h | ||
156 | bss_acpt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
157 | bss_acpt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
158 | bss_acpt.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
159 | bss_acpt.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
160 | bss_acpt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
161 | bss_acpt.o: ../cryptlib.h bss_acpt.c | ||
162 | bss_bio.o: ../../e_os.h ../../include/openssl/bio.h | ||
163 | bss_bio.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
164 | bss_bio.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
165 | bss_bio.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
166 | bss_bio.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
167 | bss_bio.o: ../../include/openssl/symhacks.h bss_bio.c | ||
168 | bss_conn.o: ../../e_os.h ../../include/openssl/bio.h | ||
169 | bss_conn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
170 | bss_conn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
171 | bss_conn.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
172 | bss_conn.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
173 | bss_conn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
174 | bss_conn.o: ../cryptlib.h bss_conn.c | ||
175 | bss_fd.o: ../../e_os.h ../../include/openssl/bio.h | ||
176 | bss_fd.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
177 | bss_fd.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
178 | bss_fd.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
179 | bss_fd.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
180 | bss_fd.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
181 | bss_fd.o: ../cryptlib.h bss_fd.c | ||
182 | bss_file.o: ../../e_os.h ../../include/openssl/bio.h | ||
183 | bss_file.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
184 | bss_file.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
185 | bss_file.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
186 | bss_file.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
187 | bss_file.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
188 | bss_file.o: ../cryptlib.h bss_file.c | ||
189 | bss_log.o: ../../e_os.h ../../include/openssl/bio.h | ||
190 | bss_log.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
191 | bss_log.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
192 | bss_log.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
193 | bss_log.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
194 | bss_log.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
195 | bss_log.o: ../cryptlib.h bss_log.c | ||
196 | bss_mem.o: ../../e_os.h ../../include/openssl/bio.h | ||
197 | bss_mem.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
198 | bss_mem.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
199 | bss_mem.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
200 | bss_mem.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
201 | bss_mem.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
202 | bss_mem.o: ../cryptlib.h bss_mem.c | ||
203 | bss_null.o: ../../e_os.h ../../include/openssl/bio.h | ||
204 | bss_null.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
205 | bss_null.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
206 | bss_null.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
207 | bss_null.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
208 | bss_null.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
209 | bss_null.o: ../cryptlib.h bss_null.c | ||
210 | bss_sock.o: ../../e_os.h ../../include/openssl/bio.h | ||
211 | bss_sock.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
212 | bss_sock.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
213 | bss_sock.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
214 | bss_sock.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
215 | bss_sock.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
216 | bss_sock.o: ../cryptlib.h bss_sock.c | ||
diff --git a/src/lib/libcrypto/bn/Makefile.ssl b/src/lib/libcrypto/bn/Makefile.ssl index 9809d26cbc..605cb17577 100644 --- a/src/lib/libcrypto/bn/Makefile.ssl +++ b/src/lib/libcrypto/bn/Makefile.ssl | |||
@@ -5,37 +5,46 @@ | |||
5 | DIR= bn | 5 | DIR= bn |
6 | TOP= ../.. | 6 | TOP= ../.. |
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= -I.. -I../../include | 8 | CPP= $(CC) -E |
9 | INCLUDES= -I.. -I$(TOP) -I../../include | ||
9 | CFLAG=-g | 10 | CFLAG=-g |
11 | INSTALL_PREFIX= | ||
12 | OPENSSLDIR= /usr/local/ssl | ||
10 | INSTALLTOP=/usr/local/ssl | 13 | INSTALLTOP=/usr/local/ssl |
11 | MAKE= make -f Makefile.ssl | 14 | MAKE= make -f Makefile.ssl |
12 | MAKEDEPEND= makedepend -f Makefile.ssl | 15 | MAKEDEPPROG= makedepend |
16 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
13 | MAKEFILE= Makefile.ssl | 17 | MAKEFILE= Makefile.ssl |
14 | AR= ar r | 18 | AR= ar r |
15 | 19 | ||
16 | BN_MULW= bn_mulw.o | 20 | BN_ASM= bn_asm.o |
17 | # or use | 21 | # or use |
18 | #BN_MULW= bn86-elf.o | 22 | #BN_ASM= bn86-elf.o |
19 | 23 | ||
20 | CFLAGS= $(INCLUDES) $(CFLAG) | 24 | CFLAGS= $(INCLUDES) $(CFLAG) |
21 | 25 | ||
22 | ERR=bn | 26 | # We let the C compiler driver to take care of .s files. This is done in |
23 | ERRC=bn_err | 27 | # order to be excused from maintaining a separate set of architecture |
28 | # dependent assembler flags. E.g. if you throw -mcpu=ultrasparc at SPARC | ||
29 | # gcc, then the driver will automatically translate it to -xarch=v8plus | ||
30 | # and pass it down to assembler. | ||
31 | AS=$(CC) -c | ||
32 | ASFLAGS=$(CFLAGS) | ||
33 | |||
24 | GENERAL=Makefile | 34 | GENERAL=Makefile |
25 | TEST=bntest.c exptest.c | 35 | TEST=bntest.c exptest.c |
26 | APPS= | 36 | APPS= |
27 | 37 | ||
28 | LIB=$(TOP)/libcrypto.a | 38 | LIB=$(TOP)/libcrypto.a |
29 | LIBSRC= bn_add.c bn_div.c bn_exp.c bn_lib.c bn_mod.c bn_mul.c \ | 39 | LIBSRC= bn_add.c bn_div.c bn_exp.c bn_lib.c bn_ctx.c bn_mul.c bn_mod.c \ |
30 | bn_print.c bn_rand.c bn_shift.c bn_sub.c bn_word.c bn_blind.c \ | 40 | bn_print.c bn_rand.c bn_shift.c bn_word.c bn_blind.c \ |
31 | bn_gcd.c bn_prime.c $(ERRC).c bn_sqr.c bn_mulw.c bn_recp.c bn_mont.c \ | 41 | bn_kron.c bn_sqrt.c bn_gcd.c bn_prime.c bn_err.c bn_sqr.c bn_asm.c \ |
32 | bn_mpi.c | 42 | bn_recp.c bn_mont.c bn_mpi.c bn_exp2.c |
33 | |||
34 | LIBOBJ= bn_add.o bn_div.o bn_exp.o bn_lib.o bn_mod.o bn_mul.o \ | ||
35 | bn_print.o bn_rand.o bn_shift.o bn_sub.o bn_word.o bn_blind.o \ | ||
36 | bn_gcd.o bn_prime.o $(ERRC).o bn_sqr.o $(BN_MULW) bn_recp.o bn_mont.o \ | ||
37 | bn_mpi.o | ||
38 | 43 | ||
44 | LIBOBJ= bn_add.o bn_div.o bn_exp.o bn_lib.o bn_ctx.o bn_mul.o bn_mod.o \ | ||
45 | bn_print.o bn_rand.o bn_shift.o bn_word.o bn_blind.o \ | ||
46 | bn_kron.o bn_sqrt.o bn_gcd.o bn_prime.o bn_err.o bn_sqr.o $(BN_ASM) \ | ||
47 | bn_recp.o bn_mont.o bn_mpi.o bn_exp2.o | ||
39 | 48 | ||
40 | SRC= $(LIBSRC) | 49 | SRC= $(LIBSRC) |
41 | 50 | ||
@@ -49,21 +58,26 @@ top: | |||
49 | 58 | ||
50 | all: lib | 59 | all: lib |
51 | 60 | ||
52 | knuth: bn_knuth.c | 61 | bn_prime.h: bn_prime.pl |
53 | cc -pg -I.. -I../../include bn_knuth.c -o knuth $(LIB) #../../../libefence.a | 62 | $(PERL) bn_prime.pl >bn_prime.h |
54 | 63 | ||
55 | knuth.fast: bn_knuth.c | 64 | divtest: divtest.c ../../libcrypto.a |
56 | cc -pg -fast -I.. -I../../include bn_knuth.c -o knuth $(LIB) #../../../libefence.a | 65 | cc -I../../include divtest.c -o divtest ../../libcrypto.a |
57 | 66 | ||
67 | bnbug: bnbug.c ../../libcrypto.a top | ||
68 | cc -g -I../../include bnbug.c -o bnbug ../../libcrypto.a | ||
58 | 69 | ||
59 | lib: $(LIBOBJ) | 70 | lib: $(LIBOBJ) |
60 | $(AR) $(LIB) $(LIBOBJ) | 71 | $(AR) $(LIB) $(LIBOBJ) |
61 | sh $(TOP)/util/ranlib.sh $(LIB) | 72 | $(RANLIB) $(LIB) || echo Never mind. |
62 | @touch lib | 73 | @touch lib |
63 | 74 | ||
64 | # elf | 75 | # elf |
65 | asm/bn86-elf.o: asm/bn86unix.cpp | 76 | asm/bn86-elf.o: asm/bn86unix.cpp |
66 | $(CPP) -DELF asm/bn86unix.cpp | as -o asm/bn86-elf.o | 77 | $(CPP) -DELF -x c asm/bn86unix.cpp | as -o asm/bn86-elf.o |
78 | |||
79 | asm/co86-elf.o: asm/co86unix.cpp | ||
80 | $(CPP) -DELF -x c asm/co86unix.cpp | as -o asm/co86-elf.o | ||
67 | 81 | ||
68 | # solaris | 82 | # solaris |
69 | asm/bn86-sol.o: asm/bn86unix.cpp | 83 | asm/bn86-sol.o: asm/bn86unix.cpp |
@@ -71,40 +85,79 @@ asm/bn86-sol.o: asm/bn86unix.cpp | |||
71 | as -o asm/bn86-sol.o asm/bn86-sol.s | 85 | as -o asm/bn86-sol.o asm/bn86-sol.s |
72 | rm -f asm/bn86-sol.s | 86 | rm -f asm/bn86-sol.s |
73 | 87 | ||
88 | asm/co86-sol.o: asm/co86unix.cpp | ||
89 | $(CC) -E -DSOL asm/co86unix.cpp | sed 's/^#.*//' > asm/co86-sol.s | ||
90 | as -o asm/co86-sol.o asm/co86-sol.s | ||
91 | rm -f asm/co86-sol.s | ||
92 | |||
74 | # a.out | 93 | # a.out |
75 | asm/bn86-out.o: asm/bn86unix.cpp | 94 | asm/bn86-out.o: asm/bn86unix.cpp |
76 | $(CPP) -DOUT asm/bn86unix.cpp | as -o asm/bn86-out.o | 95 | $(CPP) -DOUT asm/bn86unix.cpp | as -o asm/bn86-out.o |
77 | 96 | ||
97 | asm/co86-out.o: asm/co86unix.cpp | ||
98 | $(CPP) -DOUT asm/co86unix.cpp | as -o asm/co86-out.o | ||
99 | |||
78 | # bsdi | 100 | # bsdi |
79 | asm/bn86bsdi.o: asm/bn86unix.cpp | 101 | asm/bn86bsdi.o: asm/bn86unix.cpp |
80 | $(CPP) -DBSDI asm/bn86unix.cpp | as -o asm/bn86bsdi.o | 102 | $(CPP) -DBSDI asm/bn86unix.cpp | sed 's/ :/:/' | as -o asm/bn86bsdi.o |
103 | |||
104 | asm/co86bsdi.o: asm/co86unix.cpp | ||
105 | $(CPP) -DBSDI asm/co86unix.cpp | sed 's/ :/:/' | as -o asm/co86bsdi.o | ||
106 | |||
107 | asm/bn86unix.cpp: asm/bn-586.pl ../perlasm/x86asm.pl | ||
108 | (cd asm; $(PERL) bn-586.pl cpp >bn86unix.cpp ) | ||
109 | |||
110 | asm/co86unix.cpp: asm/co-586.pl ../perlasm/x86asm.pl | ||
111 | (cd asm; $(PERL) co-586.pl cpp >co86unix.cpp ) | ||
81 | 112 | ||
82 | asm/bn86unix.cpp: | 113 | asm/sparcv8.o: asm/sparcv8.S |
83 | (cd asm; perl bn-586.pl cpp >bn86unix.cpp ) | 114 | |
115 | asm/sparcv8plus.o: asm/sparcv8plus.S | ||
116 | |||
117 | # Old GNU assembler doesn't understand V9 instructions, so we | ||
118 | # hire /usr/ccs/bin/as to do the job. Note that option is called | ||
119 | # *-gcc27, but even gcc 2>=8 users may experience similar problem | ||
120 | # if they didn't bother to upgrade GNU assembler. Such users should | ||
121 | # not choose this option, but be adviced to *remove* GNU assembler | ||
122 | # or upgrade it. | ||
123 | asm/sparcv8plus-gcc27.o: asm/sparcv8plus.S | ||
124 | $(CC) $(ASFLAGS) -E asm/sparcv8plus.S | \ | ||
125 | /usr/ccs/bin/as -xarch=v8plus - -o asm/sparcv8plus-gcc27.o | ||
126 | |||
127 | |||
128 | asm/ia64.o: asm/ia64.S | ||
129 | |||
130 | # Some compiler drivers (most notably HP-UX and Intel C++) don't | ||
131 | # understand .S extension:-( I wish I could pipe output from cc -E, | ||
132 | # but it's too compiler driver/ABI dependent to cover with a single | ||
133 | # rule... <appro@fy.chalmers.se> | ||
134 | asm/ia64-cpp.o: asm/ia64.S | ||
135 | $(CC) $(ASFLAGS) -E asm/ia64.S > /tmp/ia64.$$$$.s && \ | ||
136 | $(CC) $(ASFLAGS) -c -o asm/ia64-cpp.o /tmp/ia64.$$$$.s; \ | ||
137 | rm -f /tmp/ia64.$$$$.s | ||
84 | 138 | ||
85 | files: | 139 | files: |
86 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 140 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
87 | 141 | ||
88 | links: | 142 | links: |
89 | /bin/rm -f Makefile | 143 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
90 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 144 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
91 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 145 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
92 | $(TOP)/util/mklink.sh ../../test $(TEST) | 146 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
93 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
94 | 147 | ||
95 | install: | 148 | install: |
96 | @for i in $(EXHEADER) ; \ | 149 | @for i in $(EXHEADER) ; \ |
97 | do \ | 150 | do \ |
98 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 151 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
99 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 152 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
100 | done; | 153 | done; |
101 | 154 | ||
102 | exptest: | 155 | exptest: |
103 | /bin/rm -f exptest | 156 | rm -f exptest |
104 | gcc -I../../include -g2 -ggdb -o exptest exptest.c ../../libcrypto.a | 157 | gcc -I../../include -g2 -ggdb -o exptest exptest.c ../../libcrypto.a |
105 | 158 | ||
106 | div: | 159 | div: |
107 | /bin/rm -f a.out | 160 | rm -f a.out |
108 | gcc -I.. -g div.c ../../libcrypto.a | 161 | gcc -I.. -g div.c ../../libcrypto.a |
109 | 162 | ||
110 | tags: | 163 | tags: |
@@ -116,18 +169,171 @@ lint: | |||
116 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 169 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
117 | 170 | ||
118 | depend: | 171 | depend: |
119 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 172 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
120 | 173 | ||
121 | dclean: | 174 | dclean: |
122 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 175 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
123 | mv -f Makefile.new $(MAKEFILE) | 176 | mv -f Makefile.new $(MAKEFILE) |
124 | 177 | ||
125 | clean: | 178 | clean: |
126 | /bin/rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff bn_mulw.s | 179 | rm -f asm/co86unix.cpp asm/bn86unix.cpp *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff bn_asm.s |
127 | |||
128 | errors: | ||
129 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).org # special case .org | ||
130 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h | ||
131 | perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c | ||
132 | 180 | ||
133 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 181 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
182 | |||
183 | bn_add.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
184 | bn_add.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
185 | bn_add.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
186 | bn_add.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
187 | bn_add.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
188 | bn_add.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
189 | bn_add.o: ../cryptlib.h bn_add.c bn_lcl.h | ||
190 | bn_asm.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
191 | bn_asm.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
192 | bn_asm.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
193 | bn_asm.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
194 | bn_asm.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
195 | bn_asm.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
196 | bn_asm.o: ../cryptlib.h bn_asm.c bn_lcl.h | ||
197 | bn_blind.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
198 | bn_blind.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
199 | bn_blind.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
200 | bn_blind.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
201 | bn_blind.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
202 | bn_blind.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
203 | bn_blind.o: ../cryptlib.h bn_blind.c bn_lcl.h | ||
204 | bn_ctx.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
205 | bn_ctx.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
206 | bn_ctx.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
207 | bn_ctx.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
208 | bn_ctx.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
209 | bn_ctx.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
210 | bn_ctx.o: ../cryptlib.h bn_ctx.c bn_lcl.h | ||
211 | bn_div.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
212 | bn_div.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
213 | bn_div.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
214 | bn_div.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
215 | bn_div.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
216 | bn_div.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
217 | bn_div.o: ../cryptlib.h bn_div.c bn_lcl.h | ||
218 | bn_err.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
219 | bn_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
220 | bn_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
221 | bn_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
222 | bn_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
223 | bn_err.o: ../../include/openssl/symhacks.h bn_err.c | ||
224 | bn_exp.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
225 | bn_exp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
226 | bn_exp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
227 | bn_exp.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
228 | bn_exp.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
229 | bn_exp.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
230 | bn_exp.o: ../cryptlib.h bn_exp.c bn_lcl.h | ||
231 | bn_exp2.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
232 | bn_exp2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
233 | bn_exp2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
234 | bn_exp2.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
235 | bn_exp2.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
236 | bn_exp2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
237 | bn_exp2.o: ../cryptlib.h bn_exp2.c bn_lcl.h | ||
238 | bn_gcd.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
239 | bn_gcd.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
240 | bn_gcd.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
241 | bn_gcd.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
242 | bn_gcd.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
243 | bn_gcd.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
244 | bn_gcd.o: ../cryptlib.h bn_gcd.c bn_lcl.h | ||
245 | bn_kron.o: ../../include/openssl/bn.h ../../include/openssl/e_os2.h | ||
246 | bn_kron.o: ../../include/openssl/opensslconf.h bn_kron.c bn_lcl.h | ||
247 | bn_lib.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
248 | bn_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
249 | bn_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
250 | bn_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
251 | bn_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
252 | bn_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
253 | bn_lib.o: ../cryptlib.h bn_lcl.h bn_lib.c | ||
254 | bn_mod.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
255 | bn_mod.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
256 | bn_mod.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
257 | bn_mod.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
258 | bn_mod.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
259 | bn_mod.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
260 | bn_mod.o: ../cryptlib.h bn_lcl.h bn_mod.c | ||
261 | bn_mont.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
262 | bn_mont.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
263 | bn_mont.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
264 | bn_mont.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
265 | bn_mont.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
266 | bn_mont.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
267 | bn_mont.o: ../cryptlib.h bn_lcl.h bn_mont.c | ||
268 | bn_mpi.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
269 | bn_mpi.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
270 | bn_mpi.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
271 | bn_mpi.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
272 | bn_mpi.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
273 | bn_mpi.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
274 | bn_mpi.o: ../cryptlib.h bn_lcl.h bn_mpi.c | ||
275 | bn_mul.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
276 | bn_mul.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
277 | bn_mul.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
278 | bn_mul.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
279 | bn_mul.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
280 | bn_mul.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
281 | bn_mul.o: ../cryptlib.h bn_lcl.h bn_mul.c | ||
282 | bn_prime.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
283 | bn_prime.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
284 | bn_prime.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
285 | bn_prime.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
286 | bn_prime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
287 | bn_prime.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
288 | bn_prime.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
289 | bn_prime.o: ../cryptlib.h bn_lcl.h bn_prime.c bn_prime.h | ||
290 | bn_print.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
291 | bn_print.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
292 | bn_print.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
293 | bn_print.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
294 | bn_print.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
295 | bn_print.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
296 | bn_print.o: ../cryptlib.h bn_lcl.h bn_print.c | ||
297 | bn_rand.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
298 | bn_rand.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
299 | bn_rand.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
300 | bn_rand.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
301 | bn_rand.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
302 | bn_rand.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
303 | bn_rand.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
304 | bn_rand.o: ../cryptlib.h bn_lcl.h bn_rand.c | ||
305 | bn_recp.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
306 | bn_recp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
307 | bn_recp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
308 | bn_recp.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
309 | bn_recp.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
310 | bn_recp.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
311 | bn_recp.o: ../cryptlib.h bn_lcl.h bn_recp.c | ||
312 | bn_shift.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
313 | bn_shift.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
314 | bn_shift.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
315 | bn_shift.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
316 | bn_shift.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
317 | bn_shift.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
318 | bn_shift.o: ../cryptlib.h bn_lcl.h bn_shift.c | ||
319 | bn_sqr.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
320 | bn_sqr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
321 | bn_sqr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
322 | bn_sqr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
323 | bn_sqr.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
324 | bn_sqr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
325 | bn_sqr.o: ../cryptlib.h bn_lcl.h bn_sqr.c | ||
326 | bn_sqrt.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
327 | bn_sqrt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
328 | bn_sqrt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
329 | bn_sqrt.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
330 | bn_sqrt.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
331 | bn_sqrt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
332 | bn_sqrt.o: ../cryptlib.h bn_lcl.h bn_sqrt.c | ||
333 | bn_word.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
334 | bn_word.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
335 | bn_word.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
336 | bn_word.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
337 | bn_word.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
338 | bn_word.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
339 | bn_word.o: ../cryptlib.h bn_lcl.h bn_word.c | ||
diff --git a/src/lib/libcrypto/buffer/Makefile.ssl b/src/lib/libcrypto/buffer/Makefile.ssl index a5f150e523..1ee63940d0 100644 --- a/src/lib/libcrypto/buffer/Makefile.ssl +++ b/src/lib/libcrypto/buffer/Makefile.ssl | |||
@@ -5,25 +5,26 @@ | |||
5 | DIR= buffer | 5 | DIR= buffer |
6 | TOP= ../.. | 6 | TOP= ../.. |
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
14 | AR= ar r | 17 | AR= ar r |
15 | 18 | ||
16 | CFLAGS= $(INCLUDES) $(CFLAG) | 19 | CFLAGS= $(INCLUDES) $(CFLAG) |
17 | 20 | ||
18 | ERR=buffer | ||
19 | ERRC=buf_err | ||
20 | GENERAL=Makefile | 21 | GENERAL=Makefile |
21 | TEST= | 22 | TEST= |
22 | APPS= | 23 | APPS= |
23 | 24 | ||
24 | LIB=$(TOP)/libcrypto.a | 25 | LIB=$(TOP)/libcrypto.a |
25 | LIBSRC= buffer.c $(ERRC).c | 26 | LIBSRC= buffer.c buf_err.c |
26 | LIBOBJ= buffer.o $(ERRC).o | 27 | LIBOBJ= buffer.o buf_err.o |
27 | 28 | ||
28 | SRC= $(LIBSRC) | 29 | SRC= $(LIBSRC) |
29 | 30 | ||
@@ -39,24 +40,23 @@ all: lib | |||
39 | 40 | ||
40 | lib: $(LIBOBJ) | 41 | lib: $(LIBOBJ) |
41 | $(AR) $(LIB) $(LIBOBJ) | 42 | $(AR) $(LIB) $(LIBOBJ) |
42 | sh $(TOP)/util/ranlib.sh $(LIB) | 43 | $(RANLIB) $(LIB) || echo Never mind. |
43 | @touch lib | 44 | @touch lib |
44 | 45 | ||
45 | files: | 46 | files: |
46 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 47 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
47 | 48 | ||
48 | links: | 49 | links: |
49 | /bin/rm -f Makefile | 50 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
50 | $(TOP)/util/point.sh Makefile.ssl Makefile; | 51 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
51 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 52 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
52 | $(TOP)/util/mklink.sh ../../test $(TEST) | 53 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
53 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
54 | 54 | ||
55 | install: | 55 | install: |
56 | @for i in $(EXHEADER) ; \ | 56 | @for i in $(EXHEADER) ; \ |
57 | do \ | 57 | do \ |
58 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 58 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
59 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 59 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
60 | done; | 60 | done; |
61 | 61 | ||
62 | tags: | 62 | tags: |
@@ -68,17 +68,27 @@ lint: | |||
68 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
69 | 69 | ||
70 | depend: | 70 | depend: |
71 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
72 | 72 | ||
73 | dclean: | 73 | dclean: |
74 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
75 | mv -f Makefile.new $(MAKEFILE) | 75 | mv -f Makefile.new $(MAKEFILE) |
76 | 76 | ||
77 | clean: | 77 | clean: |
78 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 78 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
79 | |||
80 | errors: | ||
81 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h | ||
82 | perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c | ||
83 | 79 | ||
84 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
81 | |||
82 | buf_err.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
83 | buf_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
84 | buf_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
85 | buf_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
86 | buf_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
87 | buf_err.o: ../../include/openssl/symhacks.h buf_err.c | ||
88 | buffer.o: ../../e_os.h ../../include/openssl/bio.h | ||
89 | buffer.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
90 | buffer.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
91 | buffer.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
92 | buffer.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
93 | buffer.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
94 | buffer.o: ../cryptlib.h buffer.c | ||
diff --git a/src/lib/libcrypto/cast/Makefile.ssl b/src/lib/libcrypto/cast/Makefile.ssl index 0143827ae5..75d97b0fbe 100644 --- a/src/lib/libcrypto/cast/Makefile.ssl +++ b/src/lib/libcrypto/cast/Makefile.ssl | |||
@@ -8,9 +8,12 @@ CC= cc | |||
8 | CPP= $(CC) -E | 8 | CPP= $(CC) -E |
9 | INCLUDES= | 9 | INCLUDES= |
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 | AR= ar r | 18 | AR= ar r |
16 | 19 | ||
@@ -45,12 +48,12 @@ all: lib | |||
45 | 48 | ||
46 | lib: $(LIBOBJ) | 49 | lib: $(LIBOBJ) |
47 | $(AR) $(LIB) $(LIBOBJ) | 50 | $(AR) $(LIB) $(LIBOBJ) |
48 | sh $(TOP)/util/ranlib.sh $(LIB) | 51 | $(RANLIB) $(LIB) || echo Never mind. |
49 | @touch lib | 52 | @touch lib |
50 | 53 | ||
51 | # elf | 54 | # elf |
52 | asm/cx86-elf.o: asm/cx86unix.cpp | 55 | asm/cx86-elf.o: asm/cx86unix.cpp |
53 | $(CPP) -DELF asm/cx86unix.cpp | as -o asm/cx86-elf.o | 56 | $(CPP) -DELF -x c asm/cx86unix.cpp | as -o asm/cx86-elf.o |
54 | 57 | ||
55 | # solaris | 58 | # solaris |
56 | asm/cx86-sol.o: asm/cx86unix.cpp | 59 | asm/cx86-sol.o: asm/cx86unix.cpp |
@@ -64,26 +67,25 @@ asm/cx86-out.o: asm/cx86unix.cpp | |||
64 | 67 | ||
65 | # bsdi | 68 | # bsdi |
66 | asm/cx86bsdi.o: asm/cx86unix.cpp | 69 | asm/cx86bsdi.o: asm/cx86unix.cpp |
67 | $(CPP) -DBSDI asm/cx86unix.cpp | as -o asm/cx86bsdi.o | 70 | $(CPP) -DBSDI asm/cx86unix.cpp | sed 's/ :/:/' | as -o asm/cx86bsdi.o |
68 | 71 | ||
69 | asm/cx86unix.cpp: | 72 | asm/cx86unix.cpp: asm/cast-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl |
70 | (cd asm; perl cast-586.pl cpp >cx86unix.cpp) | 73 | (cd asm; $(PERL) cast-586.pl cpp $(PROCESSOR) >cx86unix.cpp) |
71 | 74 | ||
72 | files: | 75 | files: |
73 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 76 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
74 | 77 | ||
75 | links: | 78 | links: |
76 | /bin/rm -f Makefile | 79 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
77 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 80 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
78 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 81 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
79 | $(TOP)/util/mklink.sh ../../test $(TEST) | 82 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
80 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
81 | 83 | ||
82 | install: | 84 | install: |
83 | @for i in $(EXHEADER) ; \ | 85 | @for i in $(EXHEADER) ; \ |
84 | do \ | 86 | do \ |
85 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 87 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
86 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 88 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
87 | done; | 89 | done; |
88 | 90 | ||
89 | tags: | 91 | tags: |
@@ -95,15 +97,29 @@ lint: | |||
95 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 97 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
96 | 98 | ||
97 | depend: | 99 | depend: |
98 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 100 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
99 | 101 | ||
100 | dclean: | 102 | dclean: |
101 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 103 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
102 | mv -f Makefile.new $(MAKEFILE) | 104 | mv -f Makefile.new $(MAKEFILE) |
103 | 105 | ||
104 | clean: | 106 | clean: |
105 | /bin/rm -f *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 107 | rm -f asm/cx86unix.cpp *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
106 | |||
107 | errors: | ||
108 | 108 | ||
109 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 109 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
110 | |||
111 | c_cfb64.o: ../../e_os.h ../../include/openssl/cast.h | ||
112 | c_cfb64.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
113 | c_cfb64.o: c_cfb64.c cast_lcl.h | ||
114 | c_ecb.o: ../../e_os.h ../../include/openssl/cast.h | ||
115 | c_ecb.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
116 | c_ecb.o: ../../include/openssl/opensslv.h c_ecb.c cast_lcl.h | ||
117 | c_enc.o: ../../e_os.h ../../include/openssl/cast.h | ||
118 | c_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
119 | c_enc.o: c_enc.c cast_lcl.h | ||
120 | c_ofb64.o: ../../e_os.h ../../include/openssl/cast.h | ||
121 | c_ofb64.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
122 | c_ofb64.o: c_ofb64.c cast_lcl.h | ||
123 | c_skey.o: ../../e_os.h ../../include/openssl/cast.h | ||
124 | c_skey.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
125 | c_skey.o: c_skey.c cast_lcl.h cast_s.h | ||
diff --git a/src/lib/libcrypto/comp/Makefile.ssl b/src/lib/libcrypto/comp/Makefile.ssl index d946bcbafa..11d728eca9 100644 --- a/src/lib/libcrypto/comp/Makefile.ssl +++ b/src/lib/libcrypto/comp/Makefile.ssl | |||
@@ -5,13 +5,14 @@ | |||
5 | DIR= comp | 5 | DIR= comp |
6 | TOP= ../.. | 6 | TOP= ../.. |
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | 10 | INSTALL_PREFIX= |
11 | OPENSSLDIR= /usr/local/ssl | 11 | OPENSSLDIR= /usr/local/ssl |
12 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
13 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
14 | MAKEDEPEND= $(TOP)/util/domd $(TOP) | 14 | MAKEDEPPROG= makedepend |
15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
15 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
16 | AR= ar r | 17 | AR= ar r |
17 | 18 | ||
@@ -22,10 +23,10 @@ TEST= | |||
22 | APPS= | 23 | APPS= |
23 | 24 | ||
24 | LIB=$(TOP)/libcrypto.a | 25 | LIB=$(TOP)/libcrypto.a |
25 | LIBSRC= comp_lib.c \ | 26 | LIBSRC= comp_lib.c comp_err.c \ |
26 | c_rle.c c_zlib.c | 27 | c_rle.c c_zlib.c |
27 | 28 | ||
28 | LIBOBJ= comp_lib.o \ | 29 | LIBOBJ= comp_lib.o comp_err.o \ |
29 | c_rle.o c_zlib.o | 30 | c_rle.o c_zlib.o |
30 | 31 | ||
31 | SRC= $(LIBSRC) | 32 | SRC= $(LIBSRC) |
@@ -42,7 +43,7 @@ all: lib | |||
42 | 43 | ||
43 | lib: $(LIBOBJ) | 44 | lib: $(LIBOBJ) |
44 | $(AR) $(LIB) $(LIBOBJ) | 45 | $(AR) $(LIB) $(LIBOBJ) |
45 | $(RANLIB) $(LIB) | 46 | $(RANLIB) $(LIB) || echo Never mind. |
46 | @touch lib | 47 | @touch lib |
47 | 48 | ||
48 | files: | 49 | files: |
@@ -83,17 +84,31 @@ clean: | |||
83 | 84 | ||
84 | c_rle.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 85 | c_rle.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
85 | c_rle.o: ../../include/openssl/bn.h ../../include/openssl/comp.h | 86 | c_rle.o: ../../include/openssl/bn.h ../../include/openssl/comp.h |
86 | c_rle.o: ../../include/openssl/crypto.h ../../include/openssl/objects.h | 87 | c_rle.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
88 | c_rle.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
87 | c_rle.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 89 | c_rle.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
88 | c_rle.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 90 | c_rle.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
91 | c_rle.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h c_rle.c | ||
89 | c_zlib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 92 | c_zlib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
90 | c_zlib.o: ../../include/openssl/bn.h ../../include/openssl/comp.h | 93 | c_zlib.o: ../../include/openssl/bn.h ../../include/openssl/comp.h |
91 | c_zlib.o: ../../include/openssl/crypto.h ../../include/openssl/objects.h | 94 | c_zlib.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
95 | c_zlib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
92 | c_zlib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 96 | c_zlib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
93 | c_zlib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 97 | c_zlib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
98 | c_zlib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
99 | c_zlib.o: c_zlib.c | ||
100 | comp_err.o: ../../include/openssl/bio.h ../../include/openssl/comp.h | ||
101 | comp_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
102 | comp_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
103 | comp_err.o: ../../include/openssl/opensslconf.h | ||
104 | comp_err.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
105 | comp_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
106 | comp_err.o: comp_err.c | ||
94 | comp_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 107 | comp_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
95 | comp_lib.o: ../../include/openssl/bn.h ../../include/openssl/comp.h | 108 | comp_lib.o: ../../include/openssl/bn.h ../../include/openssl/comp.h |
96 | comp_lib.o: ../../include/openssl/crypto.h ../../include/openssl/objects.h | 109 | comp_lib.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
110 | comp_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
97 | comp_lib.o: ../../include/openssl/opensslconf.h | 111 | comp_lib.o: ../../include/openssl/opensslconf.h |
98 | comp_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 112 | comp_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
99 | comp_lib.o: ../../include/openssl/stack.h | 113 | comp_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
114 | comp_lib.o: ../../include/openssl/symhacks.h comp_lib.c | ||
diff --git a/src/lib/libcrypto/conf/Makefile.ssl b/src/lib/libcrypto/conf/Makefile.ssl index 00e917aa44..4a85c07b55 100644 --- a/src/lib/libcrypto/conf/Makefile.ssl +++ b/src/lib/libcrypto/conf/Makefile.ssl | |||
@@ -5,31 +5,34 @@ | |||
5 | DIR= conf | 5 | DIR= conf |
6 | TOP= ../.. | 6 | TOP= ../.. |
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
14 | AR= ar r | 17 | AR= ar r |
15 | 18 | ||
16 | CFLAGS= $(INCLUDES) $(CFLAG) | 19 | CFLAGS= $(INCLUDES) $(CFLAG) |
17 | 20 | ||
18 | ERR=conf | ||
19 | ERRC=conf_err | ||
20 | GENERAL=Makefile | 21 | GENERAL=Makefile |
21 | TEST= | 22 | TEST= |
22 | APPS= | 23 | APPS= |
23 | 24 | ||
24 | LIB=$(TOP)/libcrypto.a | 25 | LIB=$(TOP)/libcrypto.a |
25 | LIBSRC= conf.c $(ERRC).c | 26 | LIBSRC= conf_err.c conf_lib.c conf_api.c conf_def.c conf_mod.c \ |
27 | conf_mall.c conf_sap.c | ||
26 | 28 | ||
27 | LIBOBJ= conf.o $(ERRC).o | 29 | LIBOBJ= conf_err.o conf_lib.o conf_api.o conf_def.o conf_mod.o \ |
30 | conf_mall.o conf_sap.o | ||
28 | 31 | ||
29 | SRC= $(LIBSRC) | 32 | SRC= $(LIBSRC) |
30 | 33 | ||
31 | EXHEADER= conf.h | 34 | EXHEADER= conf.h conf_api.h |
32 | HEADER= conf_lcl.h $(EXHEADER) | 35 | HEADER= conf_def.h $(EXHEADER) |
33 | 36 | ||
34 | ALL= $(GENERAL) $(SRC) $(HEADER) | 37 | ALL= $(GENERAL) $(SRC) $(HEADER) |
35 | 38 | ||
@@ -40,24 +43,23 @@ all: lib | |||
40 | 43 | ||
41 | lib: $(LIBOBJ) | 44 | lib: $(LIBOBJ) |
42 | $(AR) $(LIB) $(LIBOBJ) | 45 | $(AR) $(LIB) $(LIBOBJ) |
43 | sh $(TOP)/util/ranlib.sh $(LIB) | 46 | $(RANLIB) $(LIB) || echo Never mind. |
44 | @touch lib | 47 | @touch lib |
45 | 48 | ||
46 | files: | 49 | files: |
47 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 50 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
48 | 51 | ||
49 | links: | 52 | links: |
50 | /bin/rm -f Makefile | 53 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
51 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 54 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
52 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 55 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
53 | $(TOP)/util/mklink.sh ../../test $(TEST) | 56 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
54 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
55 | 57 | ||
56 | install: | 58 | install: |
57 | @for i in $(EXHEADER) ; \ | 59 | @for i in $(EXHEADER) ; \ |
58 | do \ | 60 | do \ |
59 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 61 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
60 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 62 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
61 | done; | 63 | done; |
62 | 64 | ||
63 | tags: | 65 | tags: |
@@ -69,17 +71,91 @@ lint: | |||
69 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 71 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
70 | 72 | ||
71 | depend: | 73 | depend: |
72 | $(MAKEDEPEND) $(INCLUDES) $(LIBSRC) | 74 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(LIBSRC) |
73 | 75 | ||
74 | dclean: | 76 | dclean: |
75 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 77 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
76 | mv -f Makefile.new $(MAKEFILE) | 78 | mv -f Makefile.new $(MAKEFILE) |
77 | 79 | ||
78 | clean: | 80 | clean: |
79 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 81 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
80 | |||
81 | errors: | ||
82 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h | ||
83 | perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c | ||
84 | 82 | ||
85 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 83 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
84 | |||
85 | conf_api.o: ../../e_os.h ../../include/openssl/bio.h | ||
86 | conf_api.o: ../../include/openssl/conf.h ../../include/openssl/conf_api.h | ||
87 | conf_api.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
88 | conf_api.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
89 | conf_api.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
90 | conf_api.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
91 | conf_api.o: conf_api.c | ||
92 | conf_def.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
93 | conf_def.o: ../../include/openssl/conf.h ../../include/openssl/conf_api.h | ||
94 | conf_def.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
95 | conf_def.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
96 | conf_def.o: ../../include/openssl/opensslconf.h | ||
97 | conf_def.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
98 | conf_def.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
99 | conf_def.o: conf_def.c conf_def.h | ||
100 | conf_err.o: ../../include/openssl/bio.h ../../include/openssl/conf.h | ||
101 | conf_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
102 | conf_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
103 | conf_err.o: ../../include/openssl/opensslconf.h | ||
104 | conf_err.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
105 | conf_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
106 | conf_err.o: conf_err.c | ||
107 | conf_lib.o: ../../include/openssl/bio.h ../../include/openssl/conf.h | ||
108 | conf_lib.o: ../../include/openssl/conf_api.h ../../include/openssl/crypto.h | ||
109 | conf_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
110 | conf_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
111 | conf_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
112 | conf_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
113 | conf_lib.o: conf_lib.c | ||
114 | conf_mall.o: ../../e_os.h ../../include/openssl/asn1.h | ||
115 | conf_mall.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
116 | conf_mall.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
117 | conf_mall.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
118 | conf_mall.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h | ||
119 | conf_mall.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
120 | conf_mall.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
121 | conf_mall.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
122 | conf_mall.o: ../../include/openssl/objects.h | ||
123 | conf_mall.o: ../../include/openssl/opensslconf.h | ||
124 | conf_mall.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
125 | conf_mall.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
126 | conf_mall.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
127 | conf_mall.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
128 | conf_mall.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
129 | conf_mall.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
130 | conf_mall.o: ../cryptlib.h conf_mall.c | ||
131 | conf_mod.o: ../../e_os.h ../../include/openssl/asn1.h | ||
132 | conf_mod.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
133 | conf_mod.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
134 | conf_mod.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
135 | conf_mod.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h | ||
136 | conf_mod.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
137 | conf_mod.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
138 | conf_mod.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
139 | conf_mod.o: ../../include/openssl/opensslconf.h | ||
140 | conf_mod.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
141 | conf_mod.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
142 | conf_mod.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
143 | conf_mod.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
144 | conf_mod.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
145 | conf_mod.o: ../cryptlib.h conf_mod.c | ||
146 | conf_sap.o: ../../e_os.h ../../include/openssl/asn1.h | ||
147 | conf_sap.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
148 | conf_sap.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
149 | conf_sap.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
150 | conf_sap.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h | ||
151 | conf_sap.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
152 | conf_sap.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
153 | conf_sap.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
154 | conf_sap.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
155 | conf_sap.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
156 | conf_sap.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
157 | conf_sap.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
158 | conf_sap.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
159 | conf_sap.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
160 | conf_sap.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
161 | conf_sap.o: ../cryptlib.h conf_sap.c | ||
diff --git a/src/lib/libcrypto/des/Makefile.ssl b/src/lib/libcrypto/des/Makefile.ssl index 78b5189ee3..c1080b000f 100644 --- a/src/lib/libcrypto/des/Makefile.ssl +++ b/src/lib/libcrypto/des/Makefile.ssl | |||
@@ -6,20 +6,24 @@ DIR= des | |||
6 | TOP= ../.. | 6 | TOP= ../.. |
7 | CC= cc | 7 | CC= cc |
8 | CPP= $(CC) -E | 8 | CPP= $(CC) -E |
9 | INCLUDES= | 9 | INCLUDES=-I$(TOP) -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 | AR= ar r | 18 | AR= ar r |
19 | RANLIB= ranlib | ||
16 | DES_ENC= des_enc.o fcrypt_b.o | 20 | DES_ENC= des_enc.o fcrypt_b.o |
17 | # or use | 21 | # or use |
18 | #DES_ENC= dx86-elf.o yx86-elf.o | 22 | #DES_ENC= dx86-elf.o yx86-elf.o |
19 | 23 | ||
20 | CFLAGS= $(INCLUDES) $(CFLAG) | 24 | CFLAGS= $(INCLUDES) $(CFLAG) |
21 | 25 | ||
22 | GENERAL=Makefile des.org des_locl.org | 26 | GENERAL=Makefile |
23 | TEST=destest.c | 27 | TEST=destest.c |
24 | APPS= | 28 | APPS= |
25 | 29 | ||
@@ -27,22 +31,24 @@ LIB=$(TOP)/libcrypto.a | |||
27 | LIBSRC= cbc_cksm.c cbc_enc.c cfb64enc.c cfb_enc.c \ | 31 | LIBSRC= cbc_cksm.c cbc_enc.c cfb64enc.c cfb_enc.c \ |
28 | ecb3_enc.c ecb_enc.c enc_read.c enc_writ.c \ | 32 | ecb3_enc.c ecb_enc.c enc_read.c enc_writ.c \ |
29 | fcrypt.c ofb64enc.c ofb_enc.c pcbc_enc.c \ | 33 | fcrypt.c ofb64enc.c ofb_enc.c pcbc_enc.c \ |
30 | qud_cksm.c rand_key.c read_pwd.c rpc_enc.c set_key.c \ | 34 | qud_cksm.c rand_key.c rpc_enc.c set_key.c \ |
31 | des_enc.c fcrypt_b.c read2pwd.c \ | 35 | des_enc.c fcrypt_b.c \ |
32 | fcrypt.c xcbc_enc.c \ | 36 | xcbc_enc.c \ |
33 | str2key.c cfb64ede.c ofb64ede.c supp.c | 37 | str2key.c cfb64ede.c ofb64ede.c ede_cbcm_enc.c des_old.c des_old2.c \ |
38 | read2pwd.c | ||
34 | 39 | ||
35 | LIBOBJ= set_key.o ecb_enc.o cbc_enc.o \ | 40 | LIBOBJ= set_key.o ecb_enc.o cbc_enc.o \ |
36 | ecb3_enc.o cfb64enc.o cfb64ede.o cfb_enc.o ofb64ede.o \ | 41 | ecb3_enc.o cfb64enc.o cfb64ede.o cfb_enc.o ofb64ede.o \ |
37 | enc_read.o enc_writ.o ofb64enc.o \ | 42 | enc_read.o enc_writ.o ofb64enc.o \ |
38 | ofb_enc.o str2key.o pcbc_enc.o qud_cksm.o rand_key.o \ | 43 | ofb_enc.o str2key.o pcbc_enc.o qud_cksm.o rand_key.o \ |
39 | ${DES_ENC} read2pwd.o \ | 44 | ${DES_ENC} \ |
40 | fcrypt.o xcbc_enc.o read_pwd.o rpc_enc.o cbc_cksm.o supp.o | 45 | fcrypt.o xcbc_enc.o rpc_enc.o cbc_cksm.o \ |
46 | ede_cbcm_enc.o des_old.o des_old2.o read2pwd.o | ||
41 | 47 | ||
42 | SRC= $(LIBSRC) | 48 | SRC= $(LIBSRC) |
43 | 49 | ||
44 | EXHEADER= des.h | 50 | EXHEADER= des.h des_old.h |
45 | HEADER= des_locl.h rpc_des.h podd.h sk.h spr.h des_ver.h $(EXHEADER) | 51 | HEADER= des_locl.h rpc_des.h spr.h des_ver.h $(EXHEADER) |
46 | 52 | ||
47 | ALL= $(GENERAL) $(SRC) $(HEADER) | 53 | ALL= $(GENERAL) $(SRC) $(HEADER) |
48 | 54 | ||
@@ -53,15 +59,18 @@ all: lib | |||
53 | 59 | ||
54 | lib: $(LIBOBJ) | 60 | lib: $(LIBOBJ) |
55 | $(AR) $(LIB) $(LIBOBJ) | 61 | $(AR) $(LIB) $(LIBOBJ) |
56 | sh $(TOP)/util/ranlib.sh $(LIB) | 62 | $(RANLIB) $(LIB) || echo Never mind. |
57 | @touch lib | 63 | @touch lib |
58 | 64 | ||
65 | des: des.o cbc3_enc.o lib | ||
66 | $(CC) $(CFLAGS) -o des des.o cbc3_enc.o $(LIB) | ||
67 | |||
59 | # elf | 68 | # elf |
60 | asm/dx86-elf.o: asm/dx86unix.cpp | 69 | asm/dx86-elf.o: asm/dx86unix.cpp |
61 | $(CPP) -DELF asm/dx86unix.cpp | as -o asm/dx86-elf.o | 70 | $(CPP) -DELF -x c asm/dx86unix.cpp | as -o asm/dx86-elf.o |
62 | 71 | ||
63 | asm/yx86-elf.o: asm/yx86unix.cpp | 72 | asm/yx86-elf.o: asm/yx86unix.cpp |
64 | $(CPP) -DELF asm/yx86unix.cpp | as -o asm/yx86-elf.o | 73 | $(CPP) -DELF -x c asm/yx86unix.cpp | as -o asm/yx86-elf.o |
65 | 74 | ||
66 | # solaris | 75 | # solaris |
67 | asm/dx86-sol.o: asm/dx86unix.cpp | 76 | asm/dx86-sol.o: asm/dx86unix.cpp |
@@ -83,38 +92,34 @@ asm/yx86-out.o: asm/yx86unix.cpp | |||
83 | 92 | ||
84 | # bsdi | 93 | # bsdi |
85 | asm/dx86bsdi.o: asm/dx86unix.cpp | 94 | asm/dx86bsdi.o: asm/dx86unix.cpp |
86 | $(CPP) -DBSDI asm/dx86unix.cpp | as -o asm/dx86bsdi.o | 95 | $(CPP) -DBSDI asm/dx86unix.cpp | sed 's/ :/:/' | as -o asm/dx86bsdi.o |
87 | 96 | ||
88 | asm/yx86bsdi.o: asm/yx86unix.cpp | 97 | asm/yx86bsdi.o: asm/yx86unix.cpp |
89 | $(CPP) -DBSDI asm/yx86unix.cpp | as -o asm/yx86bsdi.o | 98 | $(CPP) -DBSDI asm/yx86unix.cpp | sed 's/ :/:/' | as -o asm/yx86bsdi.o |
90 | 99 | ||
91 | asm/dx86unix.cpp: | 100 | asm/dx86unix.cpp: asm/des-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl |
92 | (cd asm; perl des-586.pl cpp >dx86unix.cpp) | 101 | (cd asm; $(PERL) des-586.pl cpp >dx86unix.cpp) |
93 | 102 | ||
94 | asm/yx86unix.cpp: | 103 | asm/yx86unix.cpp: asm/crypt586.pl ../perlasm/x86asm.pl |
95 | (cd asm; perl crypt586.pl cpp >yx86unix.cpp) | 104 | (cd asm; $(PERL) crypt586.pl cpp >yx86unix.cpp) |
96 | 105 | ||
97 | files: | 106 | files: |
98 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 107 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
99 | 108 | ||
100 | links: | 109 | links: |
101 | /bin/rm -f Makefile | 110 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
102 | $(TOP)/util/point.sh Makefile.ssl Makefile | 111 | @$(TOP)/util/point.sh ../../perlasm asm/perlasm |
103 | /bin/rm -f des.doc | 112 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
104 | /bin/rm -fr asm/perlasm | 113 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
105 | $(TOP)/util/point.sh ../../perlasm asm/perlasm | 114 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
106 | $(TOP)/util/point.sh ../../doc/des.doc des.doc | ||
107 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | ||
108 | $(TOP)/util/mklink.sh ../../test $(TEST) | ||
109 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
110 | 115 | ||
111 | install: installs | 116 | install: installs |
112 | 117 | ||
113 | installs: | 118 | installs: |
114 | @for i in $(EXHEADER) ; \ | 119 | @for i in $(EXHEADER) ; \ |
115 | do \ | 120 | do \ |
116 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 121 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
117 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 122 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
118 | done; | 123 | done; |
119 | 124 | ||
120 | tags: | 125 | tags: |
@@ -126,15 +131,195 @@ lint: | |||
126 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 131 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
127 | 132 | ||
128 | depend: | 133 | depend: |
129 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 134 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
130 | 135 | ||
131 | dclean: | 136 | dclean: |
132 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 137 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
133 | mv -f Makefile.new $(MAKEFILE) | 138 | mv -f Makefile.new $(MAKEFILE) |
134 | 139 | ||
135 | clean: | 140 | clean: |
136 | /bin/rm -f *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 141 | rm -f asm/dx86unix.cpp asm/yx86unix.cpp *.o asm/*.o *.obj des lib tags core .pure .nfs* *.old *.bak fluff |
137 | |||
138 | errors: | ||
139 | 142 | ||
140 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 143 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
144 | |||
145 | cbc_cksm.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
146 | cbc_cksm.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
147 | cbc_cksm.o: ../../include/openssl/opensslconf.h | ||
148 | cbc_cksm.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
149 | cbc_cksm.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
150 | cbc_cksm.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
151 | cbc_cksm.o: cbc_cksm.c des_locl.h | ||
152 | cbc_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
153 | cbc_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
154 | cbc_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
155 | cbc_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
156 | cbc_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
157 | cbc_enc.o: ../../include/openssl/ui_compat.h cbc_enc.c des_locl.h ncbc_enc.c | ||
158 | cfb64ede.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
159 | cfb64ede.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
160 | cfb64ede.o: ../../include/openssl/opensslconf.h | ||
161 | cfb64ede.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
162 | cfb64ede.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
163 | cfb64ede.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
164 | cfb64ede.o: cfb64ede.c des_locl.h | ||
165 | cfb64enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
166 | cfb64enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
167 | cfb64enc.o: ../../include/openssl/opensslconf.h | ||
168 | cfb64enc.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
169 | cfb64enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
170 | cfb64enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
171 | cfb64enc.o: cfb64enc.c des_locl.h | ||
172 | cfb_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
173 | cfb_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
174 | cfb_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
175 | cfb_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
176 | cfb_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
177 | cfb_enc.o: ../../include/openssl/ui_compat.h cfb_enc.c des_locl.h | ||
178 | des_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
179 | des_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
180 | des_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
181 | des_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
182 | des_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
183 | des_enc.o: ../../include/openssl/ui_compat.h des_enc.c des_locl.h ncbc_enc.c | ||
184 | des_old.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
185 | des_old.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
186 | des_old.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
187 | des_old.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | ||
188 | des_old.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
189 | des_old.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
190 | des_old.o: ../../include/openssl/ui_compat.h des_old.c | ||
191 | des_old2.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
192 | des_old2.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
193 | des_old2.o: ../../include/openssl/opensslconf.h | ||
194 | des_old2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
195 | des_old2.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
196 | des_old2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
197 | des_old2.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
198 | des_old2.o: des_old2.c | ||
199 | ecb3_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
200 | ecb3_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
201 | ecb3_enc.o: ../../include/openssl/opensslconf.h | ||
202 | ecb3_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
203 | ecb3_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
204 | ecb3_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
205 | ecb3_enc.o: des_locl.h ecb3_enc.c | ||
206 | ecb_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
207 | ecb_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
208 | ecb_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
209 | ecb_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
210 | ecb_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
211 | ecb_enc.o: ../../include/openssl/ui_compat.h des_locl.h ecb_enc.c spr.h | ||
212 | ede_cbcm_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
213 | ede_cbcm_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
214 | ede_cbcm_enc.o: ../../include/openssl/opensslconf.h | ||
215 | ede_cbcm_enc.o: ../../include/openssl/opensslv.h | ||
216 | ede_cbcm_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
217 | ede_cbcm_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
218 | ede_cbcm_enc.o: ../../include/openssl/ui_compat.h des_locl.h ede_cbcm_enc.c | ||
219 | enc_read.o: ../../e_os.h ../../include/openssl/bio.h | ||
220 | enc_read.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
221 | enc_read.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
222 | enc_read.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
223 | enc_read.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
224 | enc_read.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
225 | enc_read.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
226 | enc_read.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
227 | enc_read.o: ../cryptlib.h des_locl.h enc_read.c | ||
228 | enc_writ.o: ../../e_os.h ../../include/openssl/bio.h | ||
229 | enc_writ.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
230 | enc_writ.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
231 | enc_writ.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
232 | enc_writ.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
233 | enc_writ.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
234 | enc_writ.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
235 | enc_writ.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
236 | enc_writ.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
237 | enc_writ.o: ../cryptlib.h des_locl.h enc_writ.c | ||
238 | fcrypt.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
239 | fcrypt.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
240 | fcrypt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
241 | fcrypt.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
242 | fcrypt.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
243 | fcrypt.o: ../../include/openssl/ui_compat.h des_locl.h fcrypt.c | ||
244 | fcrypt_b.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
245 | fcrypt_b.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
246 | fcrypt_b.o: ../../include/openssl/opensslconf.h | ||
247 | fcrypt_b.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
248 | fcrypt_b.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
249 | fcrypt_b.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
250 | fcrypt_b.o: des_locl.h fcrypt_b.c | ||
251 | ofb64ede.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
252 | ofb64ede.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
253 | ofb64ede.o: ../../include/openssl/opensslconf.h | ||
254 | ofb64ede.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
255 | ofb64ede.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
256 | ofb64ede.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
257 | ofb64ede.o: des_locl.h ofb64ede.c | ||
258 | ofb64enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
259 | ofb64enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
260 | ofb64enc.o: ../../include/openssl/opensslconf.h | ||
261 | ofb64enc.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
262 | ofb64enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
263 | ofb64enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
264 | ofb64enc.o: des_locl.h ofb64enc.c | ||
265 | ofb_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
266 | ofb_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
267 | ofb_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
268 | ofb_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
269 | ofb_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
270 | ofb_enc.o: ../../include/openssl/ui_compat.h des_locl.h ofb_enc.c | ||
271 | pcbc_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
272 | pcbc_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
273 | pcbc_enc.o: ../../include/openssl/opensslconf.h | ||
274 | pcbc_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
275 | pcbc_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
276 | pcbc_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
277 | pcbc_enc.o: des_locl.h pcbc_enc.c | ||
278 | qud_cksm.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
279 | qud_cksm.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
280 | qud_cksm.o: ../../include/openssl/opensslconf.h | ||
281 | qud_cksm.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
282 | qud_cksm.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
283 | qud_cksm.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
284 | qud_cksm.o: des_locl.h qud_cksm.c | ||
285 | rand_key.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
286 | rand_key.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
287 | rand_key.o: ../../include/openssl/opensslconf.h | ||
288 | rand_key.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
289 | rand_key.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
290 | rand_key.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
291 | rand_key.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
292 | rand_key.o: rand_key.c | ||
293 | read2pwd.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
294 | read2pwd.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
295 | read2pwd.o: ../../include/openssl/opensslconf.h | ||
296 | read2pwd.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
297 | read2pwd.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
298 | read2pwd.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
299 | read2pwd.o: read2pwd.c | ||
300 | rpc_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
301 | rpc_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
302 | rpc_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
303 | rpc_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
304 | rpc_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
305 | rpc_enc.o: ../../include/openssl/ui_compat.h des_locl.h des_ver.h rpc_des.h | ||
306 | rpc_enc.o: rpc_enc.c | ||
307 | set_key.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
308 | set_key.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
309 | set_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
310 | set_key.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
311 | set_key.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
312 | set_key.o: ../../include/openssl/ui_compat.h des_locl.h set_key.c | ||
313 | str2key.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
314 | str2key.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
315 | str2key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
316 | str2key.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
317 | str2key.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
318 | str2key.o: ../../include/openssl/ui_compat.h des_locl.h str2key.c | ||
319 | xcbc_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
320 | xcbc_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
321 | xcbc_enc.o: ../../include/openssl/opensslconf.h | ||
322 | xcbc_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
323 | xcbc_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
324 | xcbc_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
325 | xcbc_enc.o: des_locl.h xcbc_enc.c | ||
diff --git a/src/lib/libcrypto/dh/Makefile.ssl b/src/lib/libcrypto/dh/Makefile.ssl index dfa7e4525d..9dddf8dd61 100644 --- a/src/lib/libcrypto/dh/Makefile.ssl +++ b/src/lib/libcrypto/dh/Makefile.ssl | |||
@@ -5,25 +5,26 @@ | |||
5 | DIR= dh | 5 | DIR= dh |
6 | TOP= ../.. | 6 | TOP= ../.. |
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
14 | AR= ar r | 17 | AR= ar r |
15 | 18 | ||
16 | CFLAGS= $(INCLUDES) $(CFLAG) | 19 | CFLAGS= $(INCLUDES) $(CFLAG) |
17 | 20 | ||
18 | ERR=dh | ||
19 | ERRC=dh_err | ||
20 | GENERAL=Makefile | 21 | GENERAL=Makefile |
21 | TEST= dhtest.c | 22 | TEST= dhtest.c |
22 | APPS= | 23 | APPS= |
23 | 24 | ||
24 | LIB=$(TOP)/libcrypto.a | 25 | LIB=$(TOP)/libcrypto.a |
25 | LIBSRC= dh_gen.c dh_key.c dh_lib.c dh_check.c $(ERRC).c | 26 | LIBSRC= dh_asn1.c dh_gen.c dh_key.c dh_lib.c dh_check.c dh_err.c |
26 | LIBOBJ= dh_gen.o dh_key.o dh_lib.o dh_check.o $(ERRC).o | 27 | LIBOBJ= dh_asn1.o dh_gen.o dh_key.o dh_lib.o dh_check.o dh_err.o |
27 | 28 | ||
28 | SRC= $(LIBSRC) | 29 | SRC= $(LIBSRC) |
29 | 30 | ||
@@ -39,24 +40,23 @@ all: lib | |||
39 | 40 | ||
40 | lib: $(LIBOBJ) | 41 | lib: $(LIBOBJ) |
41 | $(AR) $(LIB) $(LIBOBJ) | 42 | $(AR) $(LIB) $(LIBOBJ) |
42 | sh $(TOP)/util/ranlib.sh $(LIB) | 43 | $(RANLIB) $(LIB) || echo Never mind. |
43 | @touch lib | 44 | @touch lib |
44 | 45 | ||
45 | files: | 46 | files: |
46 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 47 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
47 | 48 | ||
48 | links: | 49 | links: |
49 | /bin/rm -f Makefile | 50 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
50 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 51 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
51 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 52 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
52 | $(TOP)/util/mklink.sh ../../test $(TEST) | 53 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
53 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
54 | 54 | ||
55 | install: | 55 | install: |
56 | @for i in $(EXHEADER) ; \ | 56 | @for i in $(EXHEADER) ; \ |
57 | do \ | 57 | do \ |
58 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 58 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
59 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 59 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
60 | done; | 60 | done; |
61 | 61 | ||
62 | tags: | 62 | tags: |
@@ -68,17 +68,69 @@ lint: | |||
68 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
69 | 69 | ||
70 | depend: | 70 | depend: |
71 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
72 | 72 | ||
73 | dclean: | 73 | dclean: |
74 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
75 | mv -f Makefile.new $(MAKEFILE) | 75 | mv -f Makefile.new $(MAKEFILE) |
76 | 76 | ||
77 | clean: | 77 | clean: |
78 | /bin/rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 78 | rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
79 | |||
80 | errors: | ||
81 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h | ||
82 | perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c | ||
83 | 79 | ||
84 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
81 | |||
82 | dh_asn1.o: ../../e_os.h ../../include/openssl/asn1.h | ||
83 | dh_asn1.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
84 | dh_asn1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
85 | dh_asn1.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
86 | dh_asn1.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
87 | dh_asn1.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
88 | dh_asn1.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
89 | dh_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
90 | dh_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
91 | dh_asn1.o: ../../include/openssl/symhacks.h ../cryptlib.h dh_asn1.c | ||
92 | dh_check.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
93 | dh_check.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
94 | dh_check.o: ../../include/openssl/dh.h ../../include/openssl/e_os2.h | ||
95 | dh_check.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
96 | dh_check.o: ../../include/openssl/opensslconf.h | ||
97 | dh_check.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
98 | dh_check.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
99 | dh_check.o: ../../include/openssl/symhacks.h ../cryptlib.h dh_check.c | ||
100 | dh_err.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
101 | dh_err.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
102 | dh_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
103 | dh_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
104 | dh_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
105 | dh_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
106 | dh_err.o: ../../include/openssl/symhacks.h dh_err.c | ||
107 | dh_gen.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
108 | dh_gen.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
109 | dh_gen.o: ../../include/openssl/dh.h ../../include/openssl/e_os2.h | ||
110 | dh_gen.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
111 | dh_gen.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
112 | dh_gen.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
113 | dh_gen.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
114 | dh_gen.o: ../cryptlib.h dh_gen.c | ||
115 | dh_key.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
116 | dh_key.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
117 | dh_key.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
118 | dh_key.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
119 | dh_key.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
120 | dh_key.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
121 | dh_key.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
122 | dh_key.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
123 | dh_key.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
124 | dh_key.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
125 | dh_key.o: ../cryptlib.h dh_key.c | ||
126 | dh_lib.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
127 | dh_lib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
128 | dh_lib.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
129 | dh_lib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
130 | dh_lib.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
131 | dh_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
132 | dh_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
133 | dh_lib.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
134 | dh_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
135 | dh_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
136 | dh_lib.o: ../cryptlib.h dh_lib.c | ||
diff --git a/src/lib/libcrypto/dsa/Makefile.ssl b/src/lib/libcrypto/dsa/Makefile.ssl index 2cc4ddb39e..e780ee429b 100644 --- a/src/lib/libcrypto/dsa/Makefile.ssl +++ b/src/lib/libcrypto/dsa/Makefile.ssl | |||
@@ -5,25 +5,28 @@ | |||
5 | DIR= dsa | 5 | DIR= dsa |
6 | TOP= ../.. | 6 | TOP= ../.. |
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
14 | AR= ar r | 17 | AR= ar r |
15 | 18 | ||
16 | CFLAGS= $(INCLUDES) $(CFLAG) | 19 | CFLAGS= $(INCLUDES) $(CFLAG) |
17 | 20 | ||
18 | ERR=dsa | ||
19 | ERRC=dsa_err | ||
20 | GENERAL=Makefile | 21 | GENERAL=Makefile |
21 | TEST=dsatest.c | 22 | TEST=dsatest.c |
22 | APPS= | 23 | APPS= |
23 | 24 | ||
24 | LIB=$(TOP)/libcrypto.a | 25 | LIB=$(TOP)/libcrypto.a |
25 | LIBSRC= dsa_gen.c dsa_key.c dsa_lib.c dsa_vrf.c dsa_sign.c $(ERRC).c | 26 | LIBSRC= dsa_gen.c dsa_key.c dsa_lib.c dsa_asn1.c dsa_vrf.c dsa_sign.c \ |
26 | LIBOBJ= dsa_gen.o dsa_key.o dsa_lib.o dsa_vrf.o dsa_sign.o $(ERRC).o | 27 | dsa_err.c dsa_ossl.c |
28 | LIBOBJ= dsa_gen.o dsa_key.o dsa_lib.o dsa_asn1.o dsa_vrf.o dsa_sign.o \ | ||
29 | dsa_err.o dsa_ossl.o | ||
27 | 30 | ||
28 | SRC= $(LIBSRC) | 31 | SRC= $(LIBSRC) |
29 | 32 | ||
@@ -39,24 +42,23 @@ all: lib | |||
39 | 42 | ||
40 | lib: $(LIBOBJ) | 43 | lib: $(LIBOBJ) |
41 | $(AR) $(LIB) $(LIBOBJ) | 44 | $(AR) $(LIB) $(LIBOBJ) |
42 | sh $(TOP)/util/ranlib.sh $(LIB) | 45 | $(RANLIB) $(LIB) || echo Never mind. |
43 | @touch lib | 46 | @touch lib |
44 | 47 | ||
45 | files: | 48 | files: |
46 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 49 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
47 | 50 | ||
48 | links: | 51 | links: |
49 | /bin/rm -f Makefile | 52 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
50 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 53 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
51 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 54 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
52 | $(TOP)/util/mklink.sh ../../test $(TEST) | 55 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
53 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
54 | 56 | ||
55 | install: | 57 | install: |
56 | @for i in $(EXHEADER) ; \ | 58 | @for i in $(EXHEADER) ; \ |
57 | do \ | 59 | do \ |
58 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 60 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
59 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 61 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
60 | done; | 62 | done; |
61 | 63 | ||
62 | tags: | 64 | tags: |
@@ -68,17 +70,100 @@ lint: | |||
68 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 70 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
69 | 71 | ||
70 | depend: | 72 | depend: |
71 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 73 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
72 | 74 | ||
73 | dclean: | 75 | dclean: |
74 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 76 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
75 | mv -f Makefile.new $(MAKEFILE) | 77 | mv -f Makefile.new $(MAKEFILE) |
76 | 78 | ||
77 | clean: | 79 | clean: |
78 | /bin/rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 80 | rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
79 | |||
80 | errors: | ||
81 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h | ||
82 | perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c | ||
83 | 81 | ||
84 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 82 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
83 | |||
84 | dsa_asn1.o: ../../e_os.h ../../include/openssl/asn1.h | ||
85 | dsa_asn1.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
86 | dsa_asn1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
87 | dsa_asn1.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
88 | dsa_asn1.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
89 | dsa_asn1.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
90 | dsa_asn1.o: ../../include/openssl/opensslconf.h | ||
91 | dsa_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
92 | dsa_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
93 | dsa_asn1.o: ../../include/openssl/symhacks.h ../cryptlib.h dsa_asn1.c | ||
94 | dsa_err.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
95 | dsa_err.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
96 | dsa_err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
97 | dsa_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
98 | dsa_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
99 | dsa_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
100 | dsa_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
101 | dsa_err.o: dsa_err.c | ||
102 | dsa_gen.o: ../../e_os.h ../../include/openssl/asn1.h | ||
103 | dsa_gen.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
104 | dsa_gen.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
105 | dsa_gen.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
106 | dsa_gen.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
107 | dsa_gen.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
108 | dsa_gen.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
109 | dsa_gen.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
110 | dsa_gen.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | ||
111 | dsa_gen.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
112 | dsa_gen.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
113 | dsa_gen.o: ../cryptlib.h dsa_gen.c | ||
114 | dsa_key.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
115 | dsa_key.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
116 | dsa_key.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
117 | dsa_key.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
118 | dsa_key.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
119 | dsa_key.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
120 | dsa_key.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
121 | dsa_key.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
122 | dsa_key.o: ../cryptlib.h dsa_key.c | ||
123 | dsa_lib.o: ../../e_os.h ../../include/openssl/asn1.h | ||
124 | dsa_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
125 | dsa_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
126 | dsa_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
127 | dsa_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
128 | dsa_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
129 | dsa_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
130 | dsa_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | ||
131 | dsa_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
132 | dsa_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
133 | dsa_lib.o: ../../include/openssl/ui.h ../cryptlib.h dsa_lib.c | ||
134 | dsa_ossl.o: ../../e_os.h ../../include/openssl/asn1.h | ||
135 | dsa_ossl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
136 | dsa_ossl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
137 | dsa_ossl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
138 | dsa_ossl.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
139 | dsa_ossl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
140 | dsa_ossl.o: ../../include/openssl/opensslconf.h | ||
141 | dsa_ossl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
142 | dsa_ossl.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
143 | dsa_ossl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
144 | dsa_ossl.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
145 | dsa_ossl.o: ../cryptlib.h dsa_ossl.c | ||
146 | dsa_sign.o: ../../e_os.h ../../include/openssl/asn1.h | ||
147 | dsa_sign.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
148 | dsa_sign.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
149 | dsa_sign.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
150 | dsa_sign.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
151 | dsa_sign.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
152 | dsa_sign.o: ../../include/openssl/opensslconf.h | ||
153 | dsa_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
154 | dsa_sign.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
155 | dsa_sign.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
156 | dsa_sign.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
157 | dsa_sign.o: ../cryptlib.h dsa_sign.c | ||
158 | dsa_vrf.o: ../../e_os.h ../../include/openssl/asn1.h | ||
159 | dsa_vrf.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
160 | dsa_vrf.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
161 | dsa_vrf.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
162 | dsa_vrf.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
163 | dsa_vrf.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
164 | dsa_vrf.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
165 | dsa_vrf.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
166 | dsa_vrf.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
167 | dsa_vrf.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
168 | dsa_vrf.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
169 | dsa_vrf.o: ../cryptlib.h dsa_vrf.c | ||
diff --git a/src/lib/libcrypto/dso/Makefile.ssl b/src/lib/libcrypto/dso/Makefile.ssl index effc46d2dc..c47ca2d78c 100644 --- a/src/lib/libcrypto/dso/Makefile.ssl +++ b/src/lib/libcrypto/dso/Makefile.ssl | |||
@@ -5,13 +5,14 @@ | |||
5 | DIR= dso | 5 | DIR= dso |
6 | TOP= ../.. | 6 | TOP= ../.. |
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | 10 | INSTALL_PREFIX= |
11 | OPENSSLDIR= /usr/local/ssl | 11 | OPENSSLDIR= /usr/local/ssl |
12 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
13 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
14 | MAKEDEPEND= $(TOP)/util/domd $(TOP) | 14 | MAKEDEPPROG= makedepend |
15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
15 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
16 | AR= ar r | 17 | AR= ar r |
17 | 18 | ||
@@ -41,7 +42,7 @@ all: lib | |||
41 | 42 | ||
42 | lib: $(LIBOBJ) | 43 | lib: $(LIBOBJ) |
43 | $(AR) $(LIB) $(LIBOBJ) | 44 | $(AR) $(LIB) $(LIBOBJ) |
44 | $(RANLIB) $(LIB) | 45 | $(RANLIB) $(LIB) || echo Never mind. |
45 | @touch lib | 46 | @touch lib |
46 | 47 | ||
47 | files: | 48 | files: |
@@ -80,61 +81,62 @@ clean: | |||
80 | 81 | ||
81 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 82 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
82 | 83 | ||
83 | dso_dl.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 84 | dso_dl.o: ../../e_os.h ../../include/openssl/bio.h |
84 | dso_dl.o: ../../include/openssl/crypto.h ../../include/openssl/dso.h | 85 | dso_dl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
85 | dso_dl.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 86 | dso_dl.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
86 | dso_dl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 87 | dso_dl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
87 | dso_dl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 88 | dso_dl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
88 | dso_dl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 89 | dso_dl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
89 | dso_dl.o: ../../include/openssl/symhacks.h ../cryptlib.h | 90 | dso_dl.o: ../../include/openssl/symhacks.h ../cryptlib.h dso_dl.c |
90 | dso_dlfcn.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 91 | dso_dlfcn.o: ../../e_os.h ../../include/openssl/bio.h |
91 | dso_dlfcn.o: ../../include/openssl/crypto.h ../../include/openssl/dso.h | 92 | dso_dlfcn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
92 | dso_dlfcn.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 93 | dso_dlfcn.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
93 | dso_dlfcn.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 94 | dso_dlfcn.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
94 | dso_dlfcn.o: ../../include/openssl/opensslconf.h | 95 | dso_dlfcn.o: ../../include/openssl/opensslconf.h |
95 | dso_dlfcn.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 96 | dso_dlfcn.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h |
96 | dso_dlfcn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 97 | dso_dlfcn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
97 | dso_dlfcn.o: ../cryptlib.h | 98 | dso_dlfcn.o: ../cryptlib.h dso_dlfcn.c |
98 | dso_err.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | 99 | dso_err.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h |
99 | dso_err.o: ../../include/openssl/dso.h ../../include/openssl/err.h | 100 | dso_err.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
100 | dso_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslv.h | 101 | dso_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
102 | dso_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
101 | dso_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 103 | dso_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
102 | dso_err.o: ../../include/openssl/symhacks.h | 104 | dso_err.o: ../../include/openssl/symhacks.h dso_err.c |
103 | dso_lib.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 105 | dso_lib.o: ../../e_os.h ../../include/openssl/bio.h |
104 | dso_lib.o: ../../include/openssl/crypto.h ../../include/openssl/dso.h | 106 | dso_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
105 | dso_lib.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 107 | dso_lib.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
106 | dso_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 108 | dso_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
107 | dso_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 109 | dso_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
108 | dso_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 110 | dso_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
109 | dso_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h | 111 | dso_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h dso_lib.c |
110 | dso_null.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 112 | dso_null.o: ../../e_os.h ../../include/openssl/bio.h |
111 | dso_null.o: ../../include/openssl/crypto.h ../../include/openssl/dso.h | 113 | dso_null.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
112 | dso_null.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 114 | dso_null.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
113 | dso_null.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 115 | dso_null.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
114 | dso_null.o: ../../include/openssl/opensslconf.h | 116 | dso_null.o: ../../include/openssl/opensslconf.h |
115 | dso_null.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 117 | dso_null.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h |
116 | dso_null.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 118 | dso_null.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
117 | dso_null.o: ../cryptlib.h | 119 | dso_null.o: ../cryptlib.h dso_null.c |
118 | dso_openssl.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 120 | dso_openssl.o: ../../e_os.h ../../include/openssl/bio.h |
119 | dso_openssl.o: ../../include/openssl/crypto.h ../../include/openssl/dso.h | 121 | dso_openssl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
120 | dso_openssl.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 122 | dso_openssl.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
121 | dso_openssl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 123 | dso_openssl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
122 | dso_openssl.o: ../../include/openssl/opensslconf.h | 124 | dso_openssl.o: ../../include/openssl/opensslconf.h |
123 | dso_openssl.o: ../../include/openssl/opensslv.h | 125 | dso_openssl.o: ../../include/openssl/opensslv.h |
124 | dso_openssl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 126 | dso_openssl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
125 | dso_openssl.o: ../../include/openssl/symhacks.h ../cryptlib.h | 127 | dso_openssl.o: ../../include/openssl/symhacks.h ../cryptlib.h dso_openssl.c |
126 | dso_vms.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 128 | dso_vms.o: ../../e_os.h ../../include/openssl/bio.h |
127 | dso_vms.o: ../../include/openssl/crypto.h ../../include/openssl/dso.h | 129 | dso_vms.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
128 | dso_vms.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 130 | dso_vms.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
129 | dso_vms.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 131 | dso_vms.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
130 | dso_vms.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 132 | dso_vms.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
131 | dso_vms.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 133 | dso_vms.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
132 | dso_vms.o: ../../include/openssl/symhacks.h ../cryptlib.h | 134 | dso_vms.o: ../../include/openssl/symhacks.h ../cryptlib.h dso_vms.c |
133 | dso_win32.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 135 | dso_win32.o: ../../e_os.h ../../include/openssl/bio.h |
134 | dso_win32.o: ../../include/openssl/crypto.h ../../include/openssl/dso.h | 136 | dso_win32.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
135 | dso_win32.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 137 | dso_win32.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
136 | dso_win32.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 138 | dso_win32.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
137 | dso_win32.o: ../../include/openssl/opensslconf.h | 139 | dso_win32.o: ../../include/openssl/opensslconf.h |
138 | dso_win32.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 140 | dso_win32.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h |
139 | dso_win32.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 141 | dso_win32.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
140 | dso_win32.o: ../cryptlib.h | 142 | dso_win32.o: ../cryptlib.h dso_win32.c |
diff --git a/src/lib/libcrypto/engine/Makefile.ssl b/src/lib/libcrypto/engine/Makefile.ssl index 7a0ffe755d..eeea47fbf5 100644 --- a/src/lib/libcrypto/engine/Makefile.ssl +++ b/src/lib/libcrypto/engine/Makefile.ssl | |||
@@ -5,13 +5,14 @@ | |||
5 | DIR= engine | 5 | DIR= engine |
6 | TOP= ../.. | 6 | TOP= ../.. |
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | 10 | INSTALL_PREFIX= |
11 | OPENSSLDIR= /usr/local/ssl | 11 | OPENSSLDIR= /usr/local/ssl |
12 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
13 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
14 | MAKEDEPEND= $(TOP)/util/domd $(TOP) | 14 | MAKEDEPPROG= makedepend |
15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
15 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
16 | AR= ar r | 17 | AR= ar r |
17 | 18 | ||
@@ -22,10 +23,18 @@ TEST= enginetest.c | |||
22 | APPS= | 23 | APPS= |
23 | 24 | ||
24 | LIB=$(TOP)/libcrypto.a | 25 | LIB=$(TOP)/libcrypto.a |
25 | LIBSRC= engine_err.c engine_lib.c engine_list.c engine_openssl.c \ | 26 | LIBSRC= eng_err.c eng_lib.c eng_list.c eng_init.c eng_ctrl.c \ |
26 | hw_atalla.c hw_cswift.c hw_ncipher.c | 27 | eng_table.c eng_pkey.c eng_fat.c eng_all.c \ |
27 | LIBOBJ= engine_err.o engine_lib.o engine_list.o engine_openssl.o \ | 28 | tb_rsa.c tb_dsa.c tb_dh.c tb_rand.c tb_cipher.c tb_digest.c \ |
28 | hw_atalla.o hw_cswift.o hw_ncipher.o | 29 | eng_openssl.c eng_dyn.c eng_cnf.c \ |
30 | hw_atalla.c hw_cswift.c hw_ncipher.c hw_nuron.c hw_ubsec.c \ | ||
31 | hw_openbsd_dev_crypto.c hw_aep.c hw_sureware.c hw_4758_cca.c | ||
32 | LIBOBJ= eng_err.o eng_lib.o eng_list.o eng_init.o eng_ctrl.o \ | ||
33 | eng_table.o eng_pkey.o eng_fat.o eng_all.o \ | ||
34 | tb_rsa.o tb_dsa.o tb_dh.o tb_rand.o tb_cipher.o tb_digest.o \ | ||
35 | eng_openssl.o eng_dyn.o eng_cnf.o \ | ||
36 | hw_atalla.o hw_cswift.o hw_ncipher.o hw_nuron.o hw_ubsec.o \ | ||
37 | hw_openbsd_dev_crypto.o hw_aep.o hw_sureware.o hw_4758_cca.o | ||
29 | 38 | ||
30 | SRC= $(LIBSRC) | 39 | SRC= $(LIBSRC) |
31 | 40 | ||
@@ -63,6 +72,10 @@ install: | |||
63 | tags: | 72 | tags: |
64 | ctags $(SRC) | 73 | ctags $(SRC) |
65 | 74 | ||
75 | errors: | ||
76 | $(PERL) $(TOP)/util/mkerr.pl -conf hw.ec \ | ||
77 | -nostatic -staticloader -write hw_*.c; \ | ||
78 | |||
66 | tests: | 79 | tests: |
67 | 80 | ||
68 | lint: | 81 | lint: |
@@ -80,141 +93,361 @@ clean: | |||
80 | 93 | ||
81 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 94 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
82 | 95 | ||
83 | engine_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 96 | eng_all.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
84 | engine_err.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 97 | eng_all.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h |
85 | engine_err.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | 98 | eng_all.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
86 | engine_err.o: ../../include/openssl/des.h ../../include/openssl/dh.h | 99 | eng_all.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h |
87 | engine_err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 100 | eng_all.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
88 | engine_err.o: ../../include/openssl/engine.h ../../include/openssl/err.h | 101 | eng_all.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
89 | engine_err.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 102 | eng_all.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h |
90 | engine_err.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 103 | eng_all.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
91 | engine_err.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | 104 | eng_all.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
92 | engine_err.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | 105 | eng_all.o: ../../include/openssl/ui.h eng_all.c eng_int.h |
93 | engine_err.o: ../../include/openssl/objects.h | 106 | eng_cnf.o: ../../e_os.h ../../include/openssl/asn1.h |
94 | engine_err.o: ../../include/openssl/opensslconf.h | 107 | eng_cnf.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
95 | engine_err.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h | 108 | eng_cnf.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
96 | engine_err.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 109 | eng_cnf.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h |
97 | engine_err.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 110 | eng_cnf.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
98 | engine_err.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 111 | eng_cnf.o: ../../include/openssl/engine.h ../../include/openssl/err.h |
99 | engine_err.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 112 | eng_cnf.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
100 | engine_err.o: ../../include/openssl/symhacks.h | 113 | eng_cnf.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
101 | engine_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 114 | eng_cnf.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h |
102 | engine_lib.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 115 | eng_cnf.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
103 | engine_lib.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 116 | eng_cnf.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
104 | engine_lib.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 117 | eng_cnf.o: ../cryptlib.h eng_cnf.c |
105 | engine_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 118 | eng_ctrl.o: ../../e_os.h ../../include/openssl/asn1.h |
106 | engine_lib.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 119 | eng_ctrl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
107 | engine_lib.o: ../../include/openssl/engine.h ../../include/openssl/err.h | 120 | eng_ctrl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
108 | engine_lib.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 121 | eng_ctrl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
109 | engine_lib.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 122 | eng_ctrl.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h |
110 | engine_lib.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | 123 | eng_ctrl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
111 | engine_lib.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | 124 | eng_ctrl.o: ../../include/openssl/opensslconf.h |
112 | engine_lib.o: ../../include/openssl/objects.h | 125 | eng_ctrl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
113 | engine_lib.o: ../../include/openssl/opensslconf.h | 126 | eng_ctrl.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h |
114 | engine_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h | 127 | eng_ctrl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
115 | engine_lib.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 128 | eng_ctrl.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
116 | engine_lib.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 129 | eng_ctrl.o: ../cryptlib.h eng_ctrl.c eng_int.h |
117 | engine_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 130 | eng_dyn.o: ../../e_os.h ../../include/openssl/asn1.h |
118 | engine_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 131 | eng_dyn.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
119 | engine_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h engine_int.h | 132 | eng_dyn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
120 | engine_list.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 133 | eng_dyn.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
121 | engine_list.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 134 | eng_dyn.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
122 | engine_list.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 135 | eng_dyn.o: ../../include/openssl/engine.h ../../include/openssl/err.h |
123 | engine_list.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 136 | eng_dyn.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
124 | engine_list.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 137 | eng_dyn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
125 | engine_list.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 138 | eng_dyn.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h |
126 | engine_list.o: ../../include/openssl/engine.h ../../include/openssl/err.h | 139 | eng_dyn.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
127 | engine_list.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 140 | eng_dyn.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
128 | engine_list.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 141 | eng_dyn.o: ../cryptlib.h eng_dyn.c eng_int.h |
129 | engine_list.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | 142 | eng_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
130 | engine_list.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | 143 | eng_err.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h |
131 | engine_list.o: ../../include/openssl/objects.h | 144 | eng_err.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
132 | engine_list.o: ../../include/openssl/opensslconf.h | 145 | eng_err.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h |
133 | engine_list.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h | 146 | eng_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
134 | engine_list.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 147 | eng_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
135 | engine_list.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 148 | eng_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h |
136 | engine_list.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 149 | eng_err.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
137 | engine_list.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 150 | eng_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
138 | engine_list.o: ../../include/openssl/symhacks.h ../cryptlib.h engine_int.h | 151 | eng_err.o: ../../include/openssl/ui.h eng_err.c |
139 | engine_openssl.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 152 | eng_fat.o: ../../e_os.h ../../include/openssl/asn1.h |
140 | engine_openssl.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 153 | eng_fat.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
141 | engine_openssl.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 154 | eng_fat.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
142 | engine_openssl.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 155 | eng_fat.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h |
143 | engine_openssl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 156 | eng_fat.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
144 | engine_openssl.o: ../../include/openssl/dso.h ../../include/openssl/e_os.h | 157 | eng_fat.o: ../../include/openssl/engine.h ../../include/openssl/err.h |
145 | engine_openssl.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | 158 | eng_fat.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
146 | engine_openssl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 159 | eng_fat.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
147 | engine_openssl.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 160 | eng_fat.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h |
148 | engine_openssl.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | 161 | eng_fat.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
149 | engine_openssl.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 162 | eng_fat.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
150 | engine_openssl.o: ../../include/openssl/obj_mac.h | 163 | eng_fat.o: ../cryptlib.h eng_fat.c eng_int.h |
151 | engine_openssl.o: ../../include/openssl/objects.h | 164 | eng_init.o: ../../e_os.h ../../include/openssl/asn1.h |
152 | engine_openssl.o: ../../include/openssl/opensslconf.h | 165 | eng_init.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
153 | engine_openssl.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h | 166 | eng_init.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
154 | engine_openssl.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 167 | eng_init.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
155 | engine_openssl.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 168 | eng_init.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h |
156 | engine_openssl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 169 | eng_init.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
157 | engine_openssl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 170 | eng_init.o: ../../include/openssl/opensslconf.h |
158 | engine_openssl.o: ../../include/openssl/symhacks.h ../cryptlib.h engine_int.h | 171 | eng_init.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
159 | hw_atalla.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 172 | eng_init.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h |
160 | hw_atalla.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 173 | eng_init.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
161 | hw_atalla.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 174 | eng_init.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
162 | hw_atalla.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 175 | eng_init.o: ../cryptlib.h eng_init.c eng_int.h |
176 | eng_lib.o: ../../e_os.h ../../include/openssl/asn1.h | ||
177 | eng_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
178 | eng_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
179 | eng_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
180 | eng_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
181 | eng_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
182 | eng_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
183 | eng_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | ||
184 | eng_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
185 | eng_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
186 | eng_lib.o: ../../include/openssl/ui.h ../cryptlib.h eng_int.h eng_lib.c | ||
187 | eng_list.o: ../../e_os.h ../../include/openssl/asn1.h | ||
188 | eng_list.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
189 | eng_list.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
190 | eng_list.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
191 | eng_list.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
192 | eng_list.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
193 | eng_list.o: ../../include/openssl/opensslconf.h | ||
194 | eng_list.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
195 | eng_list.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
196 | eng_list.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
197 | eng_list.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
198 | eng_list.o: ../cryptlib.h eng_int.h eng_list.c | ||
199 | eng_openssl.o: ../../e_os.h ../../include/openssl/asn1.h | ||
200 | eng_openssl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
201 | eng_openssl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
202 | eng_openssl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
203 | eng_openssl.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
204 | eng_openssl.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
205 | eng_openssl.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
206 | eng_openssl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
207 | eng_openssl.o: ../../include/openssl/opensslconf.h | ||
208 | eng_openssl.o: ../../include/openssl/opensslv.h | ||
209 | eng_openssl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | ||
210 | eng_openssl.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h | ||
211 | eng_openssl.o: ../../include/openssl/rand.h ../../include/openssl/rc4.h | ||
212 | eng_openssl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
213 | eng_openssl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
214 | eng_openssl.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
215 | eng_openssl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
216 | eng_openssl.o: ../cryptlib.h eng_openssl.c | ||
217 | eng_pkey.o: ../../e_os.h ../../include/openssl/asn1.h | ||
218 | eng_pkey.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
219 | eng_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
220 | eng_pkey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
221 | eng_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
222 | eng_pkey.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
223 | eng_pkey.o: ../../include/openssl/opensslconf.h | ||
224 | eng_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
225 | eng_pkey.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
226 | eng_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
227 | eng_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
228 | eng_pkey.o: ../cryptlib.h eng_int.h eng_pkey.c | ||
229 | eng_table.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
230 | eng_table.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
231 | eng_table.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
232 | eng_table.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
233 | eng_table.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
234 | eng_table.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
235 | eng_table.o: ../../include/openssl/objects.h | ||
236 | eng_table.o: ../../include/openssl/opensslconf.h | ||
237 | eng_table.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
238 | eng_table.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
239 | eng_table.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
240 | eng_table.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
241 | eng_table.o: eng_int.h eng_table.c | ||
242 | hw_4758_cca.o: ../../e_os.h ../../include/openssl/asn1.h | ||
243 | hw_4758_cca.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
244 | hw_4758_cca.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
245 | hw_4758_cca.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
246 | hw_4758_cca.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
247 | hw_4758_cca.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
248 | hw_4758_cca.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
249 | hw_4758_cca.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
250 | hw_4758_cca.o: ../../include/openssl/opensslconf.h | ||
251 | hw_4758_cca.o: ../../include/openssl/opensslv.h | ||
252 | hw_4758_cca.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
253 | hw_4758_cca.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
254 | hw_4758_cca.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
255 | hw_4758_cca.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
256 | hw_4758_cca.o: ../../include/openssl/ui.h ../../include/openssl/x509.h | ||
257 | hw_4758_cca.o: ../../include/openssl/x509_vfy.h ../cryptlib.h hw_4758_cca.c | ||
258 | hw_4758_cca.o: hw_4758_cca_err.c hw_4758_cca_err.h vendor_defns/hw_4758_cca.h | ||
259 | hw_aep.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
260 | hw_aep.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
261 | hw_aep.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
262 | hw_aep.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
263 | hw_aep.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
264 | hw_aep.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
265 | hw_aep.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
266 | hw_aep.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
267 | hw_aep.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
268 | hw_aep.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h hw_aep.c | ||
269 | hw_aep.o: hw_aep_err.c hw_aep_err.h vendor_defns/aep.h | ||
270 | hw_atalla.o: ../../e_os.h ../../include/openssl/asn1.h | ||
271 | hw_atalla.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
272 | hw_atalla.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
163 | hw_atalla.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 273 | hw_atalla.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
164 | hw_atalla.o: ../../include/openssl/dso.h ../../include/openssl/e_os.h | 274 | hw_atalla.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
165 | hw_atalla.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | 275 | hw_atalla.o: ../../include/openssl/engine.h ../../include/openssl/err.h |
166 | hw_atalla.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 276 | hw_atalla.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
167 | hw_atalla.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 277 | hw_atalla.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
168 | hw_atalla.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | 278 | hw_atalla.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h |
169 | hw_atalla.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 279 | hw_atalla.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
170 | hw_atalla.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 280 | hw_atalla.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
171 | hw_atalla.o: ../../include/openssl/opensslconf.h | 281 | hw_atalla.o: ../cryptlib.h hw_atalla.c hw_atalla_err.c hw_atalla_err.h |
172 | hw_atalla.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h | ||
173 | hw_atalla.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
174 | hw_atalla.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
175 | hw_atalla.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
176 | hw_atalla.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
177 | hw_atalla.o: ../../include/openssl/symhacks.h ../cryptlib.h engine_int.h | ||
178 | hw_atalla.o: vendor_defns/atalla.h | 282 | hw_atalla.o: vendor_defns/atalla.h |
179 | hw_cswift.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 283 | hw_cswift.o: ../../e_os.h ../../include/openssl/asn1.h |
180 | hw_cswift.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 284 | hw_cswift.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
181 | hw_cswift.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 285 | hw_cswift.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
182 | hw_cswift.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
183 | hw_cswift.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 286 | hw_cswift.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
184 | hw_cswift.o: ../../include/openssl/dso.h ../../include/openssl/e_os.h | 287 | hw_cswift.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
185 | hw_cswift.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | 288 | hw_cswift.o: ../../include/openssl/engine.h ../../include/openssl/err.h |
186 | hw_cswift.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 289 | hw_cswift.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
187 | hw_cswift.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 290 | hw_cswift.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
188 | hw_cswift.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | 291 | hw_cswift.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h |
189 | hw_cswift.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 292 | hw_cswift.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
190 | hw_cswift.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 293 | hw_cswift.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
191 | hw_cswift.o: ../../include/openssl/opensslconf.h | 294 | hw_cswift.o: ../cryptlib.h hw_cswift.c hw_cswift_err.c hw_cswift_err.h |
192 | hw_cswift.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h | ||
193 | hw_cswift.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
194 | hw_cswift.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
195 | hw_cswift.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
196 | hw_cswift.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
197 | hw_cswift.o: ../../include/openssl/symhacks.h ../cryptlib.h engine_int.h | ||
198 | hw_cswift.o: vendor_defns/cswift.h | 295 | hw_cswift.o: vendor_defns/cswift.h |
199 | hw_ncipher.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 296 | hw_ncipher.o: ../../e_os.h ../../include/openssl/asn1.h |
200 | hw_ncipher.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 297 | hw_ncipher.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
201 | hw_ncipher.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 298 | hw_ncipher.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
202 | hw_ncipher.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
203 | hw_ncipher.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 299 | hw_ncipher.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
204 | hw_ncipher.o: ../../include/openssl/dso.h ../../include/openssl/e_os.h | 300 | hw_ncipher.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
205 | hw_ncipher.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | 301 | hw_ncipher.o: ../../include/openssl/engine.h ../../include/openssl/err.h |
206 | hw_ncipher.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 302 | hw_ncipher.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
207 | hw_ncipher.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
208 | hw_ncipher.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
209 | hw_ncipher.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
210 | hw_ncipher.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 303 | hw_ncipher.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
211 | hw_ncipher.o: ../../include/openssl/opensslconf.h | 304 | hw_ncipher.o: ../../include/openssl/opensslconf.h |
212 | hw_ncipher.o: ../../include/openssl/opensslv.h ../../include/openssl/pem.h | 305 | hw_ncipher.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
213 | hw_ncipher.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h | 306 | hw_ncipher.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
214 | hw_ncipher.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h | 307 | hw_ncipher.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
215 | hw_ncipher.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 308 | hw_ncipher.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
216 | hw_ncipher.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 309 | hw_ncipher.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
217 | hw_ncipher.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 310 | hw_ncipher.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
218 | hw_ncipher.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
219 | hw_ncipher.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 311 | hw_ncipher.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
220 | hw_ncipher.o: ../cryptlib.h engine_int.h vendor_defns/hwcryptohook.h | 312 | hw_ncipher.o: ../cryptlib.h hw_ncipher.c hw_ncipher_err.c hw_ncipher_err.h |
313 | hw_ncipher.o: vendor_defns/hwcryptohook.h | ||
314 | hw_nuron.o: ../../e_os.h ../../include/openssl/asn1.h | ||
315 | hw_nuron.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
316 | hw_nuron.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
317 | hw_nuron.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
318 | hw_nuron.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
319 | hw_nuron.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
320 | hw_nuron.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
321 | hw_nuron.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
322 | hw_nuron.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
323 | hw_nuron.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
324 | hw_nuron.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
325 | hw_nuron.o: ../cryptlib.h hw_nuron.c hw_nuron_err.c hw_nuron_err.h | ||
326 | hw_openbsd_dev_crypto.o: ../../include/openssl/asn1.h | ||
327 | hw_openbsd_dev_crypto.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
328 | hw_openbsd_dev_crypto.o: ../../include/openssl/conf.h | ||
329 | hw_openbsd_dev_crypto.o: ../../include/openssl/crypto.h | ||
330 | hw_openbsd_dev_crypto.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
331 | hw_openbsd_dev_crypto.o: ../../include/openssl/e_os2.h | ||
332 | hw_openbsd_dev_crypto.o: ../../include/openssl/engine.h | ||
333 | hw_openbsd_dev_crypto.o: ../../include/openssl/err.h | ||
334 | hw_openbsd_dev_crypto.o: ../../include/openssl/evp.h | ||
335 | hw_openbsd_dev_crypto.o: ../../include/openssl/lhash.h | ||
336 | hw_openbsd_dev_crypto.o: ../../include/openssl/obj_mac.h | ||
337 | hw_openbsd_dev_crypto.o: ../../include/openssl/objects.h | ||
338 | hw_openbsd_dev_crypto.o: ../../include/openssl/opensslconf.h | ||
339 | hw_openbsd_dev_crypto.o: ../../include/openssl/opensslv.h | ||
340 | hw_openbsd_dev_crypto.o: ../../include/openssl/ossl_typ.h | ||
341 | hw_openbsd_dev_crypto.o: ../../include/openssl/rand.h | ||
342 | hw_openbsd_dev_crypto.o: ../../include/openssl/rsa.h | ||
343 | hw_openbsd_dev_crypto.o: ../../include/openssl/safestack.h | ||
344 | hw_openbsd_dev_crypto.o: ../../include/openssl/stack.h | ||
345 | hw_openbsd_dev_crypto.o: ../../include/openssl/symhacks.h | ||
346 | hw_openbsd_dev_crypto.o: ../../include/openssl/ui.h ../evp/evp_locl.h eng_int.h | ||
347 | hw_openbsd_dev_crypto.o: hw_openbsd_dev_crypto.c | ||
348 | hw_sureware.o: ../../e_os.h ../../include/openssl/asn1.h | ||
349 | hw_sureware.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
350 | hw_sureware.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
351 | hw_sureware.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
352 | hw_sureware.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
353 | hw_sureware.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
354 | hw_sureware.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
355 | hw_sureware.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
356 | hw_sureware.o: ../../include/openssl/opensslconf.h | ||
357 | hw_sureware.o: ../../include/openssl/opensslv.h | ||
358 | hw_sureware.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | ||
359 | hw_sureware.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h | ||
360 | hw_sureware.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
361 | hw_sureware.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
362 | hw_sureware.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
363 | hw_sureware.o: ../../include/openssl/ui.h ../../include/openssl/x509.h | ||
364 | hw_sureware.o: ../../include/openssl/x509_vfy.h ../cryptlib.h eng_int.h | ||
365 | hw_sureware.o: engine.h hw_sureware.c hw_sureware_err.c hw_sureware_err.h | ||
366 | hw_sureware.o: vendor_defns/sureware.h | ||
367 | hw_ubsec.o: ../../e_os.h ../../include/openssl/asn1.h | ||
368 | hw_ubsec.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
369 | hw_ubsec.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
370 | hw_ubsec.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
371 | hw_ubsec.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
372 | hw_ubsec.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
373 | hw_ubsec.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
374 | hw_ubsec.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
375 | hw_ubsec.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
376 | hw_ubsec.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
377 | hw_ubsec.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
378 | hw_ubsec.o: ../cryptlib.h hw_ubsec.c hw_ubsec_err.c hw_ubsec_err.h | ||
379 | hw_ubsec.o: vendor_defns/hw_ubsec.h | ||
380 | tb_cipher.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
381 | tb_cipher.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
382 | tb_cipher.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
383 | tb_cipher.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
384 | tb_cipher.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
385 | tb_cipher.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
386 | tb_cipher.o: ../../include/openssl/objects.h | ||
387 | tb_cipher.o: ../../include/openssl/opensslconf.h | ||
388 | tb_cipher.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
389 | tb_cipher.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
390 | tb_cipher.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
391 | tb_cipher.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
392 | tb_cipher.o: eng_int.h tb_cipher.c | ||
393 | tb_dh.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
394 | tb_dh.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
395 | tb_dh.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
396 | tb_dh.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
397 | tb_dh.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
398 | tb_dh.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
399 | tb_dh.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
400 | tb_dh.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
401 | tb_dh.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
402 | tb_dh.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
403 | tb_dh.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h eng_int.h | ||
404 | tb_dh.o: tb_dh.c | ||
405 | tb_digest.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
406 | tb_digest.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
407 | tb_digest.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
408 | tb_digest.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
409 | tb_digest.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
410 | tb_digest.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
411 | tb_digest.o: ../../include/openssl/objects.h | ||
412 | tb_digest.o: ../../include/openssl/opensslconf.h | ||
413 | tb_digest.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
414 | tb_digest.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
415 | tb_digest.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
416 | tb_digest.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
417 | tb_digest.o: eng_int.h tb_digest.c | ||
418 | tb_dsa.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
419 | tb_dsa.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
420 | tb_dsa.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
421 | tb_dsa.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
422 | tb_dsa.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
423 | tb_dsa.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
424 | tb_dsa.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
425 | tb_dsa.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
426 | tb_dsa.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
427 | tb_dsa.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
428 | tb_dsa.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h eng_int.h | ||
429 | tb_dsa.o: tb_dsa.c | ||
430 | tb_rand.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
431 | tb_rand.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
432 | tb_rand.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
433 | tb_rand.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
434 | tb_rand.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
435 | tb_rand.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
436 | tb_rand.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
437 | tb_rand.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
438 | tb_rand.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
439 | tb_rand.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
440 | tb_rand.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
441 | tb_rand.o: eng_int.h tb_rand.c | ||
442 | tb_rsa.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
443 | tb_rsa.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
444 | tb_rsa.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
445 | tb_rsa.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
446 | tb_rsa.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
447 | tb_rsa.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
448 | tb_rsa.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
449 | tb_rsa.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
450 | tb_rsa.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
451 | tb_rsa.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
452 | tb_rsa.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h eng_int.h | ||
453 | tb_rsa.o: tb_rsa.c | ||
diff --git a/src/lib/libcrypto/err/Makefile.ssl b/src/lib/libcrypto/err/Makefile.ssl index 57c87eb041..2946c00ead 100644 --- a/src/lib/libcrypto/err/Makefile.ssl +++ b/src/lib/libcrypto/err/Makefile.ssl | |||
@@ -5,11 +5,14 @@ | |||
5 | DIR= err | 5 | DIR= err |
6 | TOP= ../.. | 6 | TOP= ../.. |
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
14 | AR= ar r | 17 | AR= ar r |
15 | 18 | ||
@@ -37,24 +40,23 @@ all: lib | |||
37 | 40 | ||
38 | lib: $(LIBOBJ) | 41 | lib: $(LIBOBJ) |
39 | $(AR) $(LIB) $(LIBOBJ) | 42 | $(AR) $(LIB) $(LIBOBJ) |
40 | sh $(TOP)/util/ranlib.sh $(LIB) | 43 | $(RANLIB) $(LIB) || echo Never mind. |
41 | @touch lib | 44 | @touch lib |
42 | 45 | ||
43 | files: | 46 | files: |
44 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 47 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
45 | 48 | ||
46 | links: | 49 | links: |
47 | /bin/rm -f Makefile | 50 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
48 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 51 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
49 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 52 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
50 | $(TOP)/util/mklink.sh ../../test $(TEST) | 53 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
51 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
52 | 54 | ||
53 | install: | 55 | install: |
54 | @for i in $(EXHEADER) ; \ | 56 | @for i in $(EXHEADER) ; \ |
55 | do \ | 57 | do \ |
56 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 58 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
57 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 59 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
58 | done; | 60 | done; |
59 | 61 | ||
60 | tags: | 62 | tags: |
@@ -66,15 +68,45 @@ lint: | |||
66 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
67 | 69 | ||
68 | depend: | 70 | depend: |
69 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
70 | 72 | ||
71 | dclean: | 73 | dclean: |
72 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
73 | mv -f Makefile.new $(MAKEFILE) | 75 | mv -f Makefile.new $(MAKEFILE) |
74 | 76 | ||
75 | clean: | 77 | clean: |
76 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 78 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
77 | |||
78 | errors: | ||
79 | 79 | ||
80 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
81 | |||
82 | err.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
83 | err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
84 | err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
85 | err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
86 | err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
87 | err.o: ../../include/openssl/symhacks.h ../cryptlib.h err.c | ||
88 | err_all.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
89 | err_all.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
90 | err_all.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
91 | err_all.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
92 | err_all.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
93 | err_all.o: ../../include/openssl/ec.h ../../include/openssl/engine.h | ||
94 | err_all.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
95 | err_all.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
96 | err_all.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h | ||
97 | err_all.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
98 | err_all.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem2.h | ||
99 | err_all.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | ||
100 | err_all.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
101 | err_all.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
102 | err_all.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
103 | err_all.o: ../../include/openssl/ui.h ../../include/openssl/x509.h | ||
104 | err_all.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
105 | err_all.o: err_all.c | ||
106 | err_prn.o: ../../e_os.h ../../include/openssl/bio.h | ||
107 | err_prn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
108 | err_prn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
109 | err_prn.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
110 | err_prn.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
111 | err_prn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
112 | err_prn.o: ../cryptlib.h err_prn.c | ||
diff --git a/src/lib/libcrypto/evp/Makefile.ssl b/src/lib/libcrypto/evp/Makefile.ssl index 8bf2516458..3902ca0a18 100644 --- a/src/lib/libcrypto/evp/Makefile.ssl +++ b/src/lib/libcrypto/evp/Makefile.ssl | |||
@@ -5,52 +5,46 @@ | |||
5 | DIR= evp | 5 | DIR= evp |
6 | TOP= ../.. | 6 | TOP= ../.. |
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
14 | AR= ar r | 17 | AR= ar r |
15 | 18 | ||
16 | CFLAGS= $(INCLUDES) $(CFLAG) | 19 | CFLAGS= $(INCLUDES) $(CFLAG) |
17 | 20 | ||
18 | ERR=evp | ||
19 | ERRC=evp_err | ||
20 | GENERAL=Makefile | 21 | GENERAL=Makefile |
21 | TEST= | 22 | TEST=evp_test.c |
23 | TESTDATA=evptests.txt | ||
22 | APPS= | 24 | APPS= |
23 | 25 | ||
24 | LIB=$(TOP)/libcrypto.a | 26 | LIB=$(TOP)/libcrypto.a |
25 | LIBSRC= encode.c digest.c evp_enc.c evp_key.c \ | 27 | LIBSRC= encode.c digest.c evp_enc.c evp_key.c evp_acnf.c \ |
26 | e_ecb_d.c e_cbc_d.c e_cfb_d.c e_ofb_d.c \ | 28 | e_des.c e_bf.c e_idea.c e_des3.c \ |
27 | e_ecb_i.c e_cbc_i.c e_cfb_i.c e_ofb_i.c \ | 29 | e_rc4.c e_aes.c names.c \ |
28 | e_ecb_3d.c e_cbc_3d.c e_rc4.c names.c \ | 30 | e_xcbc_d.c e_rc2.c e_cast.c e_rc5.c \ |
29 | e_cfb_3d.c e_ofb_3d.c e_xcbc_d.c \ | 31 | m_null.c m_md2.c m_md4.c m_md5.c m_sha.c m_sha1.c \ |
30 | e_ecb_r2.c e_cbc_r2.c e_cfb_r2.c e_ofb_r2.c \ | 32 | m_dss.c m_dss1.c m_mdc2.c m_ripemd.c \ |
31 | e_ecb_bf.c e_cbc_bf.c e_cfb_bf.c e_ofb_bf.c \ | ||
32 | e_ecb_c.c e_cbc_c.c e_cfb_c.c e_ofb_c.c \ | ||
33 | e_ecb_r5.c e_cbc_r5.c e_cfb_r5.c e_ofb_r5.c \ | ||
34 | m_null.c m_md2.c m_md5.c m_sha.c m_sha1.c m_dss.c m_dss1.c m_mdc2.c \ | ||
35 | m_ripemd.c \ | ||
36 | p_open.c p_seal.c p_sign.c p_verify.c p_lib.c p_enc.c p_dec.c \ | 33 | p_open.c p_seal.c p_sign.c p_verify.c p_lib.c p_enc.c p_dec.c \ |
37 | bio_md.c bio_b64.c bio_enc.c $(ERRC).c e_null.c \ | 34 | bio_md.c bio_b64.c bio_enc.c evp_err.c e_null.c \ |
38 | c_all.c evp_lib.c | 35 | c_all.c c_allc.c c_alld.c evp_lib.c bio_ok.c \ |
39 | 36 | evp_pkey.c evp_pbe.c p5_crpt.c p5_crpt2.c | |
40 | LIBOBJ= encode.o digest.o evp_enc.o evp_key.o \ | 37 | |
41 | e_ecb_d.o e_cbc_d.o e_cfb_d.o e_ofb_d.o \ | 38 | LIBOBJ= encode.o digest.o evp_enc.o evp_key.o evp_acnf.o \ |
42 | e_ecb_i.o e_cbc_i.o e_cfb_i.o e_ofb_i.o \ | 39 | e_des.o e_bf.o e_idea.o e_des3.o \ |
43 | e_ecb_3d.o e_cbc_3d.o e_rc4.o names.o \ | 40 | e_rc4.o e_aes.o names.o \ |
44 | e_cfb_3d.o e_ofb_3d.o e_xcbc_d.o \ | 41 | e_xcbc_d.o e_rc2.o e_cast.o e_rc5.o \ |
45 | e_ecb_r2.o e_cbc_r2.o e_cfb_r2.o e_ofb_r2.o \ | 42 | m_null.o m_md2.o m_md4.o m_md5.o m_sha.o m_sha1.o \ |
46 | e_ecb_bf.o e_cbc_bf.o e_cfb_bf.o e_ofb_bf.o \ | 43 | m_dss.o m_dss1.o m_mdc2.o m_ripemd.o \ |
47 | e_ecb_c.o e_cbc_c.o e_cfb_c.o e_ofb_c.o \ | ||
48 | e_ecb_r5.o e_cbc_r5.o e_cfb_r5.o e_ofb_r5.o \ | ||
49 | m_null.o m_md2.o m_md5.o m_sha.o m_sha1.o m_dss.o m_dss1.o m_mdc2.o \ | ||
50 | m_ripemd.o \ | ||
51 | p_open.o p_seal.o p_sign.o p_verify.o p_lib.o p_enc.o p_dec.o \ | 44 | p_open.o p_seal.o p_sign.o p_verify.o p_lib.o p_enc.o p_dec.o \ |
52 | bio_md.o bio_b64.o bio_enc.o $(ERRC).o e_null.o \ | 45 | bio_md.o bio_b64.o bio_enc.o evp_err.o e_null.o \ |
53 | c_all.o evp_lib.o | 46 | c_all.o c_allc.o c_alld.o evp_lib.o bio_ok.o \ |
47 | evp_pkey.o evp_pbe.o p5_crpt.o p5_crpt2.o | ||
54 | 48 | ||
55 | SRC= $(LIBSRC) | 49 | SRC= $(LIBSRC) |
56 | 50 | ||
@@ -66,24 +60,24 @@ all: lib | |||
66 | 60 | ||
67 | lib: $(LIBOBJ) | 61 | lib: $(LIBOBJ) |
68 | $(AR) $(LIB) $(LIBOBJ) | 62 | $(AR) $(LIB) $(LIBOBJ) |
69 | sh $(TOP)/util/ranlib.sh $(LIB) | 63 | $(RANLIB) $(LIB) || echo Never mind. |
70 | @touch lib | 64 | @touch lib |
71 | 65 | ||
72 | files: | 66 | files: |
73 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 67 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
74 | 68 | ||
75 | links: | 69 | links: |
76 | /bin/rm -f Makefile | 70 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
77 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 71 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
78 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 72 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
79 | $(TOP)/util/mklink.sh ../../test $(TEST) | 73 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TESTDATA) |
80 | $(TOP)/util/mklink.sh ../../apps $(APPS) | 74 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
81 | 75 | ||
82 | install: | 76 | install: |
83 | @for i in $(EXHEADER) ; \ | 77 | @for i in $(EXHEADER) ; \ |
84 | do \ | 78 | do \ |
85 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 79 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
86 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 80 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
87 | done; | 81 | done; |
88 | 82 | ||
89 | tags: | 83 | tags: |
@@ -95,17 +89,574 @@ lint: | |||
95 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 89 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
96 | 90 | ||
97 | depend: | 91 | depend: |
98 | $(MAKEDEPEND) $(INCLUDES) $(LIBSRC) | 92 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(LIBSRC) |
99 | 93 | ||
100 | dclean: | 94 | dclean: |
101 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 95 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
102 | mv -f Makefile.new $(MAKEFILE) | 96 | mv -f Makefile.new $(MAKEFILE) |
103 | 97 | ||
104 | clean: | 98 | clean: |
105 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 99 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
106 | |||
107 | errors: | ||
108 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h | ||
109 | perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c | ||
110 | 100 | ||
111 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 101 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
102 | |||
103 | bio_b64.o: ../../e_os.h ../../include/openssl/asn1.h | ||
104 | bio_b64.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
105 | bio_b64.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
106 | bio_b64.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
107 | bio_b64.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
108 | bio_b64.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
109 | bio_b64.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
110 | bio_b64.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
111 | bio_b64.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
112 | bio_b64.o: ../cryptlib.h bio_b64.c | ||
113 | bio_enc.o: ../../e_os.h ../../include/openssl/asn1.h | ||
114 | bio_enc.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
115 | bio_enc.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
116 | bio_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
117 | bio_enc.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
118 | bio_enc.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
119 | bio_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
120 | bio_enc.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
121 | bio_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
122 | bio_enc.o: ../cryptlib.h bio_enc.c | ||
123 | bio_md.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
124 | bio_md.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
125 | bio_md.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
126 | bio_md.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
127 | bio_md.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
128 | bio_md.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
129 | bio_md.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
130 | bio_md.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
131 | bio_md.o: ../../include/openssl/symhacks.h ../cryptlib.h bio_md.c | ||
132 | bio_ok.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
133 | bio_ok.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
134 | bio_ok.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
135 | bio_ok.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
136 | bio_ok.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
137 | bio_ok.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
138 | bio_ok.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
139 | bio_ok.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
140 | bio_ok.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
141 | bio_ok.o: ../cryptlib.h bio_ok.c | ||
142 | c_all.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
143 | c_all.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
144 | c_all.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
145 | c_all.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
146 | c_all.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
147 | c_all.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
148 | c_all.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
149 | c_all.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
150 | c_all.o: ../../include/openssl/symhacks.h ../cryptlib.h c_all.c | ||
151 | c_allc.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
152 | c_allc.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
153 | c_allc.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
154 | c_allc.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
155 | c_allc.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
156 | c_allc.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
157 | c_allc.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
158 | c_allc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
159 | c_allc.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | ||
160 | c_allc.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
161 | c_allc.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
162 | c_allc.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
163 | c_allc.o: ../../include/openssl/x509_vfy.h ../cryptlib.h c_allc.c | ||
164 | c_alld.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
165 | c_alld.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
166 | c_alld.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
167 | c_alld.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
168 | c_alld.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
169 | c_alld.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
170 | c_alld.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
171 | c_alld.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
172 | c_alld.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | ||
173 | c_alld.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
174 | c_alld.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
175 | c_alld.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
176 | c_alld.o: ../../include/openssl/x509_vfy.h ../cryptlib.h c_alld.c | ||
177 | digest.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
178 | digest.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
179 | digest.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
180 | digest.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
181 | digest.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
182 | digest.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
183 | digest.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
184 | digest.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
185 | digest.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | ||
186 | digest.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
187 | digest.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
188 | digest.o: ../../include/openssl/ui.h ../cryptlib.h digest.c | ||
189 | e_aes.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
190 | e_aes.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
191 | e_aes.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
192 | e_aes.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
193 | e_aes.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
194 | e_aes.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
195 | e_aes.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
196 | e_aes.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
197 | e_aes.o: ../../include/openssl/symhacks.h e_aes.c evp_locl.h | ||
198 | e_bf.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
199 | e_bf.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
200 | e_bf.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
201 | e_bf.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
202 | e_bf.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
203 | e_bf.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
204 | e_bf.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
205 | e_bf.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
206 | e_bf.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
207 | e_bf.o: ../cryptlib.h e_bf.c evp_locl.h | ||
208 | e_cast.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
209 | e_cast.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
210 | e_cast.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
211 | e_cast.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
212 | e_cast.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
213 | e_cast.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
214 | e_cast.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
215 | e_cast.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
216 | e_cast.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
217 | e_cast.o: ../cryptlib.h e_cast.c evp_locl.h | ||
218 | e_des.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
219 | e_des.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
220 | e_des.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
221 | e_des.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
222 | e_des.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
223 | e_des.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
224 | e_des.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
225 | e_des.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
226 | e_des.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
227 | e_des.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
228 | e_des.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_des.c evp_locl.h | ||
229 | e_des3.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
230 | e_des3.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
231 | e_des3.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
232 | e_des3.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
233 | e_des3.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
234 | e_des3.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
235 | e_des3.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
236 | e_des3.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
237 | e_des3.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
238 | e_des3.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
239 | e_des3.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_des3.c evp_locl.h | ||
240 | e_idea.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
241 | e_idea.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
242 | e_idea.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
243 | e_idea.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
244 | e_idea.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
245 | e_idea.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
246 | e_idea.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
247 | e_idea.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
248 | e_idea.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
249 | e_idea.o: ../cryptlib.h e_idea.c evp_locl.h | ||
250 | e_null.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
251 | e_null.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
252 | e_null.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
253 | e_null.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
254 | e_null.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
255 | e_null.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
256 | e_null.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
257 | e_null.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
258 | e_null.o: ../../include/openssl/symhacks.h ../cryptlib.h e_null.c | ||
259 | e_rc2.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
260 | e_rc2.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
261 | e_rc2.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
262 | e_rc2.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
263 | e_rc2.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
264 | e_rc2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
265 | e_rc2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
266 | e_rc2.o: ../../include/openssl/rc2.h ../../include/openssl/safestack.h | ||
267 | e_rc2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
268 | e_rc2.o: ../cryptlib.h e_rc2.c evp_locl.h | ||
269 | e_rc4.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
270 | e_rc4.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
271 | e_rc4.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
272 | e_rc4.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
273 | e_rc4.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
274 | e_rc4.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
275 | e_rc4.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
276 | e_rc4.o: ../../include/openssl/rc4.h ../../include/openssl/safestack.h | ||
277 | e_rc4.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
278 | e_rc4.o: ../cryptlib.h e_rc4.c | ||
279 | e_rc5.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
280 | e_rc5.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
281 | e_rc5.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
282 | e_rc5.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
283 | e_rc5.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
284 | e_rc5.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
285 | e_rc5.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
286 | e_rc5.o: ../../include/openssl/rc5.h ../../include/openssl/safestack.h | ||
287 | e_rc5.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
288 | e_rc5.o: ../cryptlib.h e_rc5.c evp_locl.h | ||
289 | e_xcbc_d.o: ../../e_os.h ../../include/openssl/asn1.h | ||
290 | e_xcbc_d.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
291 | e_xcbc_d.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
292 | e_xcbc_d.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
293 | e_xcbc_d.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
294 | e_xcbc_d.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
295 | e_xcbc_d.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
296 | e_xcbc_d.o: ../../include/openssl/opensslconf.h | ||
297 | e_xcbc_d.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
298 | e_xcbc_d.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
299 | e_xcbc_d.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
300 | e_xcbc_d.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_xcbc_d.c | ||
301 | encode.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
302 | encode.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
303 | encode.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
304 | encode.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
305 | encode.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
306 | encode.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
307 | encode.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
308 | encode.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
309 | encode.o: ../../include/openssl/symhacks.h ../cryptlib.h encode.c | ||
310 | evp_acnf.o: ../../e_os.h ../../include/openssl/asn1.h | ||
311 | evp_acnf.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
312 | evp_acnf.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
313 | evp_acnf.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
314 | evp_acnf.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
315 | evp_acnf.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
316 | evp_acnf.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
317 | evp_acnf.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
318 | evp_acnf.o: ../../include/openssl/opensslconf.h | ||
319 | evp_acnf.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
320 | evp_acnf.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
321 | evp_acnf.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
322 | evp_acnf.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
323 | evp_acnf.o: ../cryptlib.h evp_acnf.c | ||
324 | evp_enc.o: ../../e_os.h ../../include/openssl/asn1.h | ||
325 | evp_enc.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
326 | evp_enc.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
327 | evp_enc.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
328 | evp_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
329 | evp_enc.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
330 | evp_enc.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
331 | evp_enc.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
332 | evp_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
333 | evp_enc.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
334 | evp_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
335 | evp_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
336 | evp_enc.o: ../cryptlib.h evp_enc.c evp_locl.h | ||
337 | evp_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
338 | evp_err.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
339 | evp_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
340 | evp_err.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
341 | evp_err.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
342 | evp_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
343 | evp_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
344 | evp_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
345 | evp_err.o: evp_err.c | ||
346 | evp_key.o: ../../e_os.h ../../include/openssl/asn1.h | ||
347 | evp_key.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
348 | evp_key.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
349 | evp_key.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
350 | evp_key.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
351 | evp_key.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
352 | evp_key.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
353 | evp_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
354 | evp_key.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
355 | evp_key.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
356 | evp_key.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
357 | evp_key.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
358 | evp_key.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
359 | evp_key.o: ../cryptlib.h evp_key.c | ||
360 | evp_lib.o: ../../e_os.h ../../include/openssl/asn1.h | ||
361 | evp_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
362 | evp_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
363 | evp_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
364 | evp_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
365 | evp_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
366 | evp_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
367 | evp_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
368 | evp_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
369 | evp_lib.o: ../cryptlib.h evp_lib.c | ||
370 | evp_pbe.o: ../../e_os.h ../../include/openssl/asn1.h | ||
371 | evp_pbe.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
372 | evp_pbe.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
373 | evp_pbe.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
374 | evp_pbe.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
375 | evp_pbe.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
376 | evp_pbe.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
377 | evp_pbe.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
378 | evp_pbe.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
379 | evp_pbe.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
380 | evp_pbe.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
381 | evp_pbe.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
382 | evp_pbe.o: ../../include/openssl/x509_vfy.h ../cryptlib.h evp_pbe.c | ||
383 | evp_pkey.o: ../../e_os.h ../../include/openssl/asn1.h | ||
384 | evp_pkey.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
385 | evp_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
386 | evp_pkey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
387 | evp_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
388 | evp_pkey.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
389 | evp_pkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
390 | evp_pkey.o: ../../include/openssl/opensslconf.h | ||
391 | evp_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
392 | evp_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
393 | evp_pkey.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
394 | evp_pkey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
395 | evp_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
396 | evp_pkey.o: ../../include/openssl/x509_vfy.h ../cryptlib.h evp_pkey.c | ||
397 | m_dss.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
398 | m_dss.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
399 | m_dss.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
400 | m_dss.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
401 | m_dss.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
402 | m_dss.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
403 | m_dss.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
404 | m_dss.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
405 | m_dss.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
406 | m_dss.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
407 | m_dss.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
408 | m_dss.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
409 | m_dss.o: ../cryptlib.h m_dss.c | ||
410 | m_dss1.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
411 | m_dss1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
412 | m_dss1.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
413 | m_dss1.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
414 | m_dss1.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
415 | m_dss1.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
416 | m_dss1.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
417 | m_dss1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
418 | m_dss1.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
419 | m_dss1.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
420 | m_dss1.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
421 | m_dss1.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
422 | m_dss1.o: ../cryptlib.h m_dss1.c | ||
423 | m_md2.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
424 | m_md2.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
425 | m_md2.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
426 | m_md2.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
427 | m_md2.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
428 | m_md2.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
429 | m_md2.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
430 | m_md2.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
431 | m_md2.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
432 | m_md2.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
433 | m_md2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
434 | m_md2.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
435 | m_md2.o: ../../include/openssl/x509_vfy.h ../cryptlib.h m_md2.c | ||
436 | m_md4.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
437 | m_md4.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
438 | m_md4.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
439 | m_md4.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
440 | m_md4.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
441 | m_md4.o: ../../include/openssl/lhash.h ../../include/openssl/md4.h | ||
442 | m_md4.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
443 | m_md4.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
444 | m_md4.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
445 | m_md4.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
446 | m_md4.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
447 | m_md4.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
448 | m_md4.o: ../../include/openssl/x509_vfy.h ../cryptlib.h m_md4.c | ||
449 | m_md5.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
450 | m_md5.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
451 | m_md5.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
452 | m_md5.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
453 | m_md5.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
454 | m_md5.o: ../../include/openssl/lhash.h ../../include/openssl/md5.h | ||
455 | m_md5.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
456 | m_md5.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
457 | m_md5.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
458 | m_md5.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
459 | m_md5.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
460 | m_md5.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
461 | m_md5.o: ../../include/openssl/x509_vfy.h ../cryptlib.h m_md5.c | ||
462 | m_mdc2.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
463 | m_mdc2.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
464 | m_mdc2.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
465 | m_mdc2.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
466 | m_mdc2.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
467 | m_mdc2.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
468 | m_mdc2.o: ../../include/openssl/lhash.h ../../include/openssl/mdc2.h | ||
469 | m_mdc2.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
470 | m_mdc2.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
471 | m_mdc2.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
472 | m_mdc2.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
473 | m_mdc2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
474 | m_mdc2.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
475 | m_mdc2.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
476 | m_mdc2.o: ../../include/openssl/x509_vfy.h ../cryptlib.h m_mdc2.c | ||
477 | m_null.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
478 | m_null.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
479 | m_null.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
480 | m_null.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
481 | m_null.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
482 | m_null.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
483 | m_null.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
484 | m_null.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
485 | m_null.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
486 | m_null.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
487 | m_null.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
488 | m_null.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
489 | m_null.o: ../cryptlib.h m_null.c | ||
490 | m_ripemd.o: ../../e_os.h ../../include/openssl/asn1.h | ||
491 | m_ripemd.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
492 | m_ripemd.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
493 | m_ripemd.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
494 | m_ripemd.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
495 | m_ripemd.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
496 | m_ripemd.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
497 | m_ripemd.o: ../../include/openssl/opensslconf.h | ||
498 | m_ripemd.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
499 | m_ripemd.o: ../../include/openssl/pkcs7.h ../../include/openssl/ripemd.h | ||
500 | m_ripemd.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
501 | m_ripemd.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
502 | m_ripemd.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
503 | m_ripemd.o: ../../include/openssl/x509_vfy.h ../cryptlib.h m_ripemd.c | ||
504 | m_sha.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
505 | m_sha.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
506 | m_sha.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
507 | m_sha.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
508 | m_sha.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
509 | m_sha.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
510 | m_sha.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
511 | m_sha.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
512 | m_sha.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
513 | m_sha.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
514 | m_sha.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
515 | m_sha.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
516 | m_sha.o: ../cryptlib.h m_sha.c | ||
517 | m_sha1.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
518 | m_sha1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
519 | m_sha1.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
520 | m_sha1.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
521 | m_sha1.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
522 | m_sha1.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
523 | m_sha1.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
524 | m_sha1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
525 | m_sha1.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
526 | m_sha1.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
527 | m_sha1.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
528 | m_sha1.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
529 | m_sha1.o: ../cryptlib.h m_sha1.c | ||
530 | names.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
531 | names.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
532 | names.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
533 | names.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
534 | names.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
535 | names.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
536 | names.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
537 | names.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
538 | names.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
539 | names.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
540 | names.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
541 | names.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
542 | names.o: ../cryptlib.h names.c | ||
543 | p5_crpt.o: ../../e_os.h ../../include/openssl/asn1.h | ||
544 | p5_crpt.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
545 | p5_crpt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
546 | p5_crpt.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
547 | p5_crpt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
548 | p5_crpt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
549 | p5_crpt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
550 | p5_crpt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
551 | p5_crpt.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
552 | p5_crpt.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
553 | p5_crpt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
554 | p5_crpt.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
555 | p5_crpt.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p5_crpt.c | ||
556 | p5_crpt2.o: ../../e_os.h ../../include/openssl/asn1.h | ||
557 | p5_crpt2.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
558 | p5_crpt2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
559 | p5_crpt2.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
560 | p5_crpt2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
561 | p5_crpt2.o: ../../include/openssl/evp.h ../../include/openssl/hmac.h | ||
562 | p5_crpt2.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
563 | p5_crpt2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
564 | p5_crpt2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
565 | p5_crpt2.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
566 | p5_crpt2.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
567 | p5_crpt2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
568 | p5_crpt2.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
569 | p5_crpt2.o: ../cryptlib.h p5_crpt2.c | ||
570 | p_dec.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
571 | p_dec.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
572 | p_dec.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
573 | p_dec.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
574 | p_dec.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
575 | p_dec.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
576 | p_dec.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
577 | p_dec.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
578 | p_dec.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
579 | p_dec.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
580 | p_dec.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
581 | p_dec.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
582 | p_dec.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p_dec.c | ||
583 | p_enc.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
584 | p_enc.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
585 | p_enc.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
586 | p_enc.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
587 | p_enc.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
588 | p_enc.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
589 | p_enc.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
590 | p_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
591 | p_enc.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
592 | p_enc.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
593 | p_enc.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
594 | p_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
595 | p_enc.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p_enc.c | ||
596 | p_lib.o: ../../e_os.h ../../include/openssl/asn1.h | ||
597 | p_lib.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
598 | p_lib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
599 | p_lib.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
600 | p_lib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
601 | p_lib.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
602 | p_lib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
603 | p_lib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
604 | p_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
605 | p_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
606 | p_lib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
607 | p_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
608 | p_lib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
609 | p_lib.o: ../cryptlib.h p_lib.c | ||
610 | p_open.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
611 | p_open.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
612 | p_open.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
613 | p_open.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
614 | p_open.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
615 | p_open.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
616 | p_open.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
617 | p_open.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
618 | p_open.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
619 | p_open.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
620 | p_open.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
621 | p_open.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
622 | p_open.o: ../cryptlib.h p_open.c | ||
623 | p_seal.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
624 | p_seal.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
625 | p_seal.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
626 | p_seal.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
627 | p_seal.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
628 | p_seal.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
629 | p_seal.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
630 | p_seal.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
631 | p_seal.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
632 | p_seal.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
633 | p_seal.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
634 | p_seal.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
635 | p_seal.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p_seal.c | ||
636 | p_sign.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
637 | p_sign.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
638 | p_sign.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
639 | p_sign.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
640 | p_sign.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
641 | p_sign.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
642 | p_sign.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
643 | p_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
644 | p_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
645 | p_sign.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
646 | p_sign.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
647 | p_sign.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
648 | p_sign.o: ../cryptlib.h p_sign.c | ||
649 | p_verify.o: ../../e_os.h ../../include/openssl/asn1.h | ||
650 | p_verify.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
651 | p_verify.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
652 | p_verify.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
653 | p_verify.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
654 | p_verify.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
655 | p_verify.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
656 | p_verify.o: ../../include/openssl/opensslconf.h | ||
657 | p_verify.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
658 | p_verify.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
659 | p_verify.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
660 | p_verify.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
661 | p_verify.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
662 | p_verify.o: ../cryptlib.h p_verify.c | ||
diff --git a/src/lib/libcrypto/hmac/Makefile.ssl b/src/lib/libcrypto/hmac/Makefile.ssl index 7a042b7261..e6cf1a0879 100644 --- a/src/lib/libcrypto/hmac/Makefile.ssl +++ b/src/lib/libcrypto/hmac/Makefile.ssl | |||
@@ -7,9 +7,12 @@ TOP= ../.. | |||
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= | 8 | INCLUDES= |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
14 | AR= ar r | 17 | AR= ar r |
15 | 18 | ||
@@ -37,24 +40,23 @@ all: lib | |||
37 | 40 | ||
38 | lib: $(LIBOBJ) | 41 | lib: $(LIBOBJ) |
39 | $(AR) $(LIB) $(LIBOBJ) | 42 | $(AR) $(LIB) $(LIBOBJ) |
40 | sh $(TOP)/util/ranlib.sh $(LIB) | 43 | $(RANLIB) $(LIB) || echo Never mind. |
41 | @touch lib | 44 | @touch lib |
42 | 45 | ||
43 | files: | 46 | files: |
44 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 47 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
45 | 48 | ||
46 | links: | 49 | links: |
47 | /bin/rm -f Makefile | 50 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
48 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 51 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
49 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 52 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
50 | $(TOP)/util/mklink.sh ../../test $(TEST) | 53 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
51 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
52 | 54 | ||
53 | install: | 55 | install: |
54 | @for i in $(EXHEADER) ; \ | 56 | @for i in $(EXHEADER) ; \ |
55 | do \ | 57 | do \ |
56 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 58 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
57 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 59 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
58 | done; | 60 | done; |
59 | 61 | ||
60 | tags: | 62 | tags: |
@@ -66,15 +68,22 @@ lint: | |||
66 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
67 | 69 | ||
68 | depend: | 70 | depend: |
69 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
70 | 72 | ||
71 | dclean: | 73 | dclean: |
72 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
73 | mv -f Makefile.new $(MAKEFILE) | 75 | mv -f Makefile.new $(MAKEFILE) |
74 | 76 | ||
75 | clean: | 77 | clean: |
76 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 78 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
77 | |||
78 | errors: | ||
79 | 79 | ||
80 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
81 | |||
82 | hmac.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
83 | hmac.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
84 | hmac.o: ../../include/openssl/e_os2.h ../../include/openssl/evp.h | ||
85 | hmac.o: ../../include/openssl/hmac.h ../../include/openssl/obj_mac.h | ||
86 | hmac.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
87 | hmac.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
88 | hmac.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
89 | hmac.o: ../../include/openssl/symhacks.h hmac.c | ||
diff --git a/src/lib/libcrypto/idea/Makefile.ssl b/src/lib/libcrypto/idea/Makefile.ssl index 41b42ce03b..a3ac920371 100644 --- a/src/lib/libcrypto/idea/Makefile.ssl +++ b/src/lib/libcrypto/idea/Makefile.ssl | |||
@@ -7,9 +7,12 @@ TOP= ../.. | |||
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= | 8 | INCLUDES= |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
14 | AR= ar r | 17 | AR= ar r |
15 | 18 | ||
@@ -37,24 +40,23 @@ all: lib | |||
37 | 40 | ||
38 | lib: $(LIBOBJ) | 41 | lib: $(LIBOBJ) |
39 | $(AR) $(LIB) $(LIBOBJ) | 42 | $(AR) $(LIB) $(LIBOBJ) |
40 | sh $(TOP)/util/ranlib.sh $(LIB) | 43 | $(RANLIB) $(LIB) || echo Never mind. |
41 | @touch lib | 44 | @touch lib |
42 | 45 | ||
43 | files: | 46 | files: |
44 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 47 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
45 | 48 | ||
46 | links: | 49 | links: |
47 | /bin/rm -f Makefile | 50 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
48 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 51 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
49 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 52 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
50 | $(TOP)/util/mklink.sh ../../test $(TEST) | 53 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
51 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
52 | 54 | ||
53 | install: | 55 | install: |
54 | @for i in $(EXHEADER) ; \ | 56 | @for i in $(EXHEADER) ; \ |
55 | do \ | 57 | do \ |
56 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 58 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
57 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 59 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
58 | done; | 60 | done; |
59 | 61 | ||
60 | tags: | 62 | tags: |
@@ -66,15 +68,24 @@ lint: | |||
66 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
67 | 69 | ||
68 | depend: | 70 | depend: |
69 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
70 | 72 | ||
71 | dclean: | 73 | dclean: |
72 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
73 | mv -f Makefile.new $(MAKEFILE) | 75 | mv -f Makefile.new $(MAKEFILE) |
74 | 76 | ||
75 | clean: | 77 | clean: |
76 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 78 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
77 | |||
78 | errors: | ||
79 | 79 | ||
80 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
81 | |||
82 | i_cbc.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h | ||
83 | i_cbc.o: i_cbc.c idea_lcl.h | ||
84 | i_cfb64.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h | ||
85 | i_cfb64.o: i_cfb64.c idea_lcl.h | ||
86 | i_ecb.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h | ||
87 | i_ecb.o: ../../include/openssl/opensslv.h i_ecb.c idea_lcl.h | ||
88 | i_ofb64.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h | ||
89 | i_ofb64.o: i_ofb64.c idea_lcl.h | ||
90 | i_skey.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h | ||
91 | i_skey.o: i_skey.c idea_lcl.h | ||
diff --git a/src/lib/libcrypto/lhash/Makefile.ssl b/src/lib/libcrypto/lhash/Makefile.ssl index cb08547b4f..a6851bcd36 100644 --- a/src/lib/libcrypto/lhash/Makefile.ssl +++ b/src/lib/libcrypto/lhash/Makefile.ssl | |||
@@ -7,9 +7,12 @@ TOP= ../.. | |||
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= | 8 | INCLUDES= |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
14 | AR= ar r | 17 | AR= ar r |
15 | 18 | ||
@@ -37,24 +40,23 @@ all: lib | |||
37 | 40 | ||
38 | lib: $(LIBOBJ) | 41 | lib: $(LIBOBJ) |
39 | $(AR) $(LIB) $(LIBOBJ) | 42 | $(AR) $(LIB) $(LIBOBJ) |
40 | sh $(TOP)/util/ranlib.sh $(LIB) | 43 | $(RANLIB) $(LIB) || echo Never mind. |
41 | @touch lib | 44 | @touch lib |
42 | 45 | ||
43 | files: | 46 | files: |
44 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 47 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
45 | 48 | ||
46 | links: | 49 | links: |
47 | /bin/rm -f Makefile | 50 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
48 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 51 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
49 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 52 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
50 | $(TOP)/util/mklink.sh ../../test $(TEST) | 53 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
51 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
52 | 54 | ||
53 | install: | 55 | install: |
54 | @for i in $(EXHEADER) ; \ | 56 | @for i in $(EXHEADER) ; \ |
55 | do \ | 57 | do \ |
56 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 58 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
57 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 59 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
58 | done; | 60 | done; |
59 | 61 | ||
60 | tags: | 62 | tags: |
@@ -66,15 +68,26 @@ lint: | |||
66 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
67 | 69 | ||
68 | depend: | 70 | depend: |
69 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
70 | 72 | ||
71 | dclean: | 73 | dclean: |
72 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
73 | mv -f Makefile.new $(MAKEFILE) | 75 | mv -f Makefile.new $(MAKEFILE) |
74 | 76 | ||
75 | clean: | 77 | clean: |
76 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 78 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
77 | |||
78 | errors: | ||
79 | 79 | ||
80 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
81 | |||
82 | lh_stats.o: ../../e_os.h ../../include/openssl/bio.h | ||
83 | lh_stats.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
84 | lh_stats.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
85 | lh_stats.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
86 | lh_stats.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
87 | lh_stats.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
88 | lh_stats.o: ../cryptlib.h lh_stats.c | ||
89 | lhash.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | ||
90 | lhash.o: ../../include/openssl/e_os2.h ../../include/openssl/lhash.h | ||
91 | lhash.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
92 | lhash.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
93 | lhash.o: ../../include/openssl/symhacks.h lhash.c | ||
diff --git a/src/lib/libcrypto/md2/Makefile.ssl b/src/lib/libcrypto/md2/Makefile.ssl index d8e7200c83..cd4f42f2ed 100644 --- a/src/lib/libcrypto/md2/Makefile.ssl +++ b/src/lib/libcrypto/md2/Makefile.ssl | |||
@@ -2,14 +2,17 @@ | |||
2 | # SSLeay/crypto/md/Makefile | 2 | # SSLeay/crypto/md/Makefile |
3 | # | 3 | # |
4 | 4 | ||
5 | DIR= md | 5 | DIR= md2 |
6 | TOP= ../.. | 6 | TOP= ../.. |
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= | 8 | INCLUDES= |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
14 | AR= ar r | 17 | AR= ar r |
15 | 18 | ||
@@ -20,7 +23,7 @@ TEST=md2test.c | |||
20 | APPS= | 23 | APPS= |
21 | 24 | ||
22 | LIB=$(TOP)/libcrypto.a | 25 | LIB=$(TOP)/libcrypto.a |
23 | LIBSRC=md2_dgst.c md5_one.c | 26 | LIBSRC=md2_dgst.c md2_one.c |
24 | LIBOBJ=md2_dgst.o md2_one.o | 27 | LIBOBJ=md2_dgst.o md2_one.o |
25 | 28 | ||
26 | SRC= $(LIBSRC) | 29 | SRC= $(LIBSRC) |
@@ -37,24 +40,23 @@ all: lib | |||
37 | 40 | ||
38 | lib: $(LIBOBJ) | 41 | lib: $(LIBOBJ) |
39 | $(AR) $(LIB) $(LIBOBJ) | 42 | $(AR) $(LIB) $(LIBOBJ) |
40 | sh $(TOP)/util/ranlib.sh $(LIB) | 43 | $(RANLIB) $(LIB) || echo Never mind. |
41 | @touch lib | 44 | @touch lib |
42 | 45 | ||
43 | files: | 46 | files: |
44 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 47 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
45 | 48 | ||
46 | links: | 49 | links: |
47 | /bin/rm -f Makefile | 50 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
48 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 51 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
49 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 52 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
50 | $(TOP)/util/mklink.sh ../../test $(TEST) | 53 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
51 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
52 | 54 | ||
53 | install: | 55 | install: |
54 | @for i in $(EXHEADER) ; \ | 56 | @for i in $(EXHEADER) ; \ |
55 | do \ | 57 | do \ |
56 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 58 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
57 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 59 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
58 | done; | 60 | done; |
59 | 61 | ||
60 | tags: | 62 | tags: |
@@ -66,15 +68,23 @@ lint: | |||
66 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
67 | 69 | ||
68 | depend: | 70 | depend: |
69 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
70 | 72 | ||
71 | dclean: | 73 | dclean: |
72 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
73 | mv -f Makefile.new $(MAKEFILE) | 75 | mv -f Makefile.new $(MAKEFILE) |
74 | 76 | ||
75 | clean: | 77 | clean: |
76 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 78 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
77 | |||
78 | errors: | ||
79 | 79 | ||
80 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
81 | |||
82 | md2_dgst.o: ../../include/openssl/md2.h ../../include/openssl/opensslconf.h | ||
83 | md2_dgst.o: ../../include/openssl/opensslv.h md2_dgst.c | ||
84 | md2_one.o: ../../e_os.h ../../include/openssl/bio.h | ||
85 | md2_one.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
86 | md2_one.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
87 | md2_one.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
88 | md2_one.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
89 | md2_one.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
90 | md2_one.o: ../../include/openssl/symhacks.h ../cryptlib.h md2_one.c | ||
diff --git a/src/lib/libcrypto/md4/Makefile.ssl b/src/lib/libcrypto/md4/Makefile.ssl index 5341bf5b46..12eee13608 100644 --- a/src/lib/libcrypto/md4/Makefile.ssl +++ b/src/lib/libcrypto/md4/Makefile.ssl | |||
@@ -12,7 +12,8 @@ INSTALL_PREFIX= | |||
12 | OPENSSLDIR= /usr/local/ssl | 12 | OPENSSLDIR= /usr/local/ssl |
13 | INSTALLTOP=/usr/local/ssl | 13 | INSTALLTOP=/usr/local/ssl |
14 | MAKE= make -f Makefile.ssl | 14 | MAKE= make -f Makefile.ssl |
15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) | 15 | MAKEDEPPROG= makedepend |
16 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
16 | MAKEFILE= Makefile.ssl | 17 | MAKEFILE= Makefile.ssl |
17 | AR= ar r | 18 | AR= ar r |
18 | 19 | ||
@@ -40,7 +41,7 @@ all: lib | |||
40 | 41 | ||
41 | lib: $(LIBOBJ) | 42 | lib: $(LIBOBJ) |
42 | $(AR) $(LIB) $(LIBOBJ) | 43 | $(AR) $(LIB) $(LIBOBJ) |
43 | $(RANLIB) $(LIB) | 44 | $(RANLIB) $(LIB) || echo Never mind. |
44 | @touch lib | 45 | @touch lib |
45 | 46 | ||
46 | files: | 47 | files: |
@@ -79,6 +80,9 @@ clean: | |||
79 | 80 | ||
80 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 81 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
81 | 82 | ||
82 | md4_dgst.o: ../../include/openssl/md4.h ../../include/openssl/opensslconf.h | 83 | md4_dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/md4.h |
83 | md4_dgst.o: ../../include/openssl/opensslv.h ../md32_common.h md4_locl.h | 84 | md4_dgst.o: ../../include/openssl/opensslconf.h |
84 | md4_one.o: ../../include/openssl/md4.h | 85 | md4_dgst.o: ../../include/openssl/opensslv.h ../md32_common.h md4_dgst.c |
86 | md4_dgst.o: md4_locl.h | ||
87 | md4_one.o: ../../include/openssl/e_os2.h ../../include/openssl/md4.h | ||
88 | md4_one.o: ../../include/openssl/opensslconf.h md4_one.c | ||
diff --git a/src/lib/libcrypto/md5/Makefile.ssl b/src/lib/libcrypto/md5/Makefile.ssl index 47e1ce05ca..fd0d63c339 100644 --- a/src/lib/libcrypto/md5/Makefile.ssl +++ b/src/lib/libcrypto/md5/Makefile.ssl | |||
@@ -8,9 +8,12 @@ CC= cc | |||
8 | CPP= $(CC) -E | 8 | CPP= $(CC) -E |
9 | INCLUDES= | 9 | INCLUDES= |
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 | AR= ar r | 18 | AR= ar r |
16 | 19 | ||
@@ -18,9 +21,17 @@ MD5_ASM_OBJ= | |||
18 | 21 | ||
19 | CFLAGS= $(INCLUDES) $(CFLAG) | 22 | CFLAGS= $(INCLUDES) $(CFLAG) |
20 | 23 | ||
24 | # We let the C compiler driver to take care of .s files. This is done in | ||
25 | # order to be excused from maintaining a separate set of architecture | ||
26 | # dependent assembler flags. E.g. if you throw -mcpu=ultrasparc at SPARC | ||
27 | # gcc, then the driver will automatically translate it to -xarch=v8plus | ||
28 | # and pass it down to assembler. | ||
29 | AS=$(CC) -c | ||
30 | ASFLAGS=$(CFLAGS) | ||
31 | |||
21 | GENERAL=Makefile | 32 | GENERAL=Makefile |
22 | TEST=md5test.c | 33 | TEST=md5test.c |
23 | APPS=md5.c | 34 | APPS= |
24 | 35 | ||
25 | LIB=$(TOP)/libcrypto.a | 36 | LIB=$(TOP)/libcrypto.a |
26 | LIBSRC=md5_dgst.c md5_one.c | 37 | LIBSRC=md5_dgst.c md5_one.c |
@@ -40,12 +51,12 @@ all: lib | |||
40 | 51 | ||
41 | lib: $(LIBOBJ) | 52 | lib: $(LIBOBJ) |
42 | $(AR) $(LIB) $(LIBOBJ) | 53 | $(AR) $(LIB) $(LIBOBJ) |
43 | sh $(TOP)/util/ranlib.sh $(LIB) | 54 | $(RANLIB) $(LIB) || echo Never mind. |
44 | @touch lib | 55 | @touch lib |
45 | 56 | ||
46 | # elf | 57 | # elf |
47 | asm/mx86-elf.o: asm/mx86unix.cpp | 58 | asm/mx86-elf.o: asm/mx86unix.cpp |
48 | $(CPP) -DELF asm/mx86unix.cpp | as -o asm/mx86-elf.o | 59 | $(CPP) -DELF -x c asm/mx86unix.cpp | as -o asm/mx86-elf.o |
49 | 60 | ||
50 | # solaris | 61 | # solaris |
51 | asm/mx86-sol.o: asm/mx86unix.cpp | 62 | asm/mx86-sol.o: asm/mx86unix.cpp |
@@ -59,26 +70,43 @@ asm/mx86-out.o: asm/mx86unix.cpp | |||
59 | 70 | ||
60 | # bsdi | 71 | # bsdi |
61 | asm/mx86bsdi.o: asm/mx86unix.cpp | 72 | asm/mx86bsdi.o: asm/mx86unix.cpp |
62 | $(CPP) -DBSDI asm/mx86unix.cpp | as -o asm/mx86bsdi.o | 73 | $(CPP) -DBSDI asm/mx86unix.cpp | sed 's/ :/:/' | as -o asm/mx86bsdi.o |
74 | |||
75 | asm/mx86unix.cpp: asm/md5-586.pl ../perlasm/x86asm.pl | ||
76 | (cd asm; $(PERL) md5-586.pl cpp >mx86unix.cpp) | ||
77 | |||
78 | asm/md5-sparcv8plus.o: asm/md5-sparcv9.S | ||
79 | $(CC) $(ASFLAGS) -DMD5_BLOCK_DATA_ORDER -c \ | ||
80 | -o asm/md5-sparcv8plus.o asm/md5-sparcv9.S | ||
63 | 81 | ||
64 | asm/mx86unix.cpp: | 82 | # Old GNU assembler doesn't understand V9 instructions, so we |
65 | (cd asm; perl md5-586.pl cpp >mx86unix.cpp) | 83 | # hire /usr/ccs/bin/as to do the job. Note that option is called |
84 | # *-gcc27, but even gcc 2>=8 users may experience similar problem | ||
85 | # if they didn't bother to upgrade GNU assembler. Such users should | ||
86 | # not choose this option, but be adviced to *remove* GNU assembler | ||
87 | # or upgrade it. | ||
88 | asm/md5-sparcv8plus-gcc27.o: asm/md5-sparcv9.S | ||
89 | $(CC) $(ASFLAGS) -DMD5_BLOCK_DATA_ORDER -E asm/md5-sparcv9.S | \ | ||
90 | /usr/ccs/bin/as -xarch=v8plus - -o asm/md5-sparcv8plus-gcc27.o | ||
91 | |||
92 | asm/md5-sparcv9.o: asm/md5-sparcv9.S | ||
93 | $(CC) $(ASFLAGS) -DMD5_BLOCK_DATA_ORDER -c \ | ||
94 | -o asm/md5-sparcv9.o asm/md5-sparcv9.S | ||
66 | 95 | ||
67 | files: | 96 | files: |
68 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 97 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
69 | 98 | ||
70 | links: | 99 | links: |
71 | /bin/rm -f Makefile | 100 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
72 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 101 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
73 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 102 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
74 | $(TOP)/util/mklink.sh ../../test $(TEST) | 103 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
75 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
76 | 104 | ||
77 | install: | 105 | install: |
78 | @for i in $(EXHEADER) ; \ | 106 | @for i in $(EXHEADER) ; \ |
79 | do \ | 107 | do \ |
80 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 108 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
81 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 109 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
82 | done; | 110 | done; |
83 | 111 | ||
84 | tags: | 112 | tags: |
@@ -90,15 +118,18 @@ lint: | |||
90 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 118 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
91 | 119 | ||
92 | depend: | 120 | depend: |
93 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 121 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
94 | 122 | ||
95 | dclean: | 123 | dclean: |
96 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 124 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
97 | mv -f Makefile.new $(MAKEFILE) | 125 | mv -f Makefile.new $(MAKEFILE) |
98 | 126 | ||
99 | clean: | 127 | clean: |
100 | /bin/rm -f *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 128 | rm -f asm/mx86unix.cpp *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
101 | |||
102 | errors: | ||
103 | 129 | ||
104 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 130 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
131 | |||
132 | md5_dgst.o: ../../include/openssl/md5.h ../../include/openssl/opensslconf.h | ||
133 | md5_dgst.o: ../../include/openssl/opensslv.h ../md32_common.h md5_dgst.c | ||
134 | md5_dgst.o: md5_locl.h | ||
135 | md5_one.o: ../../include/openssl/md5.h md5_one.c | ||
diff --git a/src/lib/libcrypto/mdc2/Makefile.ssl b/src/lib/libcrypto/mdc2/Makefile.ssl index 495a2789a0..19cd3520eb 100644 --- a/src/lib/libcrypto/mdc2/Makefile.ssl +++ b/src/lib/libcrypto/mdc2/Makefile.ssl | |||
@@ -7,9 +7,12 @@ TOP= ../.. | |||
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= | 8 | INCLUDES= |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
14 | AR= ar r | 17 | AR= ar r |
15 | 18 | ||
@@ -37,24 +40,23 @@ all: lib | |||
37 | 40 | ||
38 | lib: $(LIBOBJ) | 41 | lib: $(LIBOBJ) |
39 | $(AR) $(LIB) $(LIBOBJ) | 42 | $(AR) $(LIB) $(LIBOBJ) |
40 | sh $(TOP)/util/ranlib.sh $(LIB) | 43 | $(RANLIB) $(LIB) || echo Never mind. |
41 | @touch lib | 44 | @touch lib |
42 | 45 | ||
43 | files: | 46 | files: |
44 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 47 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
45 | 48 | ||
46 | links: | 49 | links: |
47 | /bin/rm -f Makefile | 50 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
48 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 51 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
49 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 52 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
50 | $(TOP)/util/mklink.sh ../../test $(TEST) | 53 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
51 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
52 | 54 | ||
53 | install: | 55 | install: |
54 | @for i in $(EXHEADER) ; \ | 56 | @for i in $(EXHEADER) ; \ |
55 | do \ | 57 | do \ |
56 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 58 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
57 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 59 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
58 | done; | 60 | done; |
59 | 61 | ||
60 | tags: | 62 | tags: |
@@ -66,15 +68,31 @@ lint: | |||
66 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
67 | 69 | ||
68 | depend: | 70 | depend: |
69 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
70 | 72 | ||
71 | dclean: | 73 | dclean: |
72 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
73 | mv -f Makefile.new $(MAKEFILE) | 75 | mv -f Makefile.new $(MAKEFILE) |
74 | 76 | ||
75 | clean: | 77 | clean: |
76 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 78 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
77 | |||
78 | errors: | ||
79 | 79 | ||
80 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
81 | |||
82 | mdc2_one.o: ../../e_os.h ../../include/openssl/bio.h | ||
83 | mdc2_one.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
84 | mdc2_one.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
85 | mdc2_one.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
86 | mdc2_one.o: ../../include/openssl/lhash.h ../../include/openssl/mdc2.h | ||
87 | mdc2_one.o: ../../include/openssl/opensslconf.h | ||
88 | mdc2_one.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
89 | mdc2_one.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
90 | mdc2_one.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
91 | mdc2_one.o: ../cryptlib.h mdc2_one.c | ||
92 | mdc2dgst.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
93 | mdc2dgst.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
94 | mdc2dgst.o: ../../include/openssl/mdc2.h ../../include/openssl/opensslconf.h | ||
95 | mdc2dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
96 | mdc2dgst.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
97 | mdc2dgst.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
98 | mdc2dgst.o: mdc2dgst.c | ||
diff --git a/src/lib/libcrypto/objects/Makefile.ssl b/src/lib/libcrypto/objects/Makefile.ssl index 320523cea1..efe71eeb35 100644 --- a/src/lib/libcrypto/objects/Makefile.ssl +++ b/src/lib/libcrypto/objects/Makefile.ssl | |||
@@ -5,29 +5,31 @@ | |||
5 | DIR= objects | 5 | DIR= objects |
6 | TOP= ../.. | 6 | TOP= ../.. |
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
14 | AR= ar r | 17 | AR= ar r |
18 | PERL= perl | ||
15 | 19 | ||
16 | CFLAGS= $(INCLUDES) $(CFLAG) | 20 | CFLAGS= $(INCLUDES) $(CFLAG) |
17 | 21 | ||
18 | ERR=objects | ||
19 | ERRC=obj_err | ||
20 | GENERAL=Makefile README | 22 | GENERAL=Makefile README |
21 | TEST= | 23 | TEST= |
22 | APPS= | 24 | APPS= |
23 | 25 | ||
24 | LIB=$(TOP)/libcrypto.a | 26 | LIB=$(TOP)/libcrypto.a |
25 | LIBSRC= obj_dat.c obj_lib.c $(ERRC).c | 27 | LIBSRC= o_names.c obj_dat.c obj_lib.c obj_err.c |
26 | LIBOBJ= obj_dat.o obj_lib.o $(ERRC).o | 28 | LIBOBJ= o_names.o obj_dat.o obj_lib.o obj_err.o |
27 | 29 | ||
28 | SRC= $(LIBSRC) | 30 | SRC= $(LIBSRC) |
29 | 31 | ||
30 | EXHEADER= objects.h | 32 | EXHEADER= objects.h obj_mac.h |
31 | HEADER= $(EXHEADER) obj_dat.h | 33 | HEADER= $(EXHEADER) obj_dat.h |
32 | 34 | ||
33 | ALL= $(GENERAL) $(SRC) $(HEADER) | 35 | ALL= $(GENERAL) $(SRC) $(HEADER) |
@@ -37,29 +39,32 @@ top: | |||
37 | 39 | ||
38 | all: obj_dat.h lib | 40 | all: obj_dat.h lib |
39 | 41 | ||
40 | obj_dat.h: objects.h obj_dat.pl | ||
41 | perl ./obj_dat.pl < objects.h > obj_dat.h | ||
42 | |||
43 | lib: $(LIBOBJ) | 42 | lib: $(LIBOBJ) |
44 | $(AR) $(LIB) $(LIBOBJ) | 43 | $(AR) $(LIB) $(LIBOBJ) |
45 | sh $(TOP)/util/ranlib.sh $(LIB) | 44 | $(RANLIB) $(LIB) || echo Never mind. |
46 | @touch lib | 45 | @touch lib |
47 | 46 | ||
47 | obj_dat.h: obj_dat.pl obj_mac.h | ||
48 | $(PERL) obj_dat.pl obj_mac.h obj_dat.h | ||
49 | |||
50 | # objects.pl both reads and writes obj_mac.num | ||
51 | obj_mac.h: objects.pl objects.txt obj_mac.num | ||
52 | $(PERL) objects.pl objects.txt obj_mac.num obj_mac.h | ||
53 | |||
48 | files: | 54 | files: |
49 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 55 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
50 | 56 | ||
51 | links: | 57 | links: |
52 | /bin/rm -f Makefile | 58 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
53 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 59 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
54 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 60 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
55 | $(TOP)/util/mklink.sh ../../test $(TEST) | 61 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
56 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
57 | 62 | ||
58 | install: | 63 | install: |
59 | @for i in $(EXHEADER) ; \ | 64 | @for i in $(EXHEADER) ; \ |
60 | do \ | 65 | do \ |
61 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 66 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
62 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 67 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
63 | done; | 68 | done; |
64 | 69 | ||
65 | tags: | 70 | tags: |
@@ -71,17 +76,48 @@ lint: | |||
71 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 76 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
72 | 77 | ||
73 | depend: | 78 | depend: |
74 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 79 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
75 | 80 | ||
76 | dclean: | 81 | dclean: |
77 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 82 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
78 | mv -f Makefile.new $(MAKEFILE) | 83 | mv -f Makefile.new $(MAKEFILE) |
79 | 84 | ||
80 | clean: | 85 | clean: |
81 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 86 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
82 | |||
83 | errors: | ||
84 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h | ||
85 | perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c | ||
86 | 87 | ||
87 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 88 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
89 | |||
90 | o_names.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
91 | o_names.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
92 | o_names.o: ../../include/openssl/e_os2.h ../../include/openssl/lhash.h | ||
93 | o_names.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
94 | o_names.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
95 | o_names.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
96 | o_names.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
97 | o_names.o: o_names.c | ||
98 | obj_dat.o: ../../e_os.h ../../include/openssl/asn1.h | ||
99 | obj_dat.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
100 | obj_dat.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
101 | obj_dat.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
102 | obj_dat.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
103 | obj_dat.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
104 | obj_dat.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
105 | obj_dat.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
106 | obj_dat.o: ../../include/openssl/symhacks.h ../cryptlib.h obj_dat.c obj_dat.h | ||
107 | obj_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
108 | obj_err.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
109 | obj_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
110 | obj_err.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
111 | obj_err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
112 | obj_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
113 | obj_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
114 | obj_err.o: ../../include/openssl/symhacks.h obj_err.c | ||
115 | obj_lib.o: ../../e_os.h ../../include/openssl/asn1.h | ||
116 | obj_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
117 | obj_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
118 | obj_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
119 | obj_lib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
120 | obj_lib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
121 | obj_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
122 | obj_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
123 | obj_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h obj_lib.c | ||
diff --git a/src/lib/libcrypto/pem/Makefile.ssl b/src/lib/libcrypto/pem/Makefile.ssl index fc04a88fd9..a051b6fecc 100644 --- a/src/lib/libcrypto/pem/Makefile.ssl +++ b/src/lib/libcrypto/pem/Makefile.ssl | |||
@@ -5,32 +5,33 @@ | |||
5 | DIR= pem | 5 | DIR= pem |
6 | TOP= ../.. | 6 | TOP= ../.. |
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
14 | AR= ar r | 17 | AR= ar r |
15 | 18 | ||
16 | CFLAGS= $(INCLUDES) $(CFLAG) | 19 | CFLAGS= $(INCLUDES) $(CFLAG) |
17 | 20 | ||
18 | ERR=pem | ||
19 | ERRC=pem_err | ||
20 | GENERAL=Makefile | 21 | GENERAL=Makefile |
21 | TEST= | 22 | TEST= |
22 | APPS= | 23 | APPS= |
23 | 24 | ||
24 | CTX_SIZE= ctx_size | ||
25 | |||
26 | LIB=$(TOP)/libcrypto.a | 25 | LIB=$(TOP)/libcrypto.a |
27 | LIBSRC= pem_sign.c pem_seal.c pem_info.c pem_lib.c pem_all.c $(ERRC).c | 26 | LIBSRC= pem_sign.c pem_seal.c pem_info.c pem_lib.c pem_all.c pem_err.c \ |
27 | pem_x509.c pem_xaux.c pem_oth.c pem_pk8.c pem_pkey.c | ||
28 | 28 | ||
29 | LIBOBJ= pem_sign.o pem_seal.o pem_info.o pem_lib.o pem_all.o $(ERRC).o | 29 | LIBOBJ= pem_sign.o pem_seal.o pem_info.o pem_lib.o pem_all.o pem_err.o \ |
30 | pem_x509.o pem_xaux.o pem_oth.o pem_pk8.o pem_pkey.o | ||
30 | 31 | ||
31 | SRC= $(LIBSRC) | 32 | SRC= $(LIBSRC) |
32 | 33 | ||
33 | EXHEADER= pem.h | 34 | EXHEADER= pem.h pem2.h |
34 | HEADER= $(EXHEADER) | 35 | HEADER= $(EXHEADER) |
35 | 36 | ||
36 | ALL= $(GENERAL) $(SRC) $(HEADER) | 37 | ALL= $(GENERAL) $(SRC) $(HEADER) |
@@ -38,36 +39,27 @@ ALL= $(GENERAL) $(SRC) $(HEADER) | |||
38 | top: | 39 | top: |
39 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | 40 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) |
40 | 41 | ||
41 | all: pem.h lib | 42 | all: lib |
42 | |||
43 | pem.h: $(CTX_SIZE) | ||
44 | ./$(CTX_SIZE) <pem.org >pem.new | ||
45 | if [ -f pem.h ]; then mv -f pem.h pem.old; fi | ||
46 | mv -f pem.new pem.h | ||
47 | |||
48 | $(CTX_SIZE): $(CTX_SIZE).o | ||
49 | $(CC) $(CFLAGS) -o $(CTX_SIZE) $(CTX_SIZE).o | ||
50 | 43 | ||
51 | lib: $(LIBOBJ) | 44 | lib: $(LIBOBJ) |
52 | $(AR) $(LIB) $(LIBOBJ) | 45 | $(AR) $(LIB) $(LIBOBJ) |
53 | sh $(TOP)/util/ranlib.sh $(LIB) | 46 | $(RANLIB) $(LIB) || echo Never mind. |
54 | @touch lib | 47 | @touch lib |
55 | 48 | ||
56 | files: | 49 | files: |
57 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 50 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
58 | 51 | ||
59 | links: | 52 | links: $(EXHEADER) |
60 | /bin/rm -f Makefile | 53 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
61 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 54 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
62 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 55 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
63 | $(TOP)/util/mklink.sh ../../test $(TEST) | 56 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
64 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
65 | 57 | ||
66 | install: | 58 | install: |
67 | @for i in $(EXHEADER) ; \ | 59 | @for i in $(EXHEADER) ; \ |
68 | do \ | 60 | do \ |
69 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 61 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
70 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 62 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
71 | done; | 63 | done; |
72 | 64 | ||
73 | tags: | 65 | tags: |
@@ -79,18 +71,180 @@ lint: | |||
79 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 71 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
80 | 72 | ||
81 | depend: | 73 | depend: |
82 | $(MAKEDEPEND) $(INCLUDES) $(CTX_SIZE).c $(LIBSRC) | 74 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(LIBSRC) |
83 | 75 | ||
84 | dclean: | 76 | dclean: |
85 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 77 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
86 | mv -f Makefile.new $(MAKEFILE) | 78 | mv -f Makefile.new $(MAKEFILE) |
87 | 79 | ||
88 | clean: | 80 | clean: |
89 | /bin/rm -f $(CTX_SIZE) *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 81 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
90 | |||
91 | errors: | ||
92 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).org # SPECIAL CASE .org | ||
93 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h | ||
94 | perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c | ||
95 | 82 | ||
96 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 83 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
84 | |||
85 | pem_all.o: ../../e_os.h ../../include/openssl/asn1.h | ||
86 | pem_all.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
87 | pem_all.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
88 | pem_all.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
89 | pem_all.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
90 | pem_all.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
91 | pem_all.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
92 | pem_all.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
93 | pem_all.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | ||
94 | pem_all.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h | ||
95 | pem_all.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
96 | pem_all.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
97 | pem_all.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
98 | pem_all.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_all.c | ||
99 | pem_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
100 | pem_err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
101 | pem_err.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
102 | pem_err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
103 | pem_err.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
104 | pem_err.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
105 | pem_err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
106 | pem_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
107 | pem_err.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
108 | pem_err.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
109 | pem_err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
110 | pem_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
111 | pem_err.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
112 | pem_err.o: pem_err.c | ||
113 | pem_info.o: ../../e_os.h ../../include/openssl/asn1.h | ||
114 | pem_info.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
115 | pem_info.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
116 | pem_info.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
117 | pem_info.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
118 | pem_info.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
119 | pem_info.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
120 | pem_info.o: ../../include/openssl/opensslconf.h | ||
121 | pem_info.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
122 | pem_info.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
123 | pem_info.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
124 | pem_info.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
125 | pem_info.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
126 | pem_info.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
127 | pem_info.o: ../cryptlib.h pem_info.c | ||
128 | pem_lib.o: ../../e_os.h ../../include/openssl/asn1.h | ||
129 | pem_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
130 | pem_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
131 | pem_lib.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
132 | pem_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
133 | pem_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
134 | pem_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
135 | pem_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
136 | pem_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
137 | pem_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | ||
138 | pem_lib.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs12.h | ||
139 | pem_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
140 | pem_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
141 | pem_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
142 | pem_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
143 | pem_lib.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
144 | pem_lib.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_lib.c | ||
145 | pem_oth.o: ../../e_os.h ../../include/openssl/asn1.h | ||
146 | pem_oth.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
147 | pem_oth.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
148 | pem_oth.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
149 | pem_oth.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
150 | pem_oth.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
151 | pem_oth.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
152 | pem_oth.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
153 | pem_oth.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | ||
154 | pem_oth.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h | ||
155 | pem_oth.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
156 | pem_oth.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
157 | pem_oth.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
158 | pem_oth.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
159 | pem_oth.o: ../cryptlib.h pem_oth.c | ||
160 | pem_pk8.o: ../../e_os.h ../../include/openssl/asn1.h | ||
161 | pem_pk8.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
162 | pem_pk8.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
163 | pem_pk8.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
164 | pem_pk8.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
165 | pem_pk8.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
166 | pem_pk8.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
167 | pem_pk8.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
168 | pem_pk8.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | ||
169 | pem_pk8.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs12.h | ||
170 | pem_pk8.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
171 | pem_pk8.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
172 | pem_pk8.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
173 | pem_pk8.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
174 | pem_pk8.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_pk8.c | ||
175 | pem_pkey.o: ../../e_os.h ../../include/openssl/asn1.h | ||
176 | pem_pkey.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
177 | pem_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
178 | pem_pkey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
179 | pem_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
180 | pem_pkey.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
181 | pem_pkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
182 | pem_pkey.o: ../../include/openssl/opensslconf.h | ||
183 | pem_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
184 | pem_pkey.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
185 | pem_pkey.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | ||
186 | pem_pkey.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
187 | pem_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
188 | pem_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
189 | pem_pkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
190 | pem_pkey.o: ../cryptlib.h pem_pkey.c | ||
191 | pem_seal.o: ../../e_os.h ../../include/openssl/asn1.h | ||
192 | pem_seal.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
193 | pem_seal.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
194 | pem_seal.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
195 | pem_seal.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
196 | pem_seal.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
197 | pem_seal.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
198 | pem_seal.o: ../../include/openssl/opensslconf.h | ||
199 | pem_seal.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
200 | pem_seal.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
201 | pem_seal.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
202 | pem_seal.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
203 | pem_seal.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
204 | pem_seal.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
205 | pem_seal.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_seal.c | ||
206 | pem_sign.o: ../../e_os.h ../../include/openssl/asn1.h | ||
207 | pem_sign.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
208 | pem_sign.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
209 | pem_sign.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
210 | pem_sign.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
211 | pem_sign.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
212 | pem_sign.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
213 | pem_sign.o: ../../include/openssl/opensslconf.h | ||
214 | pem_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
215 | pem_sign.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
216 | pem_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
217 | pem_sign.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
218 | pem_sign.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
219 | pem_sign.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
220 | pem_sign.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_sign.c | ||
221 | pem_x509.o: ../../e_os.h ../../include/openssl/asn1.h | ||
222 | pem_x509.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
223 | pem_x509.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
224 | pem_x509.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
225 | pem_x509.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
226 | pem_x509.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
227 | pem_x509.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
228 | pem_x509.o: ../../include/openssl/opensslconf.h | ||
229 | pem_x509.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
230 | pem_x509.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
231 | pem_x509.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
232 | pem_x509.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
233 | pem_x509.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
234 | pem_x509.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
235 | pem_x509.o: ../cryptlib.h pem_x509.c | ||
236 | pem_xaux.o: ../../e_os.h ../../include/openssl/asn1.h | ||
237 | pem_xaux.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
238 | pem_xaux.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
239 | pem_xaux.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
240 | pem_xaux.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
241 | pem_xaux.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
242 | pem_xaux.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
243 | pem_xaux.o: ../../include/openssl/opensslconf.h | ||
244 | pem_xaux.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
245 | pem_xaux.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
246 | pem_xaux.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
247 | pem_xaux.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
248 | pem_xaux.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
249 | pem_xaux.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
250 | pem_xaux.o: ../cryptlib.h pem_xaux.c | ||
diff --git a/src/lib/libcrypto/pkcs12/Makefile.ssl b/src/lib/libcrypto/pkcs12/Makefile.ssl index ebffab657c..cb815db72f 100644 --- a/src/lib/libcrypto/pkcs12/Makefile.ssl +++ b/src/lib/libcrypto/pkcs12/Makefile.ssl | |||
@@ -1,17 +1,18 @@ | |||
1 | # | 1 | # |
2 | # SSLeay/crypto/asn1/Makefile | 2 | # SSLeay/crypto/pkcs12/Makefile |
3 | # | 3 | # |
4 | 4 | ||
5 | DIR= pkcs12 | 5 | DIR= pkcs12 |
6 | TOP= ../.. | 6 | TOP= ../.. |
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | 10 | INSTALL_PREFIX= |
11 | OPENSSLDIR= /usr/local/ssl | 11 | OPENSSLDIR= /usr/local/ssl |
12 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
13 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
14 | MAKEDEPEND= $(TOP)/util/domd $(TOP) | 14 | MAKEDEPPROG= makedepend |
15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
15 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
16 | AR= ar r | 17 | AR= ar r |
17 | 18 | ||
@@ -22,12 +23,12 @@ TEST= | |||
22 | APPS= | 23 | APPS= |
23 | 24 | ||
24 | LIB=$(TOP)/libcrypto.a | 25 | LIB=$(TOP)/libcrypto.a |
25 | LIBSRC= p12_add.c p12_attr.c p12_bags.c p12_crpt.c p12_crt.c p12_decr.c \ | 26 | LIBSRC= p12_add.c p12_asn.c p12_attr.c p12_crpt.c p12_crt.c p12_decr.c \ |
26 | p12_init.c p12_key.c p12_kiss.c p12_lib.c p12_mac.c p12_mutl.c\ | 27 | p12_init.c p12_key.c p12_kiss.c p12_mutl.c\ |
27 | p12_sbag.c p12_utl.c pk12err.c | 28 | p12_utl.c p12_npas.c pk12err.c p12_p8d.c p12_p8e.c |
28 | LIBOBJ= p12_add.o p12_attr.o p12_bags.o p12_crpt.o p12_crt.o p12_decr.o \ | 29 | LIBOBJ= p12_add.o p12_asn.o p12_attr.o p12_crpt.o p12_crt.o p12_decr.o \ |
29 | p12_init.o p12_key.o p12_kiss.o p12_lib.o p12_mac.o p12_mutl.o\ | 30 | p12_init.o p12_key.o p12_kiss.o p12_mutl.o\ |
30 | p12_sbag.o p12_utl.o pk12err.o | 31 | p12_utl.o p12_npas.o pk12err.o p12_p8d.o p12_p8e.o |
31 | 32 | ||
32 | SRC= $(LIBSRC) | 33 | SRC= $(LIBSRC) |
33 | 34 | ||
@@ -45,7 +46,7 @@ all: lib | |||
45 | 46 | ||
46 | lib: $(LIBOBJ) | 47 | lib: $(LIBOBJ) |
47 | $(AR) $(LIB) $(LIBOBJ) | 48 | $(AR) $(LIB) $(LIBOBJ) |
48 | $(RANLIB) $(LIB) | 49 | $(RANLIB) $(LIB) || echo Never mind. |
49 | @touch lib | 50 | @touch lib |
50 | 51 | ||
51 | files: | 52 | files: |
@@ -84,263 +85,213 @@ clean: | |||
84 | 85 | ||
85 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 86 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
86 | 87 | ||
87 | p12_add.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 88 | p12_add.o: ../../e_os.h ../../include/openssl/asn1.h |
88 | p12_add.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 89 | p12_add.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
89 | p12_add.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 90 | p12_add.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
90 | p12_add.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
91 | p12_add.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 91 | p12_add.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
92 | p12_add.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 92 | p12_add.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
93 | p12_add.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 93 | p12_add.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
94 | p12_add.o: ../../include/openssl/idea.h ../../include/openssl/md2.h | 94 | p12_add.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
95 | p12_add.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 95 | p12_add.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
96 | p12_add.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 96 | p12_add.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h |
97 | p12_add.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h | 97 | p12_add.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h |
98 | p12_add.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
99 | p12_add.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
100 | p12_add.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
101 | p12_add.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 98 | p12_add.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
102 | p12_add.o: ../../include/openssl/stack.h ../../include/openssl/x509.h | 99 | p12_add.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
103 | p12_add.o: ../../include/openssl/x509_vfy.h ../cryptlib.h | 100 | p12_add.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
104 | p12_attr.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 101 | p12_add.o: ../cryptlib.h p12_add.c |
105 | p12_attr.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 102 | p12_asn.o: ../../e_os.h ../../include/openssl/asn1.h |
106 | p12_attr.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 103 | p12_asn.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
107 | p12_attr.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 104 | p12_asn.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
105 | p12_asn.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
106 | p12_asn.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
107 | p12_asn.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
108 | p12_asn.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
109 | p12_asn.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
110 | p12_asn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
111 | p12_asn.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | ||
112 | p12_asn.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
113 | p12_asn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
114 | p12_asn.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
115 | p12_asn.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_asn.c | ||
116 | p12_attr.o: ../../e_os.h ../../include/openssl/asn1.h | ||
117 | p12_attr.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
118 | p12_attr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
108 | p12_attr.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 119 | p12_attr.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
109 | p12_attr.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 120 | p12_attr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
110 | p12_attr.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 121 | p12_attr.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
111 | p12_attr.o: ../../include/openssl/idea.h ../../include/openssl/md2.h | 122 | p12_attr.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
112 | p12_attr.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 123 | p12_attr.o: ../../include/openssl/opensslconf.h |
113 | p12_attr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 124 | p12_attr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
114 | p12_attr.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h | 125 | p12_attr.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
115 | p12_attr.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 126 | p12_attr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
116 | p12_attr.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 127 | p12_attr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
117 | p12_attr.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 128 | p12_attr.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
118 | p12_attr.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 129 | p12_attr.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_attr.c |
119 | p12_attr.o: ../../include/openssl/stack.h ../../include/openssl/x509.h | 130 | p12_crpt.o: ../../e_os.h ../../include/openssl/asn1.h |
120 | p12_attr.o: ../../include/openssl/x509_vfy.h ../cryptlib.h | 131 | p12_crpt.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
121 | p12_bags.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h | 132 | p12_crpt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
122 | p12_bags.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
123 | p12_bags.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
124 | p12_bags.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
125 | p12_bags.o: ../../include/openssl/des.h ../../include/openssl/dh.h | ||
126 | p12_bags.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h | ||
127 | p12_bags.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
128 | p12_bags.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
129 | p12_bags.o: ../../include/openssl/md2.h ../../include/openssl/md5.h | ||
130 | p12_bags.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h | ||
131 | p12_bags.o: ../../include/openssl/opensslconf.h | ||
132 | p12_bags.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h | ||
133 | p12_bags.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
134 | p12_bags.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
135 | p12_bags.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
136 | p12_bags.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
137 | p12_bags.o: ../../include/openssl/stack.h ../../include/openssl/x509.h | ||
138 | p12_bags.o: ../../include/openssl/x509_vfy.h ../cryptlib.h | ||
139 | p12_crpt.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
140 | p12_crpt.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
141 | p12_crpt.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
142 | p12_crpt.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
143 | p12_crpt.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 133 | p12_crpt.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
144 | p12_crpt.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 134 | p12_crpt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
145 | p12_crpt.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 135 | p12_crpt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
146 | p12_crpt.o: ../../include/openssl/idea.h ../../include/openssl/md2.h | 136 | p12_crpt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
147 | p12_crpt.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 137 | p12_crpt.o: ../../include/openssl/opensslconf.h |
148 | p12_crpt.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 138 | p12_crpt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
149 | p12_crpt.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h | 139 | p12_crpt.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
150 | p12_crpt.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 140 | p12_crpt.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
151 | p12_crpt.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 141 | p12_crpt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
152 | p12_crpt.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 142 | p12_crpt.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
153 | p12_crpt.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 143 | p12_crpt.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_crpt.c |
154 | p12_crpt.o: ../../include/openssl/stack.h ../../include/openssl/x509.h | 144 | p12_crt.o: ../../e_os.h ../../include/openssl/asn1.h |
155 | p12_crpt.o: ../../include/openssl/x509_vfy.h ../cryptlib.h | 145 | p12_crt.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
156 | p12_crt.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 146 | p12_crt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
157 | p12_crt.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
158 | p12_crt.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
159 | p12_crt.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
160 | p12_crt.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 147 | p12_crt.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
161 | p12_crt.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 148 | p12_crt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
162 | p12_crt.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 149 | p12_crt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
163 | p12_crt.o: ../../include/openssl/idea.h ../../include/openssl/md2.h | 150 | p12_crt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
164 | p12_crt.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 151 | p12_crt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
165 | p12_crt.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 152 | p12_crt.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h |
166 | p12_crt.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h | 153 | p12_crt.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h |
167 | p12_crt.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
168 | p12_crt.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
169 | p12_crt.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
170 | p12_crt.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 154 | p12_crt.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
171 | p12_crt.o: ../../include/openssl/stack.h ../../include/openssl/x509.h | 155 | p12_crt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
172 | p12_crt.o: ../../include/openssl/x509_vfy.h ../cryptlib.h | 156 | p12_crt.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
173 | p12_decr.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 157 | p12_crt.o: ../cryptlib.h p12_crt.c |
174 | p12_decr.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 158 | p12_decr.o: ../../e_os.h ../../include/openssl/asn1.h |
175 | p12_decr.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 159 | p12_decr.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
176 | p12_decr.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 160 | p12_decr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
177 | p12_decr.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 161 | p12_decr.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
178 | p12_decr.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 162 | p12_decr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
179 | p12_decr.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 163 | p12_decr.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
180 | p12_decr.o: ../../include/openssl/idea.h ../../include/openssl/md2.h | 164 | p12_decr.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
181 | p12_decr.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 165 | p12_decr.o: ../../include/openssl/opensslconf.h |
182 | p12_decr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 166 | p12_decr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
183 | p12_decr.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h | 167 | p12_decr.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
184 | p12_decr.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 168 | p12_decr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
185 | p12_decr.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 169 | p12_decr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
186 | p12_decr.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 170 | p12_decr.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
187 | p12_decr.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 171 | p12_decr.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_decr.c |
188 | p12_decr.o: ../../include/openssl/stack.h ../../include/openssl/x509.h | 172 | p12_init.o: ../../e_os.h ../../include/openssl/asn1.h |
189 | p12_decr.o: ../../include/openssl/x509_vfy.h ../cryptlib.h | 173 | p12_init.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
190 | p12_init.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 174 | p12_init.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
191 | p12_init.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
192 | p12_init.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
193 | p12_init.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
194 | p12_init.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 175 | p12_init.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
195 | p12_init.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 176 | p12_init.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
196 | p12_init.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 177 | p12_init.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
197 | p12_init.o: ../../include/openssl/idea.h ../../include/openssl/md2.h | 178 | p12_init.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
198 | p12_init.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 179 | p12_init.o: ../../include/openssl/opensslconf.h |
199 | p12_init.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 180 | p12_init.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
200 | p12_init.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h | 181 | p12_init.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
201 | p12_init.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 182 | p12_init.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
202 | p12_init.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 183 | p12_init.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
203 | p12_init.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 184 | p12_init.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
204 | p12_init.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 185 | p12_init.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_init.c |
205 | p12_init.o: ../../include/openssl/stack.h ../../include/openssl/x509.h | 186 | p12_key.o: ../../e_os.h ../../include/openssl/asn1.h |
206 | p12_init.o: ../../include/openssl/x509_vfy.h ../cryptlib.h | 187 | p12_key.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
207 | p12_key.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 188 | p12_key.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
208 | p12_key.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
209 | p12_key.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
210 | p12_key.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
211 | p12_key.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 189 | p12_key.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
212 | p12_key.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 190 | p12_key.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
213 | p12_key.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 191 | p12_key.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
214 | p12_key.o: ../../include/openssl/idea.h ../../include/openssl/md2.h | 192 | p12_key.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
215 | p12_key.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 193 | p12_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
216 | p12_key.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 194 | p12_key.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h |
217 | p12_key.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h | 195 | p12_key.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h |
218 | p12_key.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
219 | p12_key.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
220 | p12_key.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
221 | p12_key.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 196 | p12_key.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
222 | p12_key.o: ../../include/openssl/stack.h ../../include/openssl/x509.h | 197 | p12_key.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
223 | p12_key.o: ../../include/openssl/x509_vfy.h ../cryptlib.h | 198 | p12_key.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
224 | p12_kiss.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 199 | p12_key.o: ../cryptlib.h p12_key.c |
225 | p12_kiss.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 200 | p12_kiss.o: ../../e_os.h ../../include/openssl/asn1.h |
226 | p12_kiss.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 201 | p12_kiss.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
227 | p12_kiss.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 202 | p12_kiss.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
228 | p12_kiss.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 203 | p12_kiss.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
229 | p12_kiss.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 204 | p12_kiss.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
230 | p12_kiss.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 205 | p12_kiss.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
231 | p12_kiss.o: ../../include/openssl/idea.h ../../include/openssl/md2.h | 206 | p12_kiss.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
232 | p12_kiss.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 207 | p12_kiss.o: ../../include/openssl/opensslconf.h |
233 | p12_kiss.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 208 | p12_kiss.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
234 | p12_kiss.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h | 209 | p12_kiss.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
235 | p12_kiss.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 210 | p12_kiss.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
236 | p12_kiss.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 211 | p12_kiss.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
237 | p12_kiss.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 212 | p12_kiss.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
238 | p12_kiss.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 213 | p12_kiss.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_kiss.c |
239 | p12_kiss.o: ../../include/openssl/stack.h ../../include/openssl/x509.h | 214 | p12_mutl.o: ../../e_os.h ../../include/openssl/asn1.h |
240 | p12_kiss.o: ../../include/openssl/x509_vfy.h ../cryptlib.h | 215 | p12_mutl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
241 | p12_lib.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h | 216 | p12_mutl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
242 | p12_lib.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
243 | p12_lib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
244 | p12_lib.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
245 | p12_lib.o: ../../include/openssl/des.h ../../include/openssl/dh.h | ||
246 | p12_lib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h | ||
247 | p12_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
248 | p12_lib.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
249 | p12_lib.o: ../../include/openssl/md2.h ../../include/openssl/md5.h | ||
250 | p12_lib.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h | ||
251 | p12_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
252 | p12_lib.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | ||
253 | p12_lib.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
254 | p12_lib.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
255 | p12_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
256 | p12_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
257 | p12_lib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
258 | p12_lib.o: ../cryptlib.h | ||
259 | p12_mac.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h | ||
260 | p12_mac.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
261 | p12_mac.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
262 | p12_mac.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
263 | p12_mac.o: ../../include/openssl/des.h ../../include/openssl/dh.h | ||
264 | p12_mac.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h | ||
265 | p12_mac.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
266 | p12_mac.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
267 | p12_mac.o: ../../include/openssl/md2.h ../../include/openssl/md5.h | ||
268 | p12_mac.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h | ||
269 | p12_mac.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
270 | p12_mac.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | ||
271 | p12_mac.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
272 | p12_mac.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
273 | p12_mac.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
274 | p12_mac.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
275 | p12_mac.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
276 | p12_mac.o: ../cryptlib.h | ||
277 | p12_mutl.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
278 | p12_mutl.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
279 | p12_mutl.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
280 | p12_mutl.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
281 | p12_mutl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 217 | p12_mutl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
282 | p12_mutl.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 218 | p12_mutl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
283 | p12_mutl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 219 | p12_mutl.o: ../../include/openssl/evp.h ../../include/openssl/hmac.h |
284 | p12_mutl.o: ../../include/openssl/hmac.h ../../include/openssl/idea.h | 220 | p12_mutl.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
285 | p12_mutl.o: ../../include/openssl/md2.h ../../include/openssl/md5.h | 221 | p12_mutl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
286 | p12_mutl.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h | 222 | p12_mutl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
287 | p12_mutl.o: ../../include/openssl/opensslconf.h | 223 | p12_mutl.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
288 | p12_mutl.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h | 224 | p12_mutl.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h |
289 | p12_mutl.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 225 | p12_mutl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
290 | p12_mutl.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 226 | p12_mutl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
291 | p12_mutl.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
292 | p12_mutl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
293 | p12_mutl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
294 | p12_mutl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 227 | p12_mutl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
295 | p12_mutl.o: ../cryptlib.h | 228 | p12_mutl.o: ../cryptlib.h p12_mutl.c |
296 | p12_sbag.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h | 229 | p12_npas.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
297 | p12_sbag.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 230 | p12_npas.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
298 | p12_sbag.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 231 | p12_npas.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h |
299 | p12_sbag.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | 232 | p12_npas.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
300 | p12_sbag.o: ../../include/openssl/des.h ../../include/openssl/dh.h | 233 | p12_npas.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
301 | p12_sbag.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h | 234 | p12_npas.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
302 | p12_sbag.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 235 | p12_npas.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
303 | p12_sbag.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 236 | p12_npas.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
304 | p12_sbag.o: ../../include/openssl/md2.h ../../include/openssl/md5.h | 237 | p12_npas.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
305 | p12_sbag.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h | 238 | p12_npas.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
306 | p12_sbag.o: ../../include/openssl/opensslconf.h | 239 | p12_npas.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
307 | p12_sbag.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h | 240 | p12_npas.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
308 | p12_sbag.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 241 | p12_npas.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
309 | p12_sbag.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 242 | p12_npas.o: ../../include/openssl/x509_vfy.h p12_npas.c |
310 | p12_sbag.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 243 | p12_p8d.o: ../../e_os.h ../../include/openssl/asn1.h |
311 | p12_sbag.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 244 | p12_p8d.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
312 | p12_sbag.o: ../../include/openssl/stack.h ../../include/openssl/x509.h | 245 | p12_p8d.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
313 | p12_sbag.o: ../../include/openssl/x509_vfy.h ../cryptlib.h | 246 | p12_p8d.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
314 | p12_utl.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 247 | p12_p8d.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
315 | p12_utl.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 248 | p12_p8d.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
316 | p12_utl.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 249 | p12_p8d.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
317 | p12_utl.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 250 | p12_p8d.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
251 | p12_p8d.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h | ||
252 | p12_p8d.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
253 | p12_p8d.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
254 | p12_p8d.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
255 | p12_p8d.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
256 | p12_p8d.o: ../cryptlib.h p12_p8d.c | ||
257 | p12_p8e.o: ../../e_os.h ../../include/openssl/asn1.h | ||
258 | p12_p8e.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
259 | p12_p8e.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
260 | p12_p8e.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
261 | p12_p8e.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
262 | p12_p8e.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
263 | p12_p8e.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
264 | p12_p8e.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
265 | p12_p8e.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h | ||
266 | p12_p8e.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
267 | p12_p8e.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
268 | p12_p8e.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
269 | p12_p8e.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
270 | p12_p8e.o: ../cryptlib.h p12_p8e.c | ||
271 | p12_utl.o: ../../e_os.h ../../include/openssl/asn1.h | ||
272 | p12_utl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
273 | p12_utl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
318 | p12_utl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 274 | p12_utl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
319 | p12_utl.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 275 | p12_utl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
320 | p12_utl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 276 | p12_utl.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
321 | p12_utl.o: ../../include/openssl/idea.h ../../include/openssl/md2.h | 277 | p12_utl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
322 | p12_utl.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 278 | p12_utl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
323 | p12_utl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 279 | p12_utl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h |
324 | p12_utl.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h | 280 | p12_utl.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h |
325 | p12_utl.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
326 | p12_utl.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
327 | p12_utl.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
328 | p12_utl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 281 | p12_utl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
329 | p12_utl.o: ../../include/openssl/stack.h ../../include/openssl/x509.h | 282 | p12_utl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
330 | p12_utl.o: ../../include/openssl/x509_vfy.h ../cryptlib.h | 283 | p12_utl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
284 | p12_utl.o: ../cryptlib.h p12_utl.c | ||
331 | pk12err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 285 | pk12err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
332 | pk12err.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 286 | pk12err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
333 | pk12err.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | 287 | pk12err.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h |
334 | pk12err.o: ../../include/openssl/des.h ../../include/openssl/dh.h | ||
335 | pk12err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 288 | pk12err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
336 | pk12err.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 289 | pk12err.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
337 | pk12err.o: ../../include/openssl/idea.h ../../include/openssl/md2.h | 290 | pk12err.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
338 | pk12err.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
339 | pk12err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 291 | pk12err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
340 | pk12err.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs12.h | 292 | pk12err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
341 | pk12err.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 293 | pk12err.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
342 | pk12err.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 294 | pk12err.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
343 | pk12err.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 295 | pk12err.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
344 | pk12err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 296 | pk12err.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
345 | pk12err.o: ../../include/openssl/stack.h ../../include/openssl/x509.h | 297 | pk12err.o: ../../include/openssl/x509_vfy.h pk12err.c |
346 | pk12err.o: ../../include/openssl/x509_vfy.h | ||
diff --git a/src/lib/libcrypto/pkcs7/Makefile.ssl b/src/lib/libcrypto/pkcs7/Makefile.ssl index a88359b320..f606abe440 100644 --- a/src/lib/libcrypto/pkcs7/Makefile.ssl +++ b/src/lib/libcrypto/pkcs7/Makefile.ssl | |||
@@ -1,29 +1,35 @@ | |||
1 | # | 1 | # |
2 | # SSLeay/crypto/asn1/Makefile | 2 | # SSLeay/crypto/pkcs7/Makefile |
3 | # | 3 | # |
4 | 4 | ||
5 | DIR= pkcs7 | 5 | DIR= pkcs7 |
6 | TOP= ../.. | 6 | TOP= ../.. |
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
14 | AR= ar r | 17 | AR= ar r |
15 | 18 | ||
19 | PEX_LIBS= | ||
20 | EX_LIBS= | ||
21 | |||
16 | CFLAGS= $(INCLUDES) $(CFLAG) | 22 | CFLAGS= $(INCLUDES) $(CFLAG) |
17 | 23 | ||
18 | ERR=pkcs7 | ||
19 | ERRC=pkcs7err | ||
20 | GENERAL=Makefile README | 24 | GENERAL=Makefile README |
21 | TEST= | 25 | TEST= |
22 | APPS= | 26 | APPS= |
23 | 27 | ||
24 | LIB=$(TOP)/libcrypto.a | 28 | LIB=$(TOP)/libcrypto.a |
25 | LIBSRC= pk7_lib.c pkcs7err.c pk7_doit.c | 29 | LIBSRC= pk7_asn1.c pk7_lib.c pkcs7err.c pk7_doit.c pk7_smime.c pk7_attr.c \ |
26 | LIBOBJ= pk7_lib.o pkcs7err.o pk7_doit.o | 30 | pk7_mime.c |
31 | LIBOBJ= pk7_asn1.o pk7_lib.o pkcs7err.o pk7_doit.o pk7_smime.o pk7_attr.o \ | ||
32 | pk7_mime.o | ||
27 | 33 | ||
28 | SRC= $(LIBSRC) | 34 | SRC= $(LIBSRC) |
29 | 35 | ||
@@ -39,26 +45,39 @@ test: | |||
39 | 45 | ||
40 | all: lib | 46 | all: lib |
41 | 47 | ||
48 | testapps: enc dec sign verify | ||
49 | |||
50 | enc: enc.o lib | ||
51 | $(CC) $(CFLAGS) -o enc enc.o $(PEX_LIBS) $(LIB) $(EX_LIBS) | ||
52 | |||
53 | dec: dec.o lib | ||
54 | $(CC) $(CFLAGS) -o dec dec.o $(PEX_LIBS) $(LIB) $(EX_LIBS) | ||
55 | |||
56 | sign: sign.o lib | ||
57 | $(CC) $(CFLAGS) -o sign sign.o $(PEX_LIBS) $(LIB) $(EX_LIBS) | ||
58 | |||
59 | verify: verify.o example.o lib | ||
60 | $(CC) $(CFLAGS) -o verify verify.o $(PEX_LIBS) example.o $(LIB) $(EX_LIBS) | ||
61 | |||
42 | lib: $(LIBOBJ) | 62 | lib: $(LIBOBJ) |
43 | $(AR) $(LIB) $(LIBOBJ) | 63 | $(AR) $(LIB) $(LIBOBJ) |
44 | sh $(TOP)/util/ranlib.sh $(LIB) | 64 | $(RANLIB) $(LIB) || echo Never mind. |
45 | @touch lib | 65 | @touch lib |
46 | 66 | ||
47 | files: | 67 | files: |
48 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 68 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
49 | 69 | ||
50 | links: | 70 | links: |
51 | /bin/rm -f Makefile | 71 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
52 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 72 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
53 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 73 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
54 | $(TOP)/util/mklink.sh ../../test $(TEST) | 74 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
55 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
56 | 75 | ||
57 | install: | 76 | install: |
58 | @for i in $(EXHEADER) ; \ | 77 | @for i in $(EXHEADER) ; \ |
59 | do \ | 78 | do \ |
60 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 79 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
61 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 80 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
62 | done; | 81 | done; |
63 | 82 | ||
64 | tags: | 83 | tags: |
@@ -70,17 +89,107 @@ lint: | |||
70 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 89 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
71 | 90 | ||
72 | depend: | 91 | depend: |
73 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 92 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
74 | 93 | ||
75 | dclean: | 94 | dclean: |
76 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 95 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
77 | mv -f Makefile.new $(MAKEFILE) | 96 | mv -f Makefile.new $(MAKEFILE) |
78 | 97 | ||
79 | clean: | 98 | clean: |
80 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 99 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff enc dec sign verify |
81 | |||
82 | errors: | ||
83 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h | ||
84 | perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c | ||
85 | 100 | ||
86 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 101 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
102 | |||
103 | pk7_asn1.o: ../../e_os.h ../../include/openssl/asn1.h | ||
104 | pk7_asn1.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
105 | pk7_asn1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
106 | pk7_asn1.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
107 | pk7_asn1.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
108 | pk7_asn1.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
109 | pk7_asn1.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
110 | pk7_asn1.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
111 | pk7_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
112 | pk7_asn1.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
113 | pk7_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
114 | pk7_asn1.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
115 | pk7_asn1.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
116 | pk7_asn1.o: ../cryptlib.h pk7_asn1.c | ||
117 | pk7_attr.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
118 | pk7_attr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
119 | pk7_attr.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
120 | pk7_attr.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
121 | pk7_attr.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
122 | pk7_attr.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
123 | pk7_attr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
124 | pk7_attr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
125 | pk7_attr.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
126 | pk7_attr.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
127 | pk7_attr.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
128 | pk7_attr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
129 | pk7_attr.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
130 | pk7_attr.o: pk7_attr.c | ||
131 | pk7_doit.o: ../../e_os.h ../../include/openssl/asn1.h | ||
132 | pk7_doit.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
133 | pk7_doit.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
134 | pk7_doit.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
135 | pk7_doit.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
136 | pk7_doit.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
137 | pk7_doit.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
138 | pk7_doit.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
139 | pk7_doit.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
140 | pk7_doit.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
141 | pk7_doit.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
142 | pk7_doit.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
143 | pk7_doit.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
144 | pk7_doit.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
145 | pk7_doit.o: ../cryptlib.h pk7_doit.c | ||
146 | pk7_lib.o: ../../e_os.h ../../include/openssl/asn1.h | ||
147 | pk7_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
148 | pk7_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
149 | pk7_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
150 | pk7_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
151 | pk7_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
152 | pk7_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
153 | pk7_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
154 | pk7_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
155 | pk7_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
156 | pk7_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
157 | pk7_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
158 | pk7_lib.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pk7_lib.c | ||
159 | pk7_mime.o: ../../e_os.h ../../include/openssl/asn1.h | ||
160 | pk7_mime.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
161 | pk7_mime.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
162 | pk7_mime.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
163 | pk7_mime.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
164 | pk7_mime.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
165 | pk7_mime.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
166 | pk7_mime.o: ../../include/openssl/opensslconf.h | ||
167 | pk7_mime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
168 | pk7_mime.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
169 | pk7_mime.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
170 | pk7_mime.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
171 | pk7_mime.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
172 | pk7_mime.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pk7_mime.c | ||
173 | pk7_smime.o: ../../e_os.h ../../include/openssl/asn1.h | ||
174 | pk7_smime.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
175 | pk7_smime.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
176 | pk7_smime.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
177 | pk7_smime.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
178 | pk7_smime.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
179 | pk7_smime.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
180 | pk7_smime.o: ../../include/openssl/objects.h | ||
181 | pk7_smime.o: ../../include/openssl/opensslconf.h | ||
182 | pk7_smime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
183 | pk7_smime.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
184 | pk7_smime.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
185 | pk7_smime.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
186 | pk7_smime.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
187 | pk7_smime.o: ../../include/openssl/x509v3.h ../cryptlib.h pk7_smime.c | ||
188 | pkcs7err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
189 | pkcs7err.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
190 | pkcs7err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
191 | pkcs7err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
192 | pkcs7err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
193 | pkcs7err.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | ||
194 | pkcs7err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
195 | pkcs7err.o: pkcs7err.c | ||
diff --git a/src/lib/libcrypto/rand/Makefile.ssl b/src/lib/libcrypto/rand/Makefile.ssl index d04f0a9b43..ccf65f0d78 100644 --- a/src/lib/libcrypto/rand/Makefile.ssl +++ b/src/lib/libcrypto/rand/Makefile.ssl | |||
@@ -7,9 +7,12 @@ TOP= ../.. | |||
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= | 8 | INCLUDES= |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
14 | AR= ar r | 17 | AR= ar r |
15 | 18 | ||
@@ -20,8 +23,10 @@ TEST= randtest.c | |||
20 | APPS= | 23 | APPS= |
21 | 24 | ||
22 | LIB=$(TOP)/libcrypto.a | 25 | LIB=$(TOP)/libcrypto.a |
23 | LIBSRC=md_rand.c randfile.c | 26 | LIBSRC=md_rand.c randfile.c rand_lib.c rand_err.c rand_egd.c \ |
24 | LIBOBJ=md_rand.o randfile.o | 27 | rand_win.c rand_unix.c rand_os2.c |
28 | LIBOBJ=md_rand.o randfile.o rand_lib.o rand_err.o rand_egd.o \ | ||
29 | rand_win.o rand_unix.o rand_os2.o | ||
25 | 30 | ||
26 | SRC= $(LIBSRC) | 31 | SRC= $(LIBSRC) |
27 | 32 | ||
@@ -37,24 +42,23 @@ all: lib | |||
37 | 42 | ||
38 | lib: $(LIBOBJ) | 43 | lib: $(LIBOBJ) |
39 | $(AR) $(LIB) $(LIBOBJ) | 44 | $(AR) $(LIB) $(LIBOBJ) |
40 | sh $(TOP)/util/ranlib.sh $(LIB) | 45 | $(RANLIB) $(LIB) || echo Never mind. |
41 | @touch lib | 46 | @touch lib |
42 | 47 | ||
43 | files: | 48 | files: |
44 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 49 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
45 | 50 | ||
46 | links: | 51 | links: |
47 | /bin/rm -f Makefile | 52 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
48 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 53 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
49 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 54 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
50 | $(TOP)/util/mklink.sh ../../test $(TEST) | 55 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
51 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
52 | 56 | ||
53 | install: | 57 | install: |
54 | @for i in $(EXHEADER) ; \ | 58 | @for i in $(EXHEADER) ; \ |
55 | do \ | 59 | do \ |
56 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 60 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
57 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 61 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
58 | done; | 62 | done; |
59 | 63 | ||
60 | tags: | 64 | tags: |
@@ -66,15 +70,88 @@ lint: | |||
66 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 70 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
67 | 71 | ||
68 | depend: | 72 | depend: |
69 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 73 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
70 | 74 | ||
71 | dclean: | 75 | dclean: |
72 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 76 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
73 | mv -f Makefile.new $(MAKEFILE) | 77 | mv -f Makefile.new $(MAKEFILE) |
74 | 78 | ||
75 | clean: | 79 | clean: |
76 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 80 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
77 | |||
78 | errors: | ||
79 | 81 | ||
80 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 82 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
83 | |||
84 | md_rand.o: ../../e_os.h ../../include/openssl/asn1.h | ||
85 | md_rand.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
86 | md_rand.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
87 | md_rand.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
88 | md_rand.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
89 | md_rand.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
90 | md_rand.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
91 | md_rand.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
92 | md_rand.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
93 | md_rand.o: ../../include/openssl/symhacks.h md_rand.c rand_lcl.h | ||
94 | rand_egd.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
95 | rand_egd.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | ||
96 | rand_egd.o: rand_egd.c | ||
97 | rand_err.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | ||
98 | rand_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
99 | rand_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
100 | rand_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
101 | rand_err.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
102 | rand_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
103 | rand_err.o: rand_err.c | ||
104 | rand_lib.o: ../../e_os.h ../../include/openssl/asn1.h | ||
105 | rand_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
106 | rand_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
107 | rand_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
108 | rand_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
109 | rand_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
110 | rand_lib.o: ../../include/openssl/opensslconf.h | ||
111 | rand_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
112 | rand_lib.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
113 | rand_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
114 | rand_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
115 | rand_lib.o: ../cryptlib.h rand_lib.c | ||
116 | rand_os2.o: ../../e_os.h ../../include/openssl/asn1.h | ||
117 | rand_os2.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
118 | rand_os2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
119 | rand_os2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
120 | rand_os2.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
121 | rand_os2.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
122 | rand_os2.o: ../../include/openssl/opensslconf.h | ||
123 | rand_os2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
124 | rand_os2.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
125 | rand_os2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
126 | rand_os2.o: ../../include/openssl/symhacks.h ../cryptlib.h rand_lcl.h | ||
127 | rand_os2.o: rand_os2.c | ||
128 | rand_unix.o: ../../e_os.h ../../include/openssl/asn1.h | ||
129 | rand_unix.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
130 | rand_unix.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
131 | rand_unix.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
132 | rand_unix.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
133 | rand_unix.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
134 | rand_unix.o: ../../include/openssl/opensslconf.h | ||
135 | rand_unix.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
136 | rand_unix.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
137 | rand_unix.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
138 | rand_unix.o: ../../include/openssl/symhacks.h ../cryptlib.h rand_lcl.h | ||
139 | rand_unix.o: rand_unix.c | ||
140 | rand_win.o: ../../e_os.h ../../include/openssl/asn1.h | ||
141 | rand_win.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
142 | rand_win.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
143 | rand_win.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
144 | rand_win.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
145 | rand_win.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
146 | rand_win.o: ../../include/openssl/opensslconf.h | ||
147 | rand_win.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
148 | rand_win.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
149 | rand_win.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
150 | rand_win.o: ../../include/openssl/symhacks.h ../cryptlib.h rand_lcl.h | ||
151 | rand_win.o: rand_win.c | ||
152 | randfile.o: ../../e_os.h ../../include/openssl/crypto.h | ||
153 | randfile.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
154 | randfile.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
155 | randfile.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
156 | randfile.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
157 | randfile.o: randfile.c | ||
diff --git a/src/lib/libcrypto/rc2/Makefile.ssl b/src/lib/libcrypto/rc2/Makefile.ssl index c5138f13e2..c233b0fa0c 100644 --- a/src/lib/libcrypto/rc2/Makefile.ssl +++ b/src/lib/libcrypto/rc2/Makefile.ssl | |||
@@ -7,9 +7,12 @@ TOP= ../.. | |||
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= | 8 | INCLUDES= |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
14 | AR= ar r | 17 | AR= ar r |
15 | 18 | ||
@@ -37,24 +40,23 @@ all: lib | |||
37 | 40 | ||
38 | lib: $(LIBOBJ) | 41 | lib: $(LIBOBJ) |
39 | $(AR) $(LIB) $(LIBOBJ) | 42 | $(AR) $(LIB) $(LIBOBJ) |
40 | sh $(TOP)/util/ranlib.sh $(LIB) | 43 | $(RANLIB) $(LIB) || echo Never mind. |
41 | @touch lib | 44 | @touch lib |
42 | 45 | ||
43 | files: | 46 | files: |
44 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 47 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
45 | 48 | ||
46 | links: | 49 | links: |
47 | /bin/rm -f Makefile | 50 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
48 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 51 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
49 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 52 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
50 | $(TOP)/util/mklink.sh ../../test $(TEST) | 53 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
51 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
52 | 54 | ||
53 | install: | 55 | install: |
54 | @for i in $(EXHEADER) ; \ | 56 | @for i in $(EXHEADER) ; \ |
55 | do \ | 57 | do \ |
56 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 58 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
57 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 59 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
58 | done; | 60 | done; |
59 | 61 | ||
60 | tags: | 62 | tags: |
@@ -66,15 +68,24 @@ lint: | |||
66 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
67 | 69 | ||
68 | depend: | 70 | depend: |
69 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
70 | 72 | ||
71 | dclean: | 73 | dclean: |
72 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
73 | mv -f Makefile.new $(MAKEFILE) | 75 | mv -f Makefile.new $(MAKEFILE) |
74 | 76 | ||
75 | clean: | 77 | clean: |
76 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 78 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
77 | |||
78 | errors: | ||
79 | 79 | ||
80 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
81 | |||
82 | rc2_cbc.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc2.h | ||
83 | rc2_cbc.o: rc2_cbc.c rc2_locl.h | ||
84 | rc2_ecb.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
85 | rc2_ecb.o: ../../include/openssl/rc2.h rc2_ecb.c rc2_locl.h | ||
86 | rc2_skey.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc2.h | ||
87 | rc2_skey.o: rc2_locl.h rc2_skey.c | ||
88 | rc2cfb64.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc2.h | ||
89 | rc2cfb64.o: rc2_locl.h rc2cfb64.c | ||
90 | rc2ofb64.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc2.h | ||
91 | rc2ofb64.o: rc2_locl.h rc2ofb64.c | ||
diff --git a/src/lib/libcrypto/rc4/Makefile.ssl b/src/lib/libcrypto/rc4/Makefile.ssl index 19c1e980f3..5214e512fc 100644 --- a/src/lib/libcrypto/rc4/Makefile.ssl +++ b/src/lib/libcrypto/rc4/Makefile.ssl | |||
@@ -5,11 +5,15 @@ | |||
5 | DIR= rc4 | 5 | DIR= rc4 |
6 | TOP= ../.. | 6 | TOP= ../.. |
7 | CC= cc | 7 | CC= cc |
8 | CPP= $(CC) -E | ||
8 | INCLUDES= | 9 | INCLUDES= |
9 | CFLAG=-g | 10 | CFLAG=-g |
11 | INSTALL_PREFIX= | ||
12 | OPENSSLDIR= /usr/local/ssl | ||
10 | INSTALLTOP=/usr/local/ssl | 13 | INSTALLTOP=/usr/local/ssl |
11 | MAKE= make -f Makefile.ssl | 14 | MAKE= make -f Makefile.ssl |
12 | MAKEDEPEND= makedepend -f Makefile.ssl | 15 | MAKEDEPPROG= makedepend |
16 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
13 | MAKEFILE= Makefile.ssl | 17 | MAKEFILE= Makefile.ssl |
14 | AR= ar r | 18 | AR= ar r |
15 | 19 | ||
@@ -44,12 +48,12 @@ all: lib | |||
44 | 48 | ||
45 | lib: $(LIBOBJ) | 49 | lib: $(LIBOBJ) |
46 | $(AR) $(LIB) $(LIBOBJ) | 50 | $(AR) $(LIB) $(LIBOBJ) |
47 | sh $(TOP)/util/ranlib.sh $(LIB) | 51 | $(RANLIB) $(LIB) || echo Never mind. |
48 | @touch lib | 52 | @touch lib |
49 | 53 | ||
50 | # elf | 54 | # elf |
51 | asm/rx86-elf.o: asm/rx86unix.cpp | 55 | asm/rx86-elf.o: asm/rx86unix.cpp |
52 | $(CPP) -DELF asm/rx86unix.cpp | as -o asm/rx86-elf.o | 56 | $(CPP) -DELF -x c asm/rx86unix.cpp | as -o asm/rx86-elf.o |
53 | 57 | ||
54 | # solaris | 58 | # solaris |
55 | asm/rx86-sol.o: asm/rx86unix.cpp | 59 | asm/rx86-sol.o: asm/rx86unix.cpp |
@@ -63,26 +67,25 @@ asm/rx86-out.o: asm/rx86unix.cpp | |||
63 | 67 | ||
64 | # bsdi | 68 | # bsdi |
65 | asm/rx86bsdi.o: asm/rx86unix.cpp | 69 | asm/rx86bsdi.o: asm/rx86unix.cpp |
66 | $(CPP) -DBSDI asm/rx86unix.cpp | as -o asm/rx86bsdi.o | 70 | $(CPP) -DBSDI asm/rx86unix.cpp | sed 's/ :/:/' | as -o asm/rx86bsdi.o |
67 | 71 | ||
68 | asm/rx86unix.cpp: | 72 | asm/rx86unix.cpp: asm/rc4-586.pl ../perlasm/x86asm.pl |
69 | (cd asm; perl rc4-586.pl cpp >rx86unix.cpp) | 73 | (cd asm; $(PERL) rc4-586.pl cpp >rx86unix.cpp) |
70 | 74 | ||
71 | files: | 75 | files: |
72 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 76 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
73 | 77 | ||
74 | links: | 78 | links: |
75 | /bin/rm -f Makefile | 79 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
76 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 80 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
77 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 81 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
78 | $(TOP)/util/mklink.sh ../../test $(TEST) | 82 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
79 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
80 | 83 | ||
81 | install: | 84 | install: |
82 | @for i in $(EXHEADER) ; \ | 85 | @for i in $(EXHEADER) ; \ |
83 | do \ | 86 | do \ |
84 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 87 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
85 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 88 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
86 | done; | 89 | done; |
87 | 90 | ||
88 | tags: | 91 | tags: |
@@ -94,15 +97,19 @@ lint: | |||
94 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 97 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
95 | 98 | ||
96 | depend: | 99 | depend: |
97 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 100 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
98 | 101 | ||
99 | dclean: | 102 | dclean: |
100 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 103 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
101 | mv -f Makefile.new $(MAKEFILE) | 104 | mv -f Makefile.new $(MAKEFILE) |
102 | 105 | ||
103 | clean: | 106 | clean: |
104 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff asm/*.o | 107 | rm -f asm/rx86unix.cpp *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff asm/*.o |
105 | |||
106 | errors: | ||
107 | 108 | ||
108 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 109 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
110 | |||
111 | rc4_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc4.h | ||
112 | rc4_enc.o: rc4_enc.c rc4_locl.h | ||
113 | rc4_skey.o: ../../include/openssl/opensslconf.h | ||
114 | rc4_skey.o: ../../include/openssl/opensslv.h ../../include/openssl/rc4.h | ||
115 | rc4_skey.o: rc4_locl.h rc4_skey.c | ||
diff --git a/src/lib/libcrypto/rc5/Makefile.ssl b/src/lib/libcrypto/rc5/Makefile.ssl index 5e98ee2348..10deca5ace 100644 --- a/src/lib/libcrypto/rc5/Makefile.ssl +++ b/src/lib/libcrypto/rc5/Makefile.ssl | |||
@@ -8,9 +8,12 @@ CC= cc | |||
8 | CPP= $(CC) -E | 8 | CPP= $(CC) -E |
9 | INCLUDES= | 9 | INCLUDES= |
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 | AR= ar r | 18 | AR= ar r |
16 | 19 | ||
@@ -42,12 +45,12 @@ all: lib | |||
42 | 45 | ||
43 | lib: $(LIBOBJ) | 46 | lib: $(LIBOBJ) |
44 | $(AR) $(LIB) $(LIBOBJ) | 47 | $(AR) $(LIB) $(LIBOBJ) |
45 | sh $(TOP)/util/ranlib.sh $(LIB) | 48 | $(RANLIB) $(LIB) || echo Never mind. |
46 | @touch lib | 49 | @touch lib |
47 | 50 | ||
48 | # elf | 51 | # elf |
49 | asm/r586-elf.o: asm/r586unix.cpp | 52 | asm/r586-elf.o: asm/r586unix.cpp |
50 | $(CPP) -DELF asm/r586unix.cpp | as -o asm/r586-elf.o | 53 | $(CPP) -DELF -x c asm/r586unix.cpp | as -o asm/r586-elf.o |
51 | 54 | ||
52 | # solaris | 55 | # solaris |
53 | asm/r586-sol.o: asm/r586unix.cpp | 56 | asm/r586-sol.o: asm/r586unix.cpp |
@@ -61,27 +64,25 @@ asm/r586-out.o: asm/r586unix.cpp | |||
61 | 64 | ||
62 | # bsdi | 65 | # bsdi |
63 | asm/r586bsdi.o: asm/r586unix.cpp | 66 | asm/r586bsdi.o: asm/r586unix.cpp |
64 | $(CPP) -DBSDI asm/r586unix.cpp | as -o asm/r586bsdi.o | 67 | $(CPP) -DBSDI asm/r586unix.cpp | sed 's/ :/:/' | as -o asm/r586bsdi.o |
65 | 68 | ||
66 | asm/r586unix.cpp: | 69 | asm/r586unix.cpp: asm/rc5-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl |
67 | (cd asm; perl rc5-586.pl cpp >r586unix.cpp) | 70 | (cd asm; $(PERL) rc5-586.pl cpp >r586unix.cpp) |
68 | 71 | ||
69 | files: | 72 | files: |
70 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 73 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
71 | 74 | ||
72 | links: | 75 | links: |
73 | /bin/rm -f Makefile | 76 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
74 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 77 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
75 | $(TOP)/util/point.sh ../../doc/rc5.doc rc5.doc ; | 78 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
76 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 79 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
77 | $(TOP)/util/mklink.sh ../../test $(TEST) | ||
78 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
79 | 80 | ||
80 | install: | 81 | install: |
81 | @for i in $(EXHEADER) ; \ | 82 | @for i in $(EXHEADER) ; \ |
82 | do \ | 83 | do \ |
83 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 84 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
84 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 85 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
85 | done; | 86 | done; |
86 | 87 | ||
87 | tags: | 88 | tags: |
@@ -93,15 +94,20 @@ lint: | |||
93 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 94 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
94 | 95 | ||
95 | depend: | 96 | depend: |
96 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 97 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
97 | 98 | ||
98 | dclean: | 99 | dclean: |
99 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 100 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
100 | mv -f Makefile.new $(MAKEFILE) | 101 | mv -f Makefile.new $(MAKEFILE) |
101 | 102 | ||
102 | clean: | 103 | clean: |
103 | /bin/rm -f *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 104 | rm -f asm/r586unix.cpp *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
104 | |||
105 | errors: | ||
106 | 105 | ||
107 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 106 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
107 | |||
108 | rc5_ecb.o: ../../include/openssl/opensslv.h ../../include/openssl/rc5.h | ||
109 | rc5_ecb.o: rc5_ecb.c rc5_locl.h | ||
110 | rc5_enc.o: ../../include/openssl/rc5.h rc5_enc.c rc5_locl.h | ||
111 | rc5_skey.o: ../../include/openssl/rc5.h rc5_locl.h rc5_skey.c | ||
112 | rc5cfb64.o: ../../include/openssl/rc5.h rc5_locl.h rc5cfb64.c | ||
113 | rc5ofb64.o: ../../include/openssl/rc5.h rc5_locl.h rc5ofb64.c | ||
diff --git a/src/lib/libcrypto/rc5/asm/rc5-586.pl b/src/lib/libcrypto/rc5/asm/rc5-586.pl index 172bd9ee1b..edff1d1e64 100644 --- a/src/lib/libcrypto/rc5/asm/rc5-586.pl +++ b/src/lib/libcrypto/rc5/asm/rc5-586.pl | |||
@@ -1,4 +1,4 @@ | |||
1 | #!/usr/bin/perl | 1 | #!/usr/local/bin/perl |
2 | 2 | ||
3 | push(@INC,"perlasm","../../perlasm"); | 3 | push(@INC,"perlasm","../../perlasm"); |
4 | require "x86asm.pl"; | 4 | require "x86asm.pl"; |
diff --git a/src/lib/libcrypto/ripemd/Makefile.ssl b/src/lib/libcrypto/ripemd/Makefile.ssl index 67d47ceb2c..eb819e64f5 100644 --- a/src/lib/libcrypto/ripemd/Makefile.ssl +++ b/src/lib/libcrypto/ripemd/Makefile.ssl | |||
@@ -8,9 +8,12 @@ CC= cc | |||
8 | CPP= $(CC) -E | 8 | CPP= $(CC) -E |
9 | INCLUDES= | 9 | INCLUDES= |
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 | AR= ar r | 18 | AR= ar r |
16 | 19 | ||
@@ -20,7 +23,7 @@ CFLAGS= $(INCLUDES) $(CFLAG) | |||
20 | 23 | ||
21 | GENERAL=Makefile | 24 | GENERAL=Makefile |
22 | TEST=rmdtest.c | 25 | TEST=rmdtest.c |
23 | APPS=rmd160.c | 26 | APPS= |
24 | 27 | ||
25 | LIB=$(TOP)/libcrypto.a | 28 | LIB=$(TOP)/libcrypto.a |
26 | LIBSRC=rmd_dgst.c rmd_one.c | 29 | LIBSRC=rmd_dgst.c rmd_one.c |
@@ -40,12 +43,12 @@ all: lib | |||
40 | 43 | ||
41 | lib: $(LIBOBJ) | 44 | lib: $(LIBOBJ) |
42 | $(AR) $(LIB) $(LIBOBJ) | 45 | $(AR) $(LIB) $(LIBOBJ) |
43 | sh $(TOP)/util/ranlib.sh $(LIB) | 46 | $(RANLIB) $(LIB) || echo Never mind. |
44 | @touch lib | 47 | @touch lib |
45 | 48 | ||
46 | # elf | 49 | # elf |
47 | asm/rm86-elf.o: asm/rm86unix.cpp | 50 | asm/rm86-elf.o: asm/rm86unix.cpp |
48 | $(CPP) -DELF asm/rm86unix.cpp | as -o asm/rm86-elf.o | 51 | $(CPP) -DELF -x c asm/rm86unix.cpp | as -o asm/rm86-elf.o |
49 | 52 | ||
50 | # solaris | 53 | # solaris |
51 | asm/rm86-sol.o: asm/rm86unix.cpp | 54 | asm/rm86-sol.o: asm/rm86unix.cpp |
@@ -59,26 +62,25 @@ asm/rm86-out.o: asm/rm86unix.cpp | |||
59 | 62 | ||
60 | # bsdi | 63 | # bsdi |
61 | asm/rm86bsdi.o: asm/rm86unix.cpp | 64 | asm/rm86bsdi.o: asm/rm86unix.cpp |
62 | $(CPP) -DBSDI asm/rm86unix.cpp | as -o asm/rm86bsdi.o | 65 | $(CPP) -DBSDI asm/rm86unix.cpp | sed 's/ :/:/' | as -o asm/rm86bsdi.o |
63 | 66 | ||
64 | asm/rm86unix.cpp: | 67 | asm/rm86unix.cpp: asm/rmd-586.pl ../perlasm/x86asm.pl |
65 | (cd asm; perl rmd-586.pl cpp >rm86unix.cpp) | 68 | (cd asm; $(PERL) rmd-586.pl cpp >rm86unix.cpp) |
66 | 69 | ||
67 | files: | 70 | files: |
68 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 71 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
69 | 72 | ||
70 | links: | 73 | links: |
71 | /bin/rm -f Makefile | 74 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
72 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 75 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
73 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 76 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
74 | $(TOP)/util/mklink.sh ../../test $(TEST) | 77 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
75 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
76 | 78 | ||
77 | install: | 79 | install: |
78 | @for i in $(EXHEADER) ; \ | 80 | @for i in $(EXHEADER) ; \ |
79 | do \ | 81 | do \ |
80 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 82 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
81 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 83 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
82 | done; | 84 | done; |
83 | 85 | ||
84 | tags: | 86 | tags: |
@@ -90,15 +92,19 @@ lint: | |||
90 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 92 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
91 | 93 | ||
92 | depend: | 94 | depend: |
93 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 95 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
94 | 96 | ||
95 | dclean: | 97 | dclean: |
96 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 98 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
97 | mv -f Makefile.new $(MAKEFILE) | 99 | mv -f Makefile.new $(MAKEFILE) |
98 | 100 | ||
99 | clean: | 101 | clean: |
100 | /bin/rm -f *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 102 | rm -f asm/rm86unix.cpp *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
101 | |||
102 | errors: | ||
103 | 103 | ||
104 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 104 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
105 | |||
106 | rmd_dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
107 | rmd_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/ripemd.h | ||
108 | rmd_dgst.o: ../md32_common.h rmd_dgst.c rmd_locl.h rmdconst.h | ||
109 | rmd_one.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
110 | rmd_one.o: ../../include/openssl/ripemd.h rmd_one.c | ||
diff --git a/src/lib/libcrypto/rsa/Makefile.ssl b/src/lib/libcrypto/rsa/Makefile.ssl index d52f2e609e..f1e93c2fa3 100644 --- a/src/lib/libcrypto/rsa/Makefile.ssl +++ b/src/lib/libcrypto/rsa/Makefile.ssl | |||
@@ -5,27 +5,30 @@ | |||
5 | DIR= rsa | 5 | DIR= rsa |
6 | TOP= ../.. | 6 | TOP= ../.. |
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
14 | AR= ar r | 17 | AR= ar r |
15 | 18 | ||
16 | CFLAGS= $(INCLUDES) $(CFLAG) | 19 | CFLAGS= $(INCLUDES) $(CFLAG) |
17 | 20 | ||
18 | ERR=rsa | ||
19 | ERRC=rsa_err | ||
20 | GENERAL=Makefile | 21 | GENERAL=Makefile |
21 | TEST= | 22 | TEST=rsa_test.c |
22 | APPS= | 23 | APPS= |
23 | 24 | ||
24 | LIB=$(TOP)/libcrypto.a | 25 | LIB=$(TOP)/libcrypto.a |
25 | LIBSRC= rsa_eay.c rsa_gen.c rsa_lib.c rsa_sign.c rsa_saos.c $(ERRC).c \ | 26 | LIBSRC= rsa_eay.c rsa_gen.c rsa_lib.c rsa_sign.c rsa_saos.c rsa_err.c \ |
26 | rsa_pk1.c rsa_ssl.c rsa_none.c | 27 | rsa_pk1.c rsa_ssl.c rsa_none.c rsa_oaep.c rsa_chk.c rsa_null.c \ |
27 | LIBOBJ= rsa_eay.o rsa_gen.o rsa_lib.o rsa_sign.o rsa_saos.o $(ERRC).o \ | 28 | rsa_asn1.c |
28 | rsa_pk1.o rsa_ssl.o rsa_none.o | 29 | LIBOBJ= rsa_eay.o rsa_gen.o rsa_lib.o rsa_sign.o rsa_saos.o rsa_err.o \ |
30 | rsa_pk1.o rsa_ssl.o rsa_none.o rsa_oaep.o rsa_chk.o rsa_null.o \ | ||
31 | rsa_asn1.o | ||
29 | 32 | ||
30 | SRC= $(LIBSRC) | 33 | SRC= $(LIBSRC) |
31 | 34 | ||
@@ -41,24 +44,23 @@ all: lib | |||
41 | 44 | ||
42 | lib: $(LIBOBJ) | 45 | lib: $(LIBOBJ) |
43 | $(AR) $(LIB) $(LIBOBJ) | 46 | $(AR) $(LIB) $(LIBOBJ) |
44 | sh $(TOP)/util/ranlib.sh $(LIB) | 47 | $(RANLIB) $(LIB) || echo Never mind. |
45 | @touch lib | 48 | @touch lib |
46 | 49 | ||
47 | files: | 50 | files: |
48 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 51 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
49 | 52 | ||
50 | links: | 53 | links: |
51 | /bin/rm -f Makefile | 54 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
52 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 55 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
53 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 56 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
54 | $(TOP)/util/mklink.sh ../../test $(TEST) | 57 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
55 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
56 | 58 | ||
57 | install: | 59 | install: |
58 | @for i in $(EXHEADER) ; \ | 60 | @for i in $(EXHEADER) ; \ |
59 | do \ | 61 | do \ |
60 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 62 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
61 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 63 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
62 | done; | 64 | done; |
63 | 65 | ||
64 | tags: | 66 | tags: |
@@ -70,17 +72,148 @@ lint: | |||
70 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 72 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
71 | 73 | ||
72 | depend: | 74 | depend: |
73 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 75 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
74 | 76 | ||
75 | dclean: | 77 | dclean: |
76 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 78 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
77 | mv -f Makefile.new $(MAKEFILE) | 79 | mv -f Makefile.new $(MAKEFILE) |
78 | 80 | ||
79 | clean: | 81 | clean: |
80 | /bin/rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 82 | rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
81 | |||
82 | errors: | ||
83 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h | ||
84 | perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c | ||
85 | 83 | ||
86 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 84 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
85 | |||
86 | rsa_asn1.o: ../../e_os.h ../../include/openssl/asn1.h | ||
87 | rsa_asn1.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
88 | rsa_asn1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
89 | rsa_asn1.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
90 | rsa_asn1.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
91 | rsa_asn1.o: ../../include/openssl/opensslconf.h | ||
92 | rsa_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
93 | rsa_asn1.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
94 | rsa_asn1.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
95 | rsa_asn1.o: ../cryptlib.h rsa_asn1.c | ||
96 | rsa_chk.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
97 | rsa_chk.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
98 | rsa_chk.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
99 | rsa_chk.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
100 | rsa_chk.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
101 | rsa_chk.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
102 | rsa_chk.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
103 | rsa_chk.o: rsa_chk.c | ||
104 | rsa_eay.o: ../../e_os.h ../../include/openssl/asn1.h | ||
105 | rsa_eay.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
106 | rsa_eay.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
107 | rsa_eay.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
108 | rsa_eay.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
109 | rsa_eay.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
110 | rsa_eay.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
111 | rsa_eay.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | ||
112 | rsa_eay.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
113 | rsa_eay.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
114 | rsa_eay.o: ../../include/openssl/ui.h ../cryptlib.h rsa_eay.c | ||
115 | rsa_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
116 | rsa_err.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
117 | rsa_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
118 | rsa_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
119 | rsa_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
120 | rsa_err.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
121 | rsa_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
122 | rsa_err.o: rsa_err.c | ||
123 | rsa_gen.o: ../../e_os.h ../../include/openssl/asn1.h | ||
124 | rsa_gen.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
125 | rsa_gen.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
126 | rsa_gen.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
127 | rsa_gen.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
128 | rsa_gen.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
129 | rsa_gen.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
130 | rsa_gen.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
131 | rsa_gen.o: ../cryptlib.h rsa_gen.c | ||
132 | rsa_lib.o: ../../e_os.h ../../include/openssl/asn1.h | ||
133 | rsa_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
134 | rsa_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
135 | rsa_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
136 | rsa_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
137 | rsa_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
138 | rsa_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
139 | rsa_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | ||
140 | rsa_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
141 | rsa_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
142 | rsa_lib.o: ../../include/openssl/ui.h ../cryptlib.h rsa_lib.c | ||
143 | rsa_none.o: ../../e_os.h ../../include/openssl/asn1.h | ||
144 | rsa_none.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
145 | rsa_none.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
146 | rsa_none.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
147 | rsa_none.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
148 | rsa_none.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
149 | rsa_none.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
150 | rsa_none.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
151 | rsa_none.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_none.c | ||
152 | rsa_null.o: ../../e_os.h ../../include/openssl/asn1.h | ||
153 | rsa_null.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
154 | rsa_null.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
155 | rsa_null.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
156 | rsa_null.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
157 | rsa_null.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
158 | rsa_null.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
159 | rsa_null.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
160 | rsa_null.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_null.c | ||
161 | rsa_oaep.o: ../../e_os.h ../../include/openssl/asn1.h | ||
162 | rsa_oaep.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
163 | rsa_oaep.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
164 | rsa_oaep.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
165 | rsa_oaep.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
166 | rsa_oaep.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
167 | rsa_oaep.o: ../../include/openssl/opensslconf.h | ||
168 | rsa_oaep.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
169 | rsa_oaep.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
170 | rsa_oaep.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
171 | rsa_oaep.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
172 | rsa_oaep.o: ../cryptlib.h rsa_oaep.c | ||
173 | rsa_pk1.o: ../../e_os.h ../../include/openssl/asn1.h | ||
174 | rsa_pk1.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
175 | rsa_pk1.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
176 | rsa_pk1.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
177 | rsa_pk1.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
178 | rsa_pk1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
179 | rsa_pk1.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
180 | rsa_pk1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
181 | rsa_pk1.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_pk1.c | ||
182 | rsa_saos.o: ../../e_os.h ../../include/openssl/asn1.h | ||
183 | rsa_saos.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
184 | rsa_saos.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
185 | rsa_saos.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
186 | rsa_saos.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
187 | rsa_saos.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
188 | rsa_saos.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
189 | rsa_saos.o: ../../include/openssl/opensslconf.h | ||
190 | rsa_saos.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
191 | rsa_saos.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
192 | rsa_saos.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
193 | rsa_saos.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
194 | rsa_saos.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
195 | rsa_saos.o: ../cryptlib.h rsa_saos.c | ||
196 | rsa_sign.o: ../../e_os.h ../../include/openssl/asn1.h | ||
197 | rsa_sign.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
198 | rsa_sign.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
199 | rsa_sign.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
200 | rsa_sign.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
201 | rsa_sign.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
202 | rsa_sign.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
203 | rsa_sign.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
204 | rsa_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
205 | rsa_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
206 | rsa_sign.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
207 | rsa_sign.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
208 | rsa_sign.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
209 | rsa_sign.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
210 | rsa_sign.o: ../cryptlib.h rsa_sign.c | ||
211 | rsa_ssl.o: ../../e_os.h ../../include/openssl/asn1.h | ||
212 | rsa_ssl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
213 | rsa_ssl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
214 | rsa_ssl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
215 | rsa_ssl.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
216 | rsa_ssl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
217 | rsa_ssl.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
218 | rsa_ssl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
219 | rsa_ssl.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_ssl.c | ||
diff --git a/src/lib/libcrypto/sha/Makefile.ssl b/src/lib/libcrypto/sha/Makefile.ssl index eeb545d140..51ba7811c4 100644 --- a/src/lib/libcrypto/sha/Makefile.ssl +++ b/src/lib/libcrypto/sha/Makefile.ssl | |||
@@ -5,11 +5,15 @@ | |||
5 | DIR= sha | 5 | DIR= sha |
6 | TOP= ../.. | 6 | TOP= ../.. |
7 | CC= cc | 7 | CC= cc |
8 | CPP= $(CC) -E | ||
8 | INCLUDES= | 9 | INCLUDES= |
9 | CFLAG=-g | 10 | CFLAG=-g |
11 | INSTALL_PREFIX= | ||
12 | OPENSSLDIR= /usr/local/ssl | ||
10 | INSTALLTOP=/usr/local/ssl | 13 | INSTALLTOP=/usr/local/ssl |
11 | MAKE= make -f Makefile.ssl | 14 | MAKE= make -f Makefile.ssl |
12 | MAKEDEPEND= makedepend -f Makefile.ssl | 15 | MAKEDEPPROG= makedepend |
16 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
13 | MAKEFILE= Makefile.ssl | 17 | MAKEFILE= Makefile.ssl |
14 | AR= ar r | 18 | AR= ar r |
15 | 19 | ||
@@ -39,12 +43,12 @@ all: lib | |||
39 | 43 | ||
40 | lib: $(LIBOBJ) | 44 | lib: $(LIBOBJ) |
41 | $(AR) $(LIB) $(LIBOBJ) | 45 | $(AR) $(LIB) $(LIBOBJ) |
42 | sh $(TOP)/util/ranlib.sh $(LIB) | 46 | $(RANLIB) $(LIB) || echo Never mind. |
43 | @touch lib | 47 | @touch lib |
44 | 48 | ||
45 | # elf | 49 | # elf |
46 | asm/sx86-elf.o: asm/sx86unix.cpp | 50 | asm/sx86-elf.o: asm/sx86unix.cpp |
47 | $(CPP) -DELF asm/sx86unix.cpp | as -o asm/sx86-elf.o | 51 | $(CPP) -DELF -x c asm/sx86unix.cpp | as -o asm/sx86-elf.o |
48 | 52 | ||
49 | # solaris | 53 | # solaris |
50 | asm/sx86-sol.o: asm/sx86unix.cpp | 54 | asm/sx86-sol.o: asm/sx86unix.cpp |
@@ -58,26 +62,25 @@ asm/sx86-out.o: asm/sx86unix.cpp | |||
58 | 62 | ||
59 | # bsdi | 63 | # bsdi |
60 | asm/sx86bsdi.o: asm/sx86unix.cpp | 64 | asm/sx86bsdi.o: asm/sx86unix.cpp |
61 | $(CPP) -DBSDI asm/sx86unix.cpp | as -o asm/sx86bsdi.o | 65 | $(CPP) -DBSDI asm/sx86unix.cpp | sed 's/ :/:/' | as -o asm/sx86bsdi.o |
62 | 66 | ||
63 | asm/sx86unix.cpp: | 67 | asm/sx86unix.cpp: asm/sha1-586.pl ../perlasm/x86asm.pl |
64 | (cd asm; perl sha1-586.pl cpp >sx86unix.cpp) | 68 | (cd asm; $(PERL) sha1-586.pl cpp $(PROCESSOR) >sx86unix.cpp) |
65 | 69 | ||
66 | files: | 70 | files: |
67 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 71 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
68 | 72 | ||
69 | links: | 73 | links: |
70 | /bin/rm -f Makefile | 74 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
71 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 75 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
72 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 76 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
73 | $(TOP)/util/mklink.sh ../../test $(TEST) | 77 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
74 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
75 | 78 | ||
76 | install: | 79 | install: |
77 | @for i in $(EXHEADER) ; \ | 80 | @for i in $(EXHEADER) ; \ |
78 | do \ | 81 | do \ |
79 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 82 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
80 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 83 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
81 | done; | 84 | done; |
82 | 85 | ||
83 | tags: | 86 | tags: |
@@ -89,15 +92,24 @@ lint: | |||
89 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 92 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
90 | 93 | ||
91 | depend: | 94 | depend: |
92 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 95 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
93 | 96 | ||
94 | dclean: | 97 | dclean: |
95 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 98 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
96 | mv -f Makefile.new $(MAKEFILE) | 99 | mv -f Makefile.new $(MAKEFILE) |
97 | 100 | ||
98 | clean: | 101 | clean: |
99 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff asm/*.o | 102 | rm -f asm/sx86unix.cpp *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff asm/*.o |
100 | |||
101 | errors: | ||
102 | 103 | ||
103 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 104 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
105 | |||
106 | sha1_one.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
107 | sha1_one.o: ../../include/openssl/sha.h sha1_one.c | ||
108 | sha1dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
109 | sha1dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/sha.h | ||
110 | sha1dgst.o: ../md32_common.h sha1dgst.c sha_locl.h | ||
111 | sha_dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
112 | sha_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/sha.h | ||
113 | sha_dgst.o: ../md32_common.h sha_dgst.c sha_locl.h | ||
114 | sha_one.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
115 | sha_one.o: ../../include/openssl/sha.h sha_one.c | ||
diff --git a/src/lib/libcrypto/stack/Makefile.ssl b/src/lib/libcrypto/stack/Makefile.ssl index 0d232c08cf..16219af9a9 100644 --- a/src/lib/libcrypto/stack/Makefile.ssl +++ b/src/lib/libcrypto/stack/Makefile.ssl | |||
@@ -7,9 +7,12 @@ TOP= ../.. | |||
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= | 8 | INCLUDES= |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
14 | AR= ar r | 17 | AR= ar r |
15 | 18 | ||
@@ -25,7 +28,7 @@ LIBOBJ=stack.o | |||
25 | 28 | ||
26 | SRC= $(LIBSRC) | 29 | SRC= $(LIBSRC) |
27 | 30 | ||
28 | EXHEADER= stack.h | 31 | EXHEADER= stack.h safestack.h |
29 | HEADER= $(EXHEADER) | 32 | HEADER= $(EXHEADER) |
30 | 33 | ||
31 | ALL= $(GENERAL) $(SRC) $(HEADER) | 34 | ALL= $(GENERAL) $(SRC) $(HEADER) |
@@ -37,24 +40,23 @@ all: lib | |||
37 | 40 | ||
38 | lib: $(LIBOBJ) | 41 | lib: $(LIBOBJ) |
39 | $(AR) $(LIB) $(LIBOBJ) | 42 | $(AR) $(LIB) $(LIBOBJ) |
40 | sh $(TOP)/util/ranlib.sh $(LIB) | 43 | $(RANLIB) $(LIB) || echo Never mind. |
41 | @touch lib | 44 | @touch lib |
42 | 45 | ||
43 | files: | 46 | files: |
44 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 47 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
45 | 48 | ||
46 | links: | 49 | links: |
47 | /bin/rm -f Makefile | 50 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
48 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 51 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
49 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 52 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
50 | $(TOP)/util/mklink.sh ../../test $(TEST) | 53 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
51 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
52 | 54 | ||
53 | install: | 55 | install: |
54 | @for i in $(EXHEADER) ; \ | 56 | @for i in $(EXHEADER) ; \ |
55 | do \ | 57 | do \ |
56 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 58 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
57 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 59 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
58 | done; | 60 | done; |
59 | 61 | ||
60 | tags: | 62 | tags: |
@@ -66,15 +68,21 @@ lint: | |||
66 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
67 | 69 | ||
68 | depend: | 70 | depend: |
69 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
70 | 72 | ||
71 | dclean: | 73 | dclean: |
72 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
73 | mv -f Makefile.new $(MAKEFILE) | 75 | mv -f Makefile.new $(MAKEFILE) |
74 | 76 | ||
75 | clean: | 77 | clean: |
76 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 78 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
77 | |||
78 | errors: | ||
79 | 79 | ||
80 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
81 | |||
82 | stack.o: ../../e_os.h ../../include/openssl/bio.h | ||
83 | stack.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
84 | stack.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
85 | stack.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
86 | stack.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
87 | stack.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
88 | stack.o: ../cryptlib.h stack.c | ||
diff --git a/src/lib/libcrypto/txt_db/Makefile.ssl b/src/lib/libcrypto/txt_db/Makefile.ssl index 76e511534f..f681065da3 100644 --- a/src/lib/libcrypto/txt_db/Makefile.ssl +++ b/src/lib/libcrypto/txt_db/Makefile.ssl | |||
@@ -7,9 +7,12 @@ TOP= ../.. | |||
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= | 8 | INCLUDES= |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
14 | AR= ar r | 17 | AR= ar r |
15 | 18 | ||
@@ -37,24 +40,23 @@ all: lib | |||
37 | 40 | ||
38 | lib: $(LIBOBJ) | 41 | lib: $(LIBOBJ) |
39 | $(AR) $(LIB) $(LIBOBJ) | 42 | $(AR) $(LIB) $(LIBOBJ) |
40 | sh $(TOP)/util/ranlib.sh $(LIB) | 43 | $(RANLIB) $(LIB) || echo Never mind. |
41 | @touch lib | 44 | @touch lib |
42 | 45 | ||
43 | files: | 46 | files: |
44 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 47 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
45 | 48 | ||
46 | links: | 49 | links: |
47 | /bin/rm -f Makefile | 50 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
48 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 51 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
49 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 52 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
50 | $(TOP)/util/mklink.sh ../../test $(TEST) | 53 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
51 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
52 | 54 | ||
53 | install: | 55 | install: |
54 | @for i in $(EXHEADER) ; \ | 56 | @for i in $(EXHEADER) ; \ |
55 | do \ | 57 | do \ |
56 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 58 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
57 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 59 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
58 | done; | 60 | done; |
59 | 61 | ||
60 | tags: | 62 | tags: |
@@ -66,15 +68,21 @@ lint: | |||
66 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
67 | 69 | ||
68 | depend: | 70 | depend: |
69 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
70 | 72 | ||
71 | dclean: | 73 | dclean: |
72 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
73 | mv -f Makefile.new $(MAKEFILE) | 75 | mv -f Makefile.new $(MAKEFILE) |
74 | 76 | ||
75 | clean: | 77 | clean: |
76 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 78 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
77 | |||
78 | errors: | ||
79 | 79 | ||
80 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
81 | |||
82 | txt_db.o: ../../e_os.h ../../include/openssl/bio.h | ||
83 | txt_db.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
84 | txt_db.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
85 | txt_db.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
86 | txt_db.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
87 | txt_db.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
88 | txt_db.o: ../../include/openssl/txt_db.h ../cryptlib.h txt_db.c | ||
diff --git a/src/lib/libcrypto/util/pl/Mingw32f.pl b/src/lib/libcrypto/util/pl/Mingw32f.pl index a53c537646..44f5673d7a 100644 --- a/src/lib/libcrypto/util/pl/Mingw32f.pl +++ b/src/lib/libcrypto/util/pl/Mingw32f.pl | |||
@@ -11,9 +11,9 @@ $rm='del'; | |||
11 | 11 | ||
12 | $cc='gcc'; | 12 | $cc='gcc'; |
13 | if ($debug) | 13 | if ($debug) |
14 | { $cflags="-g2 -ggdb"; } | 14 | { $cflags="-g2 -ggdb -DDSO_WIN32"; } |
15 | else | 15 | else |
16 | { $cflags="-O3 -fomit-frame-pointer"; } | 16 | { $cflags="-O3 -fomit-frame-pointer -DDSO_WIN32"; } |
17 | 17 | ||
18 | $obj='.o'; | 18 | $obj='.o'; |
19 | $ofile='-o '; | 19 | $ofile='-o '; |
diff --git a/src/lib/libcrypto/x509/Makefile.ssl b/src/lib/libcrypto/x509/Makefile.ssl index 1c1ca2ffa0..3063f448c0 100644 --- a/src/lib/libcrypto/x509/Makefile.ssl +++ b/src/lib/libcrypto/x509/Makefile.ssl | |||
@@ -5,37 +5,36 @@ | |||
5 | DIR= x509 | 5 | DIR= x509 |
6 | TOP= ../.. | 6 | TOP= ../.. |
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
10 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
11 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
12 | MAKEDEPEND= makedepend -f Makefile.ssl | 14 | MAKEDEPPROG= makedepend |
15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
13 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
14 | AR= ar r | 17 | AR= ar r |
15 | 18 | ||
16 | CFLAGS= $(INCLUDES) $(CFLAG) | 19 | CFLAGS= $(INCLUDES) $(CFLAG) |
17 | 20 | ||
18 | ERR=x509 | ||
19 | ERRC=x509_err | ||
20 | GENERAL=Makefile README | 21 | GENERAL=Makefile README |
21 | TEST= | 22 | TEST= |
22 | APPS= | 23 | APPS= |
23 | 24 | ||
24 | LIB=$(TOP)/libcrypto.a | 25 | LIB=$(TOP)/libcrypto.a |
25 | LIBSRC= x509_def.c x509_d2.c x509_r2x.c x509_cmp.c \ | 26 | LIBSRC= x509_def.c x509_d2.c x509_r2x.c x509_cmp.c \ |
26 | x509_obj.c x509_req.c x509_vfy.c \ | 27 | x509_obj.c x509_req.c x509spki.c x509_vfy.c \ |
27 | x509_set.c x509rset.c $(ERRC).c \ | 28 | x509_set.c x509cset.c x509rset.c x509_err.c \ |
28 | x509name.c x509_v3.c x509_ext.c x509pack.c \ | 29 | x509name.c x509_v3.c x509_ext.c x509_att.c \ |
29 | x509type.c x509_lu.c x_all.c x509_txt.c \ | 30 | x509type.c x509_lu.c x_all.c x509_txt.c \ |
30 | by_file.c by_dir.c \ | 31 | x509_trs.c by_file.c by_dir.c |
31 | v3_net.c v3_x509.c | ||
32 | LIBOBJ= x509_def.o x509_d2.o x509_r2x.o x509_cmp.o \ | 32 | LIBOBJ= x509_def.o x509_d2.o x509_r2x.o x509_cmp.o \ |
33 | x509_obj.o x509_req.o x509_vfy.o \ | 33 | x509_obj.o x509_req.o x509spki.o x509_vfy.o \ |
34 | x509_set.o x509rset.o $(ERRC).o \ | 34 | x509_set.o x509cset.o x509rset.o x509_err.o \ |
35 | x509name.o x509_v3.o x509_ext.o x509pack.o \ | 35 | x509name.o x509_v3.o x509_ext.o x509_att.o \ |
36 | x509type.o x509_lu.o x_all.o x509_txt.o \ | 36 | x509type.o x509_lu.o x_all.o x509_txt.o \ |
37 | by_file.o by_dir.o \ | 37 | x509_trs.o by_file.o by_dir.o |
38 | v3_net.o v3_x509.o | ||
39 | 38 | ||
40 | SRC= $(LIBSRC) | 39 | SRC= $(LIBSRC) |
41 | 40 | ||
@@ -51,24 +50,23 @@ all: lib | |||
51 | 50 | ||
52 | lib: $(LIBOBJ) | 51 | lib: $(LIBOBJ) |
53 | $(AR) $(LIB) $(LIBOBJ) | 52 | $(AR) $(LIB) $(LIBOBJ) |
54 | sh $(TOP)/util/ranlib.sh $(LIB) | 53 | $(RANLIB) $(LIB) || echo Never mind. |
55 | @touch lib | 54 | @touch lib |
56 | 55 | ||
57 | files: | 56 | files: |
58 | perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 57 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
59 | 58 | ||
60 | links: | 59 | links: |
61 | /bin/rm -f Makefile | 60 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
62 | $(TOP)/util/point.sh Makefile.ssl Makefile ; | 61 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
63 | $(TOP)/util/mklink.sh ../../include $(EXHEADER) | 62 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
64 | $(TOP)/util/mklink.sh ../../test $(TEST) | 63 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
65 | $(TOP)/util/mklink.sh ../../apps $(APPS) | ||
66 | 64 | ||
67 | install: | 65 | install: |
68 | @for i in $(EXHEADER) ; \ | 66 | @for i in $(EXHEADER) ; \ |
69 | do \ | 67 | do \ |
70 | (cp $$i $(INSTALLTOP)/include/$$i; \ | 68 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
71 | chmod 644 $(INSTALLTOP)/include/$$i ); \ | 69 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
72 | done; | 70 | done; |
73 | 71 | ||
74 | tags: | 72 | tags: |
@@ -80,17 +78,333 @@ lint: | |||
80 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 78 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
81 | 79 | ||
82 | depend: | 80 | depend: |
83 | $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) | 81 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
84 | 82 | ||
85 | dclean: | 83 | dclean: |
86 | perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 84 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
87 | mv -f Makefile.new $(MAKEFILE) | 85 | mv -f Makefile.new $(MAKEFILE) |
88 | 86 | ||
89 | clean: | 87 | clean: |
90 | /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 88 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
91 | |||
92 | errors: | ||
93 | perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h | ||
94 | perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c | ||
95 | 89 | ||
96 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 90 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
91 | |||
92 | by_dir.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
93 | by_dir.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
94 | by_dir.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
95 | by_dir.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
96 | by_dir.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
97 | by_dir.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
98 | by_dir.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
99 | by_dir.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
100 | by_dir.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
101 | by_dir.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
102 | by_dir.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
103 | by_dir.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
104 | by_dir.o: ../cryptlib.h by_dir.c | ||
105 | by_file.o: ../../e_os.h ../../include/openssl/asn1.h | ||
106 | by_file.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
107 | by_file.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
108 | by_file.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
109 | by_file.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
110 | by_file.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
111 | by_file.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
112 | by_file.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
113 | by_file.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | ||
114 | by_file.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h | ||
115 | by_file.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
116 | by_file.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
117 | by_file.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
118 | by_file.o: ../../include/openssl/x509_vfy.h ../cryptlib.h by_file.c | ||
119 | x509_att.o: ../../e_os.h ../../include/openssl/asn1.h | ||
120 | x509_att.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
121 | x509_att.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
122 | x509_att.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
123 | x509_att.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
124 | x509_att.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
125 | x509_att.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
126 | x509_att.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
127 | x509_att.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
128 | x509_att.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
129 | x509_att.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
130 | x509_att.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
131 | x509_att.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
132 | x509_att.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_att.c | ||
133 | x509_cmp.o: ../../e_os.h ../../include/openssl/asn1.h | ||
134 | x509_cmp.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
135 | x509_cmp.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
136 | x509_cmp.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
137 | x509_cmp.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
138 | x509_cmp.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
139 | x509_cmp.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
140 | x509_cmp.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
141 | x509_cmp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
142 | x509_cmp.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
143 | x509_cmp.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
144 | x509_cmp.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
145 | x509_cmp.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
146 | x509_cmp.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_cmp.c | ||
147 | x509_d2.o: ../../e_os.h ../../include/openssl/asn1.h | ||
148 | x509_d2.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
149 | x509_d2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
150 | x509_d2.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
151 | x509_d2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
152 | x509_d2.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
153 | x509_d2.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
154 | x509_d2.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
155 | x509_d2.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
156 | x509_d2.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
157 | x509_d2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
158 | x509_d2.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
159 | x509_d2.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x509_d2.c | ||
160 | x509_def.o: ../../e_os.h ../../include/openssl/asn1.h | ||
161 | x509_def.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
162 | x509_def.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
163 | x509_def.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
164 | x509_def.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
165 | x509_def.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
166 | x509_def.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
167 | x509_def.o: ../../include/openssl/opensslconf.h | ||
168 | x509_def.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
169 | x509_def.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
170 | x509_def.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
171 | x509_def.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
172 | x509_def.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
173 | x509_def.o: ../cryptlib.h x509_def.c | ||
174 | x509_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
175 | x509_err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
176 | x509_err.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
177 | x509_err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
178 | x509_err.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
179 | x509_err.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
180 | x509_err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
181 | x509_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
182 | x509_err.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
183 | x509_err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
184 | x509_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
185 | x509_err.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
186 | x509_err.o: x509_err.c | ||
187 | x509_ext.o: ../../e_os.h ../../include/openssl/asn1.h | ||
188 | x509_ext.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
189 | x509_ext.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
190 | x509_ext.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
191 | x509_ext.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
192 | x509_ext.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
193 | x509_ext.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
194 | x509_ext.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
195 | x509_ext.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
196 | x509_ext.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
197 | x509_ext.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
198 | x509_ext.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
199 | x509_ext.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
200 | x509_ext.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_ext.c | ||
201 | x509_lu.o: ../../e_os.h ../../include/openssl/asn1.h | ||
202 | x509_lu.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
203 | x509_lu.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
204 | x509_lu.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
205 | x509_lu.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
206 | x509_lu.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
207 | x509_lu.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
208 | x509_lu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
209 | x509_lu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
210 | x509_lu.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
211 | x509_lu.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
212 | x509_lu.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
213 | x509_lu.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
214 | x509_lu.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_lu.c | ||
215 | x509_obj.o: ../../e_os.h ../../include/openssl/asn1.h | ||
216 | x509_obj.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
217 | x509_obj.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
218 | x509_obj.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
219 | x509_obj.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
220 | x509_obj.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
221 | x509_obj.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
222 | x509_obj.o: ../../include/openssl/opensslconf.h | ||
223 | x509_obj.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
224 | x509_obj.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
225 | x509_obj.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
226 | x509_obj.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
227 | x509_obj.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
228 | x509_obj.o: ../cryptlib.h x509_obj.c | ||
229 | x509_r2x.o: ../../e_os.h ../../include/openssl/asn1.h | ||
230 | x509_r2x.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
231 | x509_r2x.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
232 | x509_r2x.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
233 | x509_r2x.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
234 | x509_r2x.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
235 | x509_r2x.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
236 | x509_r2x.o: ../../include/openssl/opensslconf.h | ||
237 | x509_r2x.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
238 | x509_r2x.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
239 | x509_r2x.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
240 | x509_r2x.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
241 | x509_r2x.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
242 | x509_r2x.o: ../cryptlib.h x509_r2x.c | ||
243 | x509_req.o: ../../e_os.h ../../include/openssl/asn1.h | ||
244 | x509_req.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
245 | x509_req.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
246 | x509_req.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
247 | x509_req.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
248 | x509_req.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
249 | x509_req.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
250 | x509_req.o: ../../include/openssl/opensslconf.h | ||
251 | x509_req.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
252 | x509_req.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
253 | x509_req.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
254 | x509_req.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
255 | x509_req.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
256 | x509_req.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
257 | x509_req.o: ../cryptlib.h x509_req.c | ||
258 | x509_set.o: ../../e_os.h ../../include/openssl/asn1.h | ||
259 | x509_set.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
260 | x509_set.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
261 | x509_set.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
262 | x509_set.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
263 | x509_set.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
264 | x509_set.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
265 | x509_set.o: ../../include/openssl/opensslconf.h | ||
266 | x509_set.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
267 | x509_set.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
268 | x509_set.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
269 | x509_set.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
270 | x509_set.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
271 | x509_set.o: ../cryptlib.h x509_set.c | ||
272 | x509_trs.o: ../../e_os.h ../../include/openssl/asn1.h | ||
273 | x509_trs.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
274 | x509_trs.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
275 | x509_trs.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
276 | x509_trs.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
277 | x509_trs.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
278 | x509_trs.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
279 | x509_trs.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
280 | x509_trs.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
281 | x509_trs.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
282 | x509_trs.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
283 | x509_trs.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
284 | x509_trs.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
285 | x509_trs.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_trs.c | ||
286 | x509_txt.o: ../../e_os.h ../../include/openssl/asn1.h | ||
287 | x509_txt.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
288 | x509_txt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
289 | x509_txt.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
290 | x509_txt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
291 | x509_txt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
292 | x509_txt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
293 | x509_txt.o: ../../include/openssl/opensslconf.h | ||
294 | x509_txt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
295 | x509_txt.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
296 | x509_txt.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
297 | x509_txt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
298 | x509_txt.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
299 | x509_txt.o: ../cryptlib.h x509_txt.c | ||
300 | x509_v3.o: ../../e_os.h ../../include/openssl/asn1.h | ||
301 | x509_v3.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
302 | x509_v3.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
303 | x509_v3.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
304 | x509_v3.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
305 | x509_v3.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
306 | x509_v3.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
307 | x509_v3.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
308 | x509_v3.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
309 | x509_v3.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
310 | x509_v3.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
311 | x509_v3.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
312 | x509_v3.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
313 | x509_v3.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_v3.c | ||
314 | x509_vfy.o: ../../e_os.h ../../include/openssl/asn1.h | ||
315 | x509_vfy.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
316 | x509_vfy.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
317 | x509_vfy.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
318 | x509_vfy.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
319 | x509_vfy.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
320 | x509_vfy.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
321 | x509_vfy.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
322 | x509_vfy.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
323 | x509_vfy.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
324 | x509_vfy.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
325 | x509_vfy.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
326 | x509_vfy.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
327 | x509_vfy.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_vfy.c | ||
328 | x509cset.o: ../../e_os.h ../../include/openssl/asn1.h | ||
329 | x509cset.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
330 | x509cset.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
331 | x509cset.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
332 | x509cset.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
333 | x509cset.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
334 | x509cset.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
335 | x509cset.o: ../../include/openssl/opensslconf.h | ||
336 | x509cset.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
337 | x509cset.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
338 | x509cset.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
339 | x509cset.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
340 | x509cset.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
341 | x509cset.o: ../cryptlib.h x509cset.c | ||
342 | x509name.o: ../../e_os.h ../../include/openssl/asn1.h | ||
343 | x509name.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
344 | x509name.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
345 | x509name.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
346 | x509name.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
347 | x509name.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
348 | x509name.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
349 | x509name.o: ../../include/openssl/opensslconf.h | ||
350 | x509name.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
351 | x509name.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
352 | x509name.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
353 | x509name.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
354 | x509name.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
355 | x509name.o: ../cryptlib.h x509name.c | ||
356 | x509rset.o: ../../e_os.h ../../include/openssl/asn1.h | ||
357 | x509rset.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
358 | x509rset.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
359 | x509rset.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
360 | x509rset.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
361 | x509rset.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
362 | x509rset.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
363 | x509rset.o: ../../include/openssl/opensslconf.h | ||
364 | x509rset.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
365 | x509rset.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
366 | x509rset.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
367 | x509rset.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
368 | x509rset.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
369 | x509rset.o: ../cryptlib.h x509rset.c | ||
370 | x509spki.o: ../../e_os.h ../../include/openssl/asn1.h | ||
371 | x509spki.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
372 | x509spki.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
373 | x509spki.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
374 | x509spki.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
375 | x509spki.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
376 | x509spki.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
377 | x509spki.o: ../../include/openssl/opensslconf.h | ||
378 | x509spki.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
379 | x509spki.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
380 | x509spki.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
381 | x509spki.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
382 | x509spki.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
383 | x509spki.o: ../cryptlib.h x509spki.c | ||
384 | x509type.o: ../../e_os.h ../../include/openssl/asn1.h | ||
385 | x509type.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
386 | x509type.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
387 | x509type.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
388 | x509type.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
389 | x509type.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
390 | x509type.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
391 | x509type.o: ../../include/openssl/opensslconf.h | ||
392 | x509type.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
393 | x509type.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
394 | x509type.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
395 | x509type.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
396 | x509type.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
397 | x509type.o: ../cryptlib.h x509type.c | ||
398 | x_all.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
399 | x_all.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
400 | x_all.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
401 | x_all.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
402 | x_all.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
403 | x_all.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
404 | x_all.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
405 | x_all.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
406 | x_all.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
407 | x_all.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
408 | x_all.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
409 | x_all.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
410 | x_all.o: ../cryptlib.h x_all.c | ||
diff --git a/src/lib/libcrypto/x509v3/Makefile.ssl b/src/lib/libcrypto/x509v3/Makefile.ssl index 57006e6875..da7c859476 100644 --- a/src/lib/libcrypto/x509v3/Makefile.ssl +++ b/src/lib/libcrypto/x509v3/Makefile.ssl | |||
@@ -5,13 +5,14 @@ | |||
5 | DIR= x509v3 | 5 | DIR= x509v3 |
6 | TOP= ../.. | 6 | TOP= ../.. |
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= -I.. -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | 10 | INSTALL_PREFIX= |
11 | OPENSSLDIR= /usr/local/ssl | 11 | OPENSSLDIR= /usr/local/ssl |
12 | INSTALLTOP=/usr/local/ssl | 12 | INSTALLTOP=/usr/local/ssl |
13 | MAKE= make -f Makefile.ssl | 13 | MAKE= make -f Makefile.ssl |
14 | MAKEDEPEND= $(TOP)/util/domd $(TOP) | 14 | MAKEDEPPROG= makedepend |
15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
15 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
16 | AR= ar r | 17 | AR= ar r |
17 | 18 | ||
@@ -22,12 +23,14 @@ TEST= | |||
22 | APPS= | 23 | APPS= |
23 | 24 | ||
24 | LIB=$(TOP)/libcrypto.a | 25 | LIB=$(TOP)/libcrypto.a |
25 | LIBSRC= v3_bcons.c v3_bitst.c v3_conf.c v3_extku.c v3_ia5.c \ | 26 | LIBSRC= v3_bcons.c v3_bitst.c v3_conf.c v3_extku.c v3_ia5.c v3_lib.c \ |
26 | v3_lib.c v3_prn.c v3_utl.c v3err.c v3_genn.c v3_alt.c v3_skey.c v3_akey.c \ | 27 | v3_prn.c v3_utl.c v3err.c v3_genn.c v3_alt.c v3_skey.c v3_akey.c v3_pku.c \ |
27 | v3_pku.c v3_int.c v3_enum.c v3_sxnet.c v3_cpols.c v3_crld.c | 28 | v3_int.c v3_enum.c v3_sxnet.c v3_cpols.c v3_crld.c v3_purp.c v3_info.c \ |
29 | v3_ocsp.c v3_akeya.c | ||
28 | LIBOBJ= v3_bcons.o v3_bitst.o v3_conf.o v3_extku.o v3_ia5.o v3_lib.o \ | 30 | LIBOBJ= v3_bcons.o v3_bitst.o v3_conf.o v3_extku.o v3_ia5.o v3_lib.o \ |
29 | v3_prn.o v3_utl.o v3err.o v3_genn.o v3_alt.o v3_skey.o v3_akey.o v3_pku.o \ | 31 | v3_prn.o v3_utl.o v3err.o v3_genn.o v3_alt.o v3_skey.o v3_akey.o v3_pku.o \ |
30 | v3_int.o v3_enum.o v3_sxnet.o v3_cpols.o v3_crld.o | 32 | v3_int.o v3_enum.o v3_sxnet.o v3_cpols.o v3_crld.o v3_purp.o v3_info.o \ |
33 | v3_ocsp.o v3_akeya.o | ||
31 | 34 | ||
32 | SRC= $(LIBSRC) | 35 | SRC= $(LIBSRC) |
33 | 36 | ||
@@ -43,7 +46,7 @@ all: lib | |||
43 | 46 | ||
44 | lib: $(LIBOBJ) | 47 | lib: $(LIBOBJ) |
45 | $(AR) $(LIB) $(LIBOBJ) | 48 | $(AR) $(LIB) $(LIBOBJ) |
46 | $(RANLIB) $(LIB) | 49 | $(RANLIB) $(LIB) || echo Never mind. |
47 | @touch lib | 50 | @touch lib |
48 | 51 | ||
49 | files: | 52 | files: |
@@ -82,351 +85,336 @@ clean: | |||
82 | 85 | ||
83 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 86 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
84 | 87 | ||
85 | v3_akey.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h | 88 | v3_akey.o: ../../e_os.h ../../include/openssl/asn1.h |
86 | v3_akey.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 89 | v3_akey.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
87 | v3_akey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 90 | v3_akey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
88 | v3_akey.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | 91 | v3_akey.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
89 | v3_akey.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
90 | v3_akey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 92 | v3_akey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
91 | v3_akey.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 93 | v3_akey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
92 | v3_akey.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 94 | v3_akey.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
93 | v3_akey.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 95 | v3_akey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
94 | v3_akey.o: ../../include/openssl/md2.h ../../include/openssl/md5.h | ||
95 | v3_akey.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h | ||
96 | v3_akey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 96 | v3_akey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
97 | v3_akey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 97 | v3_akey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
98 | v3_akey.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 98 | v3_akey.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
99 | v3_akey.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 99 | v3_akey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
100 | v3_akey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 100 | v3_akey.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
101 | v3_akey.o: ../../include/openssl/stack.h ../../include/openssl/x509.h | ||
102 | v3_akey.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 101 | v3_akey.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
103 | v3_akey.o: ../cryptlib.h | 102 | v3_akey.o: ../cryptlib.h v3_akey.c |
104 | v3_alt.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 103 | v3_akeya.o: ../../e_os.h ../../include/openssl/asn1.h |
105 | v3_alt.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 104 | v3_akeya.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
106 | v3_alt.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 105 | v3_akeya.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
106 | v3_akeya.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
107 | v3_akeya.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
108 | v3_akeya.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
109 | v3_akeya.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
110 | v3_akeya.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
111 | v3_akeya.o: ../../include/openssl/opensslconf.h | ||
112 | v3_akeya.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
113 | v3_akeya.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
114 | v3_akeya.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
115 | v3_akeya.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
116 | v3_akeya.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
117 | v3_akeya.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_akeya.c | ||
118 | v3_alt.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
119 | v3_alt.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
107 | v3_alt.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 120 | v3_alt.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
108 | v3_alt.o: ../../include/openssl/des.h ../../include/openssl/dh.h | 121 | v3_alt.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
109 | v3_alt.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h | ||
110 | v3_alt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 122 | v3_alt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
111 | v3_alt.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 123 | v3_alt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
112 | v3_alt.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 124 | v3_alt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
113 | v3_alt.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 125 | v3_alt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
114 | v3_alt.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 126 | v3_alt.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
115 | v3_alt.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h | ||
116 | v3_alt.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
117 | v3_alt.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
118 | v3_alt.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 127 | v3_alt.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
119 | v3_alt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 128 | v3_alt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
120 | v3_alt.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 129 | v3_alt.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
121 | v3_alt.o: ../../include/openssl/x509v3.h ../cryptlib.h | 130 | v3_alt.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
122 | v3_bcons.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h | 131 | v3_alt.o: ../cryptlib.h v3_alt.c |
123 | v3_bcons.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 132 | v3_bcons.o: ../../e_os.h ../../include/openssl/asn1.h |
133 | v3_bcons.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
124 | v3_bcons.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 134 | v3_bcons.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
125 | v3_bcons.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | 135 | v3_bcons.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
126 | v3_bcons.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
127 | v3_bcons.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 136 | v3_bcons.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
128 | v3_bcons.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 137 | v3_bcons.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
129 | v3_bcons.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 138 | v3_bcons.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
130 | v3_bcons.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 139 | v3_bcons.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
131 | v3_bcons.o: ../../include/openssl/md2.h ../../include/openssl/md5.h | ||
132 | v3_bcons.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h | ||
133 | v3_bcons.o: ../../include/openssl/opensslconf.h | 140 | v3_bcons.o: ../../include/openssl/opensslconf.h |
134 | v3_bcons.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h | 141 | v3_bcons.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
135 | v3_bcons.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 142 | v3_bcons.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h |
136 | v3_bcons.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 143 | v3_bcons.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
137 | v3_bcons.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 144 | v3_bcons.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
138 | v3_bcons.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
139 | v3_bcons.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 145 | v3_bcons.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
140 | v3_bcons.o: ../../include/openssl/x509v3.h ../cryptlib.h | 146 | v3_bcons.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_bcons.c |
141 | v3_bitst.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 147 | v3_bitst.o: ../../e_os.h ../../include/openssl/asn1.h |
142 | v3_bitst.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 148 | v3_bitst.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
143 | v3_bitst.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 149 | v3_bitst.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
144 | v3_bitst.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 150 | v3_bitst.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h |
145 | v3_bitst.o: ../../include/openssl/des.h ../../include/openssl/dh.h | 151 | v3_bitst.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
146 | v3_bitst.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h | 152 | v3_bitst.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
147 | v3_bitst.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 153 | v3_bitst.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
148 | v3_bitst.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
149 | v3_bitst.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
150 | v3_bitst.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
151 | v3_bitst.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 154 | v3_bitst.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
152 | v3_bitst.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h | 155 | v3_bitst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
153 | v3_bitst.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 156 | v3_bitst.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h |
154 | v3_bitst.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 157 | v3_bitst.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
155 | v3_bitst.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 158 | v3_bitst.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
156 | v3_bitst.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
157 | v3_bitst.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 159 | v3_bitst.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
158 | v3_bitst.o: ../../include/openssl/x509v3.h ../cryptlib.h | 160 | v3_bitst.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_bitst.c |
159 | v3_conf.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 161 | v3_conf.o: ../../e_os.h ../../include/openssl/asn1.h |
160 | v3_conf.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 162 | v3_conf.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
161 | v3_conf.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 163 | v3_conf.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
162 | v3_conf.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 164 | v3_conf.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h |
163 | v3_conf.o: ../../include/openssl/des.h ../../include/openssl/dh.h | 165 | v3_conf.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
164 | v3_conf.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h | 166 | v3_conf.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
165 | v3_conf.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 167 | v3_conf.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
166 | v3_conf.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
167 | v3_conf.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
168 | v3_conf.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
169 | v3_conf.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 168 | v3_conf.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
170 | v3_conf.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h | 169 | v3_conf.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
171 | v3_conf.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 170 | v3_conf.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h |
172 | v3_conf.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 171 | v3_conf.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
173 | v3_conf.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 172 | v3_conf.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
174 | v3_conf.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
175 | v3_conf.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 173 | v3_conf.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
176 | v3_conf.o: ../../include/openssl/x509v3.h ../cryptlib.h | 174 | v3_conf.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_conf.c |
177 | v3_cpols.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h | 175 | v3_cpols.o: ../../e_os.h ../../include/openssl/asn1.h |
178 | v3_cpols.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 176 | v3_cpols.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
179 | v3_cpols.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 177 | v3_cpols.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
180 | v3_cpols.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | 178 | v3_cpols.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
181 | v3_cpols.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
182 | v3_cpols.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 179 | v3_cpols.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
183 | v3_cpols.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 180 | v3_cpols.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
184 | v3_cpols.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 181 | v3_cpols.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
185 | v3_cpols.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 182 | v3_cpols.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
186 | v3_cpols.o: ../../include/openssl/md2.h ../../include/openssl/md5.h | ||
187 | v3_cpols.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h | ||
188 | v3_cpols.o: ../../include/openssl/opensslconf.h | 183 | v3_cpols.o: ../../include/openssl/opensslconf.h |
189 | v3_cpols.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h | 184 | v3_cpols.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
190 | v3_cpols.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 185 | v3_cpols.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h |
191 | v3_cpols.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 186 | v3_cpols.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
192 | v3_cpols.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 187 | v3_cpols.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
193 | v3_cpols.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
194 | v3_cpols.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 188 | v3_cpols.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
195 | v3_cpols.o: ../../include/openssl/x509v3.h ../cryptlib.h | 189 | v3_cpols.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_cpols.c |
196 | v3_crld.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h | 190 | v3_crld.o: ../../e_os.h ../../include/openssl/asn1.h |
197 | v3_crld.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 191 | v3_crld.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
198 | v3_crld.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 192 | v3_crld.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
199 | v3_crld.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | 193 | v3_crld.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
200 | v3_crld.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
201 | v3_crld.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 194 | v3_crld.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
202 | v3_crld.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 195 | v3_crld.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
203 | v3_crld.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 196 | v3_crld.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
204 | v3_crld.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 197 | v3_crld.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
205 | v3_crld.o: ../../include/openssl/md2.h ../../include/openssl/md5.h | ||
206 | v3_crld.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h | ||
207 | v3_crld.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 198 | v3_crld.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
208 | v3_crld.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 199 | v3_crld.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
209 | v3_crld.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 200 | v3_crld.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
210 | v3_crld.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 201 | v3_crld.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
211 | v3_crld.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 202 | v3_crld.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
212 | v3_crld.o: ../../include/openssl/stack.h ../../include/openssl/x509.h | ||
213 | v3_crld.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 203 | v3_crld.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
214 | v3_crld.o: ../cryptlib.h | 204 | v3_crld.o: ../cryptlib.h v3_crld.c |
215 | v3_enum.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 205 | v3_enum.o: ../../e_os.h ../../include/openssl/asn1.h |
216 | v3_enum.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 206 | v3_enum.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
217 | v3_enum.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 207 | v3_enum.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
218 | v3_enum.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 208 | v3_enum.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h |
219 | v3_enum.o: ../../include/openssl/des.h ../../include/openssl/dh.h | 209 | v3_enum.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
220 | v3_enum.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h | 210 | v3_enum.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
221 | v3_enum.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 211 | v3_enum.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
222 | v3_enum.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
223 | v3_enum.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
224 | v3_enum.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
225 | v3_enum.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 212 | v3_enum.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
226 | v3_enum.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h | 213 | v3_enum.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
227 | v3_enum.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 214 | v3_enum.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h |
228 | v3_enum.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 215 | v3_enum.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
229 | v3_enum.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 216 | v3_enum.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
230 | v3_enum.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
231 | v3_enum.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 217 | v3_enum.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
232 | v3_enum.o: ../../include/openssl/x509v3.h ../cryptlib.h | 218 | v3_enum.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_enum.c |
233 | v3_extku.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 219 | v3_extku.o: ../../e_os.h ../../include/openssl/asn1.h |
234 | v3_extku.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 220 | v3_extku.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
235 | v3_extku.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 221 | v3_extku.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
236 | v3_extku.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 222 | v3_extku.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
237 | v3_extku.o: ../../include/openssl/des.h ../../include/openssl/dh.h | 223 | v3_extku.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
238 | v3_extku.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h | ||
239 | v3_extku.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 224 | v3_extku.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
240 | v3_extku.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 225 | v3_extku.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
241 | v3_extku.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 226 | v3_extku.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
242 | v3_extku.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 227 | v3_extku.o: ../../include/openssl/opensslconf.h |
243 | v3_extku.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 228 | v3_extku.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
244 | v3_extku.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h | 229 | v3_extku.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h |
245 | v3_extku.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 230 | v3_extku.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
246 | v3_extku.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 231 | v3_extku.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
247 | v3_extku.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
248 | v3_extku.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
249 | v3_extku.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 232 | v3_extku.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
250 | v3_extku.o: ../../include/openssl/x509v3.h ../cryptlib.h | 233 | v3_extku.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_extku.c |
251 | v3_genn.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h | 234 | v3_genn.o: ../../e_os.h ../../include/openssl/asn1.h |
252 | v3_genn.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 235 | v3_genn.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
253 | v3_genn.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 236 | v3_genn.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
254 | v3_genn.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | 237 | v3_genn.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
255 | v3_genn.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
256 | v3_genn.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 238 | v3_genn.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
257 | v3_genn.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 239 | v3_genn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
258 | v3_genn.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 240 | v3_genn.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
259 | v3_genn.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 241 | v3_genn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
260 | v3_genn.o: ../../include/openssl/md2.h ../../include/openssl/md5.h | ||
261 | v3_genn.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h | ||
262 | v3_genn.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 242 | v3_genn.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
263 | v3_genn.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 243 | v3_genn.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
264 | v3_genn.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 244 | v3_genn.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
265 | v3_genn.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 245 | v3_genn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
266 | v3_genn.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 246 | v3_genn.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
267 | v3_genn.o: ../../include/openssl/stack.h ../../include/openssl/x509.h | ||
268 | v3_genn.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 247 | v3_genn.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
269 | v3_genn.o: ../cryptlib.h | 248 | v3_genn.o: ../cryptlib.h v3_genn.c |
270 | v3_ia5.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 249 | v3_ia5.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
271 | v3_ia5.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 250 | v3_ia5.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
272 | v3_ia5.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
273 | v3_ia5.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 251 | v3_ia5.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
274 | v3_ia5.o: ../../include/openssl/des.h ../../include/openssl/dh.h | 252 | v3_ia5.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
275 | v3_ia5.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h | ||
276 | v3_ia5.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 253 | v3_ia5.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
277 | v3_ia5.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 254 | v3_ia5.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
278 | v3_ia5.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 255 | v3_ia5.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
279 | v3_ia5.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 256 | v3_ia5.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
280 | v3_ia5.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 257 | v3_ia5.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
281 | v3_ia5.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h | ||
282 | v3_ia5.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
283 | v3_ia5.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
284 | v3_ia5.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 258 | v3_ia5.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
285 | v3_ia5.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 259 | v3_ia5.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
286 | v3_ia5.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 260 | v3_ia5.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
287 | v3_ia5.o: ../../include/openssl/x509v3.h ../cryptlib.h | 261 | v3_ia5.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
288 | v3_int.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 262 | v3_ia5.o: ../cryptlib.h v3_ia5.c |
289 | v3_int.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 263 | v3_info.o: ../../e_os.h ../../include/openssl/asn1.h |
290 | v3_int.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 264 | v3_info.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
265 | v3_info.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
266 | v3_info.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
267 | v3_info.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
268 | v3_info.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
269 | v3_info.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
270 | v3_info.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
271 | v3_info.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
272 | v3_info.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
273 | v3_info.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
274 | v3_info.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
275 | v3_info.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
276 | v3_info.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
277 | v3_info.o: ../cryptlib.h v3_info.c | ||
278 | v3_int.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
279 | v3_int.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
291 | v3_int.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 280 | v3_int.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
292 | v3_int.o: ../../include/openssl/des.h ../../include/openssl/dh.h | 281 | v3_int.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
293 | v3_int.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h | ||
294 | v3_int.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 282 | v3_int.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
295 | v3_int.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 283 | v3_int.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
296 | v3_int.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 284 | v3_int.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
297 | v3_int.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 285 | v3_int.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
298 | v3_int.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 286 | v3_int.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
299 | v3_int.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h | ||
300 | v3_int.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
301 | v3_int.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
302 | v3_int.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 287 | v3_int.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
303 | v3_int.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 288 | v3_int.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
304 | v3_int.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 289 | v3_int.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
305 | v3_int.o: ../../include/openssl/x509v3.h ../cryptlib.h | 290 | v3_int.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
306 | v3_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 291 | v3_int.o: ../cryptlib.h v3_int.c |
307 | v3_lib.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 292 | v3_lib.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
308 | v3_lib.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 293 | v3_lib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
309 | v3_lib.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 294 | v3_lib.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
310 | v3_lib.o: ../../include/openssl/des.h ../../include/openssl/dh.h | 295 | v3_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
311 | v3_lib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h | ||
312 | v3_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 296 | v3_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
313 | v3_lib.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 297 | v3_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
314 | v3_lib.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 298 | v3_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
315 | v3_lib.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 299 | v3_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
316 | v3_lib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 300 | v3_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
317 | v3_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h | ||
318 | v3_lib.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
319 | v3_lib.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
320 | v3_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 301 | v3_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
321 | v3_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 302 | v3_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
322 | v3_lib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 303 | v3_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
323 | v3_lib.o: ../../include/openssl/x509v3.h ../cryptlib.h | 304 | v3_lib.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
324 | v3_pku.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h | 305 | v3_lib.o: ../cryptlib.h ext_dat.h v3_lib.c |
325 | v3_pku.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 306 | v3_ocsp.o: ../../e_os.h ../../include/openssl/asn1.h |
307 | v3_ocsp.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
308 | v3_ocsp.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
309 | v3_ocsp.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
310 | v3_ocsp.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
311 | v3_ocsp.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
312 | v3_ocsp.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
313 | v3_ocsp.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h | ||
314 | v3_ocsp.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
315 | v3_ocsp.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
316 | v3_ocsp.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
317 | v3_ocsp.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
318 | v3_ocsp.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
319 | v3_ocsp.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
320 | v3_ocsp.o: ../cryptlib.h v3_ocsp.c | ||
321 | v3_pku.o: ../../e_os.h ../../include/openssl/asn1.h | ||
322 | v3_pku.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
326 | v3_pku.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 323 | v3_pku.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
327 | v3_pku.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | 324 | v3_pku.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
328 | v3_pku.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
329 | v3_pku.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 325 | v3_pku.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
330 | v3_pku.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 326 | v3_pku.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
331 | v3_pku.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 327 | v3_pku.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
332 | v3_pku.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 328 | v3_pku.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
333 | v3_pku.o: ../../include/openssl/md2.h ../../include/openssl/md5.h | ||
334 | v3_pku.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h | ||
335 | v3_pku.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 329 | v3_pku.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
336 | v3_pku.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 330 | v3_pku.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
337 | v3_pku.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 331 | v3_pku.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
338 | v3_pku.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 332 | v3_pku.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
339 | v3_pku.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 333 | v3_pku.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
340 | v3_pku.o: ../../include/openssl/stack.h ../../include/openssl/x509.h | ||
341 | v3_pku.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 334 | v3_pku.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
342 | v3_pku.o: ../cryptlib.h | 335 | v3_pku.o: ../cryptlib.h v3_pku.c |
343 | v3_prn.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 336 | v3_prn.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
344 | v3_prn.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 337 | v3_prn.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
345 | v3_prn.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
346 | v3_prn.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 338 | v3_prn.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
347 | v3_prn.o: ../../include/openssl/des.h ../../include/openssl/dh.h | 339 | v3_prn.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
348 | v3_prn.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h | ||
349 | v3_prn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 340 | v3_prn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
350 | v3_prn.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 341 | v3_prn.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
351 | v3_prn.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 342 | v3_prn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
352 | v3_prn.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 343 | v3_prn.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
353 | v3_prn.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 344 | v3_prn.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
354 | v3_prn.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h | ||
355 | v3_prn.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
356 | v3_prn.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
357 | v3_prn.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 345 | v3_prn.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
358 | v3_prn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 346 | v3_prn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
359 | v3_prn.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 347 | v3_prn.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
360 | v3_prn.o: ../../include/openssl/x509v3.h ../cryptlib.h | 348 | v3_prn.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
361 | v3_skey.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 349 | v3_prn.o: ../cryptlib.h v3_prn.c |
362 | v3_skey.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 350 | v3_purp.o: ../../e_os.h ../../include/openssl/asn1.h |
363 | v3_skey.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 351 | v3_purp.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
364 | v3_skey.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 352 | v3_purp.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
365 | v3_skey.o: ../../include/openssl/des.h ../../include/openssl/dh.h | 353 | v3_purp.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h |
366 | v3_skey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h | 354 | v3_purp.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
367 | v3_skey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 355 | v3_purp.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
368 | v3_skey.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 356 | v3_purp.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
369 | v3_skey.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 357 | v3_purp.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
370 | v3_skey.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 358 | v3_purp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
359 | v3_purp.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
360 | v3_purp.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
361 | v3_purp.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
362 | v3_purp.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
363 | v3_purp.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_purp.c | ||
364 | v3_skey.o: ../../e_os.h ../../include/openssl/asn1.h | ||
365 | v3_skey.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
366 | v3_skey.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
367 | v3_skey.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
368 | v3_skey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
369 | v3_skey.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
370 | v3_skey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
371 | v3_skey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 371 | v3_skey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
372 | v3_skey.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h | 372 | v3_skey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
373 | v3_skey.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 373 | v3_skey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h |
374 | v3_skey.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 374 | v3_skey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
375 | v3_skey.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 375 | v3_skey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
376 | v3_skey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
377 | v3_skey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 376 | v3_skey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
378 | v3_skey.o: ../../include/openssl/x509v3.h ../cryptlib.h | 377 | v3_skey.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_skey.c |
379 | v3_sxnet.o: ../../include/openssl/asn1.h ../../include/openssl/asn1_mac.h | 378 | v3_sxnet.o: ../../e_os.h ../../include/openssl/asn1.h |
380 | v3_sxnet.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 379 | v3_sxnet.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
381 | v3_sxnet.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 380 | v3_sxnet.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
382 | v3_sxnet.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | 381 | v3_sxnet.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
383 | v3_sxnet.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
384 | v3_sxnet.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 382 | v3_sxnet.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
385 | v3_sxnet.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 383 | v3_sxnet.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
386 | v3_sxnet.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 384 | v3_sxnet.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
387 | v3_sxnet.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 385 | v3_sxnet.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
388 | v3_sxnet.o: ../../include/openssl/md2.h ../../include/openssl/md5.h | ||
389 | v3_sxnet.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h | ||
390 | v3_sxnet.o: ../../include/openssl/opensslconf.h | 386 | v3_sxnet.o: ../../include/openssl/opensslconf.h |
391 | v3_sxnet.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h | 387 | v3_sxnet.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
392 | v3_sxnet.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 388 | v3_sxnet.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h |
393 | v3_sxnet.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 389 | v3_sxnet.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
394 | v3_sxnet.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 390 | v3_sxnet.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
395 | v3_sxnet.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
396 | v3_sxnet.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 391 | v3_sxnet.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
397 | v3_sxnet.o: ../../include/openssl/x509v3.h ../cryptlib.h | 392 | v3_sxnet.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_sxnet.c |
398 | v3_utl.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 393 | v3_utl.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
399 | v3_utl.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 394 | v3_utl.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
400 | v3_utl.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
401 | v3_utl.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 395 | v3_utl.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
402 | v3_utl.o: ../../include/openssl/des.h ../../include/openssl/dh.h | 396 | v3_utl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
403 | v3_utl.o: ../../include/openssl/dsa.h ../../include/openssl/e_os.h | ||
404 | v3_utl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 397 | v3_utl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
405 | v3_utl.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 398 | v3_utl.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
406 | v3_utl.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 399 | v3_utl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
407 | v3_utl.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 400 | v3_utl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
408 | v3_utl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 401 | v3_utl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
409 | v3_utl.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h | ||
410 | v3_utl.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
411 | v3_utl.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
412 | v3_utl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 402 | v3_utl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
413 | v3_utl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 403 | v3_utl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
414 | v3_utl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 404 | v3_utl.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
415 | v3_utl.o: ../../include/openssl/x509v3.h ../cryptlib.h | 405 | v3_utl.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
406 | v3_utl.o: ../cryptlib.h v3_utl.c | ||
416 | v3err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 407 | v3err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
417 | v3err.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 408 | v3err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
418 | v3err.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | 409 | v3err.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
419 | v3err.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
420 | v3err.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 410 | v3err.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
421 | v3err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 411 | v3err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
422 | v3err.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 412 | v3err.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
423 | v3err.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 413 | v3err.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
424 | v3err.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 414 | v3err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
425 | v3err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 415 | v3err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
426 | v3err.o: ../../include/openssl/opensslv.h ../../include/openssl/pkcs7.h | ||
427 | v3err.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
428 | v3err.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
429 | v3err.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 416 | v3err.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
430 | v3err.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 417 | v3err.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
431 | v3err.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 418 | v3err.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
432 | v3err.o: ../../include/openssl/x509v3.h | 419 | v3err.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
420 | v3err.o: v3err.c | ||