diff options
Diffstat (limited to 'src/lib/libcrypto/bn/Makefile.ssl')
-rw-r--r-- | src/lib/libcrypto/bn/Makefile.ssl | 276 |
1 files changed, 151 insertions, 125 deletions
diff --git a/src/lib/libcrypto/bn/Makefile.ssl b/src/lib/libcrypto/bn/Makefile.ssl index 526d7adb5c..eb6f0eeebd 100644 --- a/src/lib/libcrypto/bn/Makefile.ssl +++ b/src/lib/libcrypto/bn/Makefile.ssl | |||
@@ -6,13 +6,14 @@ DIR= bn | |||
6 | TOP= ../.. | 6 | TOP= ../.. |
7 | CC= cc | 7 | CC= cc |
8 | CPP= $(CC) -E | 8 | CPP= $(CC) -E |
9 | INCLUDES= -I.. -I../../include | 9 | INCLUDES= -I.. -I$(TOP) -I../../include |
10 | CFLAG=-g | 10 | CFLAG=-g |
11 | INSTALL_PREFIX= | 11 | 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 | ||
@@ -35,15 +36,15 @@ TEST=bntest.c exptest.c | |||
35 | APPS= | 36 | APPS= |
36 | 37 | ||
37 | LIB=$(TOP)/libcrypto.a | 38 | LIB=$(TOP)/libcrypto.a |
38 | LIBSRC= bn_add.c bn_div.c bn_exp.c bn_lib.c bn_ctx.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 \ |
39 | bn_print.c bn_rand.c bn_shift.c bn_word.c bn_blind.c \ | 40 | bn_print.c bn_rand.c bn_shift.c bn_word.c bn_blind.c \ |
40 | bn_gcd.c bn_prime.c bn_err.c bn_sqr.c bn_asm.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 \ |
41 | bn_mpi.c bn_exp2.c | 42 | bn_recp.c bn_mont.c bn_mpi.c bn_exp2.c |
42 | 43 | ||
43 | LIBOBJ= bn_add.o bn_div.o bn_exp.o bn_lib.o bn_ctx.o bn_mul.o \ | 44 | LIBOBJ= bn_add.o bn_div.o bn_exp.o bn_lib.o bn_ctx.o bn_mul.o bn_mod.o \ |
44 | bn_print.o bn_rand.o bn_shift.o bn_word.o bn_blind.o \ | 45 | bn_print.o bn_rand.o bn_shift.o bn_word.o bn_blind.o \ |
45 | bn_gcd.o bn_prime.o bn_err.o bn_sqr.o $(BN_ASM) bn_recp.o bn_mont.o \ | 46 | bn_kron.o bn_sqrt.o bn_gcd.o bn_prime.o bn_err.o bn_sqr.o $(BN_ASM) \ |
46 | bn_mpi.o bn_exp2.o | 47 | bn_recp.o bn_mont.o bn_mpi.o bn_exp2.o |
47 | 48 | ||
48 | SRC= $(LIBSRC) | 49 | SRC= $(LIBSRC) |
49 | 50 | ||
@@ -68,8 +69,7 @@ bnbug: bnbug.c ../../libcrypto.a top | |||
68 | 69 | ||
69 | lib: $(LIBOBJ) | 70 | lib: $(LIBOBJ) |
70 | $(AR) $(LIB) $(LIBOBJ) | 71 | $(AR) $(LIB) $(LIBOBJ) |
71 | @echo You may get an error following this line. Please ignore. | 72 | $(RANLIB) $(LIB) || echo Never mind. |
72 | - $(RANLIB) $(LIB) | ||
73 | @touch lib | 73 | @touch lib |
74 | 74 | ||
75 | # elf | 75 | # elf |
@@ -124,6 +124,18 @@ asm/sparcv8plus-gcc27.o: asm/sparcv8plus.S | |||
124 | $(CC) $(ASFLAGS) -E asm/sparcv8plus.S | \ | 124 | $(CC) $(ASFLAGS) -E asm/sparcv8plus.S | \ |
125 | /usr/ccs/bin/as -xarch=v8plus - -o asm/sparcv8plus-gcc27.o | 125 | /usr/ccs/bin/as -xarch=v8plus - -o asm/sparcv8plus-gcc27.o |
126 | 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 | ||
138 | |||
127 | files: | 139 | files: |
128 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 140 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
129 | 141 | ||
@@ -168,146 +180,160 @@ clean: | |||
168 | 180 | ||
169 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 181 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
170 | 182 | ||
171 | bn_add.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 183 | bn_add.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h |
172 | bn_add.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 184 | bn_add.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
173 | bn_add.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 185 | bn_add.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
174 | bn_add.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 186 | bn_add.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
175 | bn_add.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 187 | bn_add.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h |
176 | bn_add.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 188 | bn_add.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
177 | bn_add.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h | 189 | bn_add.o: ../cryptlib.h bn_add.c bn_lcl.h |
178 | bn_asm.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 190 | bn_asm.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h |
179 | bn_asm.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 191 | bn_asm.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
180 | bn_asm.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 192 | bn_asm.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
181 | bn_asm.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 193 | bn_asm.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
182 | bn_asm.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 194 | bn_asm.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h |
183 | bn_asm.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 195 | bn_asm.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
184 | bn_asm.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h | 196 | bn_asm.o: ../cryptlib.h bn_asm.c bn_lcl.h |
185 | bn_blind.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 197 | bn_blind.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h |
186 | bn_blind.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 198 | bn_blind.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
187 | bn_blind.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 199 | bn_blind.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
188 | bn_blind.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 200 | bn_blind.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
189 | bn_blind.o: ../../include/openssl/opensslconf.h | ||
190 | bn_blind.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 201 | bn_blind.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h |
191 | bn_blind.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 202 | bn_blind.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
192 | bn_blind.o: ../cryptlib.h bn_lcl.h | 203 | bn_blind.o: ../cryptlib.h bn_blind.c bn_lcl.h |
193 | bn_ctx.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 204 | bn_ctx.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h |
194 | bn_ctx.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 205 | bn_ctx.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
195 | bn_ctx.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 206 | bn_ctx.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
196 | bn_ctx.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 207 | bn_ctx.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
197 | bn_ctx.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 208 | bn_ctx.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h |
198 | bn_ctx.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 209 | bn_ctx.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
199 | bn_ctx.o: ../../include/openssl/symhacks.h ../cryptlib.h | 210 | bn_ctx.o: ../cryptlib.h bn_ctx.c bn_lcl.h |
200 | bn_div.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 211 | bn_div.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h |
201 | bn_div.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 212 | bn_div.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
202 | bn_div.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 213 | bn_div.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
203 | bn_div.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 214 | bn_div.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
204 | bn_div.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 215 | bn_div.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h |
205 | bn_div.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 216 | bn_div.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
206 | bn_div.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h | 217 | bn_div.o: ../cryptlib.h bn_div.c bn_lcl.h |
207 | bn_err.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 218 | bn_err.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
208 | bn_err.o: ../../include/openssl/crypto.h ../../include/openssl/err.h | 219 | bn_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
209 | bn_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 220 | bn_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
210 | bn_err.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 221 | bn_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
211 | bn_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 222 | bn_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
212 | bn_exp.o: ../../include/openssl/bio.h ../../include/openssl/bn.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 | ||
213 | bn_exp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 225 | bn_exp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
214 | bn_exp.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 226 | bn_exp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
215 | bn_exp.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 227 | bn_exp.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
216 | bn_exp.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 228 | bn_exp.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h |
217 | bn_exp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 229 | bn_exp.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
218 | bn_exp.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h | 230 | bn_exp.o: ../cryptlib.h bn_exp.c bn_lcl.h |
219 | bn_exp2.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 231 | bn_exp2.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h |
220 | bn_exp2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 232 | bn_exp2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
221 | bn_exp2.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 233 | bn_exp2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
222 | bn_exp2.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 234 | bn_exp2.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
223 | bn_exp2.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 235 | bn_exp2.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h |
224 | bn_exp2.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 236 | bn_exp2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
225 | bn_exp2.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h | 237 | bn_exp2.o: ../cryptlib.h bn_exp2.c bn_lcl.h |
226 | bn_gcd.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 238 | bn_gcd.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h |
227 | bn_gcd.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 239 | bn_gcd.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
228 | bn_gcd.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 240 | bn_gcd.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
229 | bn_gcd.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 241 | bn_gcd.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
230 | bn_gcd.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 242 | bn_gcd.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h |
231 | bn_gcd.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 243 | bn_gcd.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
232 | bn_gcd.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h | 244 | bn_gcd.o: ../cryptlib.h bn_gcd.c bn_lcl.h |
233 | bn_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.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 | ||
234 | bn_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 248 | bn_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
235 | bn_lib.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 249 | bn_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
236 | bn_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 250 | bn_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
237 | bn_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 251 | bn_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h |
238 | bn_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 252 | bn_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
239 | bn_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h | 253 | bn_lib.o: ../cryptlib.h bn_lcl.h bn_lib.c |
240 | bn_mont.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 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 | ||
241 | bn_mont.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 262 | bn_mont.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
242 | bn_mont.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 263 | bn_mont.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
243 | bn_mont.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 264 | bn_mont.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
244 | bn_mont.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 265 | bn_mont.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h |
245 | bn_mont.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 266 | bn_mont.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
246 | bn_mont.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h | 267 | bn_mont.o: ../cryptlib.h bn_lcl.h bn_mont.c |
247 | bn_mpi.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 268 | bn_mpi.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h |
248 | bn_mpi.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 269 | bn_mpi.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
249 | bn_mpi.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 270 | bn_mpi.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
250 | bn_mpi.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 271 | bn_mpi.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
251 | bn_mpi.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 272 | bn_mpi.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h |
252 | bn_mpi.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 273 | bn_mpi.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
253 | bn_mpi.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h | 274 | bn_mpi.o: ../cryptlib.h bn_lcl.h bn_mpi.c |
254 | bn_mul.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 275 | bn_mul.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h |
255 | bn_mul.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 276 | bn_mul.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
256 | bn_mul.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 277 | bn_mul.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
257 | bn_mul.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 278 | bn_mul.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
258 | bn_mul.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 279 | bn_mul.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h |
259 | bn_mul.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 280 | bn_mul.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
260 | bn_mul.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h | 281 | bn_mul.o: ../cryptlib.h bn_lcl.h bn_mul.c |
261 | bn_prime.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 282 | bn_prime.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h |
262 | bn_prime.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 283 | bn_prime.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
263 | bn_prime.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 284 | bn_prime.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
264 | bn_prime.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 285 | bn_prime.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
265 | bn_prime.o: ../../include/openssl/opensslconf.h | 286 | bn_prime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
266 | bn_prime.o: ../../include/openssl/opensslv.h ../../include/openssl/rand.h | 287 | bn_prime.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h |
267 | bn_prime.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 288 | bn_prime.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
268 | bn_prime.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_prime.h | 289 | bn_prime.o: ../cryptlib.h bn_lcl.h bn_prime.c bn_prime.h |
269 | bn_print.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 290 | bn_print.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h |
270 | bn_print.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 291 | bn_print.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
271 | bn_print.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 292 | bn_print.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
272 | bn_print.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 293 | bn_print.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
273 | bn_print.o: ../../include/openssl/opensslconf.h | ||
274 | bn_print.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 294 | bn_print.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h |
275 | bn_print.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 295 | bn_print.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
276 | bn_print.o: ../cryptlib.h bn_lcl.h | 296 | bn_print.o: ../cryptlib.h bn_lcl.h bn_print.c |
277 | bn_rand.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 297 | bn_rand.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h |
278 | bn_rand.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 298 | bn_rand.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
279 | bn_rand.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 299 | bn_rand.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
280 | bn_rand.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 300 | bn_rand.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
281 | bn_rand.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 301 | bn_rand.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
282 | bn_rand.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | 302 | bn_rand.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h |
283 | bn_rand.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 303 | bn_rand.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
284 | bn_rand.o: ../cryptlib.h bn_lcl.h | 304 | bn_rand.o: ../cryptlib.h bn_lcl.h bn_rand.c |
285 | bn_recp.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 305 | bn_recp.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h |
286 | bn_recp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 306 | bn_recp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
287 | bn_recp.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 307 | bn_recp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
288 | bn_recp.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 308 | bn_recp.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
289 | bn_recp.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 309 | bn_recp.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h |
290 | bn_recp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 310 | bn_recp.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
291 | bn_recp.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h | 311 | bn_recp.o: ../cryptlib.h bn_lcl.h bn_recp.c |
292 | bn_shift.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 312 | bn_shift.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h |
293 | bn_shift.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 313 | bn_shift.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
294 | bn_shift.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 314 | bn_shift.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
295 | bn_shift.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 315 | bn_shift.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
296 | bn_shift.o: ../../include/openssl/opensslconf.h | ||
297 | bn_shift.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 316 | bn_shift.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h |
298 | bn_shift.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 317 | bn_shift.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
299 | bn_shift.o: ../cryptlib.h bn_lcl.h | 318 | bn_shift.o: ../cryptlib.h bn_lcl.h bn_shift.c |
300 | bn_sqr.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 319 | bn_sqr.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h |
301 | bn_sqr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 320 | bn_sqr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
302 | bn_sqr.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 321 | bn_sqr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
303 | bn_sqr.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 322 | bn_sqr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
304 | bn_sqr.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 323 | bn_sqr.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h |
305 | bn_sqr.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 324 | bn_sqr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
306 | bn_sqr.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h | 325 | bn_sqr.o: ../cryptlib.h bn_lcl.h bn_sqr.c |
307 | bn_word.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 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 | ||
308 | bn_word.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 334 | bn_word.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
309 | bn_word.o: ../../include/openssl/e_os.h ../../include/openssl/e_os2.h | 335 | bn_word.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
310 | bn_word.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 336 | bn_word.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
311 | bn_word.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 337 | bn_word.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h |
312 | bn_word.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 338 | bn_word.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
313 | bn_word.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h | 339 | bn_word.o: ../cryptlib.h bn_lcl.h bn_word.c |