diff options
Diffstat (limited to 'src/lib/libcrypto/bn/Makefile')
-rw-r--r-- | src/lib/libcrypto/bn/Makefile | 362 |
1 files changed, 362 insertions, 0 deletions
diff --git a/src/lib/libcrypto/bn/Makefile b/src/lib/libcrypto/bn/Makefile new file mode 100644 index 0000000000..f5e8f65a46 --- /dev/null +++ b/src/lib/libcrypto/bn/Makefile | |||
@@ -0,0 +1,362 @@ | |||
1 | # | ||
2 | # OpenSSL/crypto/bn/Makefile | ||
3 | # | ||
4 | |||
5 | DIR= bn | ||
6 | TOP= ../.. | ||
7 | CC= cc | ||
8 | CPP= $(CC) -E | ||
9 | INCLUDES= -I.. -I$(TOP) -I../../include | ||
10 | CFLAG=-g | ||
11 | MAKEFILE= Makefile | ||
12 | AR= ar r | ||
13 | |||
14 | BN_ASM= bn_asm.o | ||
15 | # or use | ||
16 | #BN_ASM= bn86-elf.o | ||
17 | |||
18 | CFLAGS= $(INCLUDES) $(CFLAG) | ||
19 | ASFLAGS= $(INCLUDES) $(ASFLAG) | ||
20 | AFLAGS= $(ASFLAGS) | ||
21 | |||
22 | GENERAL=Makefile | ||
23 | TEST=bntest.c exptest.c | ||
24 | APPS= | ||
25 | |||
26 | LIB=$(TOP)/libcrypto.a | ||
27 | LIBSRC= bn_add.c bn_div.c bn_exp.c bn_lib.c bn_ctx.c bn_mul.c bn_mod.c \ | ||
28 | bn_print.c bn_rand.c bn_shift.c bn_word.c bn_blind.c \ | ||
29 | bn_kron.c bn_sqrt.c bn_gcd.c bn_prime.c bn_err.c bn_sqr.c bn_asm.c \ | ||
30 | bn_recp.c bn_mont.c bn_mpi.c bn_exp2.c bn_gf2m.c bn_nist.c \ | ||
31 | bn_depr.c bn_x931p.c bn_const.c bn_opt.c | ||
32 | |||
33 | LIBOBJ= bn_add.o bn_div.o bn_exp.o bn_lib.o bn_ctx.o bn_mul.o bn_mod.o \ | ||
34 | bn_print.o bn_rand.o bn_shift.o bn_word.o bn_blind.o \ | ||
35 | bn_kron.o bn_sqrt.o bn_gcd.o bn_prime.o bn_err.o bn_sqr.o $(BN_ASM) \ | ||
36 | bn_recp.o bn_mont.o bn_mpi.o bn_exp2.o bn_gf2m.o bn_nist.o \ | ||
37 | bn_depr.o bn_x931p.o bn_const.o bn_opt.o | ||
38 | |||
39 | SRC= $(LIBSRC) | ||
40 | |||
41 | EXHEADER= bn.h | ||
42 | HEADER= bn_lcl.h bn_prime.h $(EXHEADER) | ||
43 | |||
44 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
45 | |||
46 | top: | ||
47 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
48 | |||
49 | all: lib | ||
50 | |||
51 | bn_prime.h: bn_prime.pl | ||
52 | $(PERL) bn_prime.pl >bn_prime.h | ||
53 | |||
54 | divtest: divtest.c ../../libcrypto.a | ||
55 | cc -I../../include divtest.c -o divtest ../../libcrypto.a | ||
56 | |||
57 | bnbug: bnbug.c ../../libcrypto.a top | ||
58 | cc -g -I../../include bnbug.c -o bnbug ../../libcrypto.a | ||
59 | |||
60 | lib: $(LIBOBJ) | ||
61 | $(ARX) $(LIB) $(LIBOBJ) | ||
62 | $(RANLIB) $(LIB) || echo Never mind. | ||
63 | @touch lib | ||
64 | |||
65 | # ELF | ||
66 | bn86-elf.s: asm/bn-586.pl ../perlasm/x86asm.pl | ||
67 | (cd asm; $(PERL) bn-586.pl elf $(CFLAGS) > ../$@) | ||
68 | co86-elf.s: asm/co-586.pl ../perlasm/x86asm.pl | ||
69 | (cd asm; $(PERL) co-586.pl elf $(CFLAGS) > ../$@) | ||
70 | mo86-elf.s: asm/mo-586.pl ../perlasm/x86asm.pl | ||
71 | (cd asm; $(PERL) mo-586.pl elf $(CFLAGS) > ../$@) | ||
72 | # COFF | ||
73 | bn86-cof.s: asm/bn-586.pl ../perlasm/x86asm.pl | ||
74 | (cd asm; $(PERL) bn-586.pl coff $(CFLAGS) > ../$@) | ||
75 | co86-cof.s: asm/co-586.pl ../perlasm/x86asm.pl | ||
76 | (cd asm; $(PERL) co-586.pl coff $(CFLAGS) > ../$@) | ||
77 | mo86-cof.s: asm/mo-586.pl ../perlasm/x86asm.pl | ||
78 | (cd asm; $(PERL) mo-586.pl coff $(CFLAGS) > ../$@) | ||
79 | # a.out | ||
80 | bn86-out.s: asm/bn-586.pl ../perlasm/x86asm.pl | ||
81 | (cd asm; $(PERL) bn-586.pl a.out $(CFLAGS) > ../$@) | ||
82 | co86-out.s: asm/co-586.pl ../perlasm/x86asm.pl | ||
83 | (cd asm; $(PERL) co-586.pl a.out $(CFLAGS) > ../$@) | ||
84 | mo86-out.s: asm/mo-586.pl ../perlasm/x86asm.pl | ||
85 | (cd asm; $(PERL) mo-586.pl a.out $(CFLAGS) > ../$@) | ||
86 | |||
87 | sparcv8.o: asm/sparcv8.S | ||
88 | $(CC) $(CFLAGS) -c asm/sparcv8.S | ||
89 | sparcv8plus.o: asm/sparcv8plus.S | ||
90 | $(CC) $(CFLAGS) -c asm/sparcv8plus.S | ||
91 | |||
92 | bn-mips3.o: asm/mips3.s | ||
93 | @if [ "$(CC)" = "gcc" ]; then \ | ||
94 | ABI=`expr "$(CFLAGS)" : ".*-mabi=\([n3264]*\)"` && \ | ||
95 | as -$$ABI -O -o $@ asm/mips3.s; \ | ||
96 | else $(CC) -c $(CFLAGS) -o $@ asm/mips3.s; fi | ||
97 | |||
98 | x86_64-gcc.o: asm/x86_64-gcc.c | ||
99 | $(CC) $(CFLAGS) -c -o $@ asm/x86_64-gcc.c | ||
100 | x86_64-mont.s: asm/x86_64-mont.pl | ||
101 | $(PERL) asm/x86_64-mont.pl $@ | ||
102 | |||
103 | bn-ia64.s: asm/ia64.S | ||
104 | $(CC) $(CFLAGS) -E asm/ia64.S > $@ | ||
105 | |||
106 | # GNU assembler fails to compile PA-RISC2 modules, insist on calling | ||
107 | # vendor assembler... | ||
108 | pa-risc2W.o: asm/pa-risc2W.s | ||
109 | /usr/ccs/bin/as -o pa-risc2W.o asm/pa-risc2W.s | ||
110 | pa-risc2.o: asm/pa-risc2.s | ||
111 | /usr/ccs/bin/as -o pa-risc2.o asm/pa-risc2.s | ||
112 | |||
113 | # ppc - AIX, Linux, MacOS X... | ||
114 | linux_ppc32.s: asm/ppc.pl; $(PERL) $< $@ | ||
115 | linux_ppc64.s: asm/ppc.pl; $(PERL) $< $@ | ||
116 | aix_ppc32.s: asm/ppc.pl; $(PERL) asm/ppc.pl $@ | ||
117 | aix_ppc64.s: asm/ppc.pl; $(PERL) asm/ppc.pl $@ | ||
118 | osx_ppc32.s: asm/ppc.pl; $(PERL) $< $@ | ||
119 | osx_ppc64.s: asm/ppc.pl; $(PERL) $< $@ | ||
120 | |||
121 | files: | ||
122 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | ||
123 | |||
124 | links: | ||
125 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
126 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
127 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
128 | |||
129 | install: | ||
130 | @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... | ||
131 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | ||
132 | do \ | ||
133 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
134 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
135 | done; | ||
136 | |||
137 | exptest: | ||
138 | rm -f exptest | ||
139 | gcc -I../../include -g2 -ggdb -o exptest exptest.c ../../libcrypto.a | ||
140 | |||
141 | div: | ||
142 | rm -f a.out | ||
143 | gcc -I.. -g div.c ../../libcrypto.a | ||
144 | |||
145 | tags: | ||
146 | ctags $(SRC) | ||
147 | |||
148 | tests: | ||
149 | |||
150 | lint: | ||
151 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
152 | |||
153 | depend: | ||
154 | @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile... | ||
155 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | ||
156 | |||
157 | dclean: | ||
158 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
159 | mv -f Makefile.new $(MAKEFILE) | ||
160 | |||
161 | clean: | ||
162 | rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
163 | |||
164 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
165 | |||
166 | bn_add.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
167 | bn_add.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
168 | bn_add.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
169 | bn_add.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
170 | bn_add.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
171 | bn_add.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
172 | bn_add.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_add.c bn_lcl.h | ||
173 | bn_asm.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
174 | bn_asm.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
175 | bn_asm.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
176 | bn_asm.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
177 | bn_asm.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
178 | bn_asm.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
179 | bn_asm.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_asm.c bn_lcl.h | ||
180 | bn_blind.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
181 | bn_blind.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
182 | bn_blind.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
183 | bn_blind.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
184 | bn_blind.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
185 | bn_blind.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
186 | bn_blind.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_blind.c bn_lcl.h | ||
187 | bn_const.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
188 | bn_const.o: ../../include/openssl/ossl_typ.h bn.h bn_const.c | ||
189 | bn_ctx.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
190 | bn_ctx.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
191 | bn_ctx.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
192 | bn_ctx.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
193 | bn_ctx.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
194 | bn_ctx.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
195 | bn_ctx.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_ctx.c bn_lcl.h | ||
196 | bn_depr.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
197 | bn_depr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
198 | bn_depr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
199 | bn_depr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
200 | bn_depr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
201 | bn_depr.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
202 | bn_depr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
203 | bn_depr.o: ../cryptlib.h bn_depr.c bn_lcl.h | ||
204 | bn_div.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
205 | bn_div.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
206 | bn_div.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
207 | bn_div.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
208 | bn_div.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
209 | bn_div.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
210 | bn_div.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_div.c bn_lcl.h | ||
211 | bn_err.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
212 | bn_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
213 | bn_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
214 | bn_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
215 | bn_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
216 | bn_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
217 | bn_err.o: bn_err.c | ||
218 | bn_exp.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
219 | bn_exp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
220 | bn_exp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
221 | bn_exp.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
222 | bn_exp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
223 | bn_exp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
224 | bn_exp.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_exp.c bn_lcl.h | ||
225 | bn_exp2.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
226 | bn_exp2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
227 | bn_exp2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
228 | bn_exp2.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
229 | bn_exp2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
230 | bn_exp2.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
231 | bn_exp2.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_exp2.c bn_lcl.h | ||
232 | bn_gcd.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
233 | bn_gcd.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
234 | bn_gcd.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
235 | bn_gcd.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
236 | bn_gcd.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
237 | bn_gcd.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
238 | bn_gcd.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_gcd.c bn_lcl.h | ||
239 | bn_gf2m.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
240 | bn_gf2m.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
241 | bn_gf2m.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
242 | bn_gf2m.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
243 | bn_gf2m.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
244 | bn_gf2m.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
245 | bn_gf2m.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_gf2m.c bn_lcl.h | ||
246 | bn_kron.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
247 | bn_kron.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
248 | bn_kron.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
249 | bn_kron.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
250 | bn_kron.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
251 | bn_kron.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
252 | bn_kron.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_kron.c bn_lcl.h | ||
253 | bn_lib.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
254 | bn_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
255 | bn_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
256 | bn_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
257 | bn_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
258 | bn_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
259 | bn_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_lib.c | ||
260 | bn_mod.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
261 | bn_mod.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
262 | bn_mod.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
263 | bn_mod.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
264 | bn_mod.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
265 | bn_mod.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
266 | bn_mod.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_mod.c | ||
267 | bn_mont.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
268 | bn_mont.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
269 | bn_mont.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
270 | bn_mont.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
271 | bn_mont.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
272 | bn_mont.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
273 | bn_mont.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_mont.c | ||
274 | bn_mpi.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
275 | bn_mpi.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
276 | bn_mpi.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
277 | bn_mpi.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
278 | bn_mpi.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
279 | bn_mpi.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
280 | bn_mpi.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_mpi.c | ||
281 | bn_mul.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
282 | bn_mul.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
283 | bn_mul.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
284 | bn_mul.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
285 | bn_mul.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
286 | bn_mul.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
287 | bn_mul.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_mul.c | ||
288 | bn_nist.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
289 | bn_nist.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
290 | bn_nist.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
291 | bn_nist.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
292 | bn_nist.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
293 | bn_nist.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
294 | bn_nist.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_nist.c | ||
295 | bn_opt.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
296 | bn_opt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
297 | bn_opt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
298 | bn_opt.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
299 | bn_opt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
300 | bn_opt.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
301 | bn_opt.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_opt.c | ||
302 | bn_prime.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
303 | bn_prime.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
304 | bn_prime.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
305 | bn_prime.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
306 | bn_prime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
307 | bn_prime.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
308 | bn_prime.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
309 | bn_prime.o: ../cryptlib.h bn_lcl.h bn_prime.c bn_prime.h | ||
310 | bn_print.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
311 | bn_print.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
312 | bn_print.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
313 | bn_print.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
314 | bn_print.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
315 | bn_print.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
316 | bn_print.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_print.c | ||
317 | bn_rand.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
318 | bn_rand.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
319 | bn_rand.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
320 | bn_rand.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
321 | bn_rand.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
322 | bn_rand.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
323 | bn_rand.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
324 | bn_rand.o: ../cryptlib.h bn_lcl.h bn_rand.c | ||
325 | bn_recp.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
326 | bn_recp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
327 | bn_recp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
328 | bn_recp.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
329 | bn_recp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
330 | bn_recp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
331 | bn_recp.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_recp.c | ||
332 | bn_shift.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
333 | bn_shift.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
334 | bn_shift.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
335 | bn_shift.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
336 | bn_shift.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
337 | bn_shift.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
338 | bn_shift.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_shift.c | ||
339 | bn_sqr.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
340 | bn_sqr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
341 | bn_sqr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
342 | bn_sqr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
343 | bn_sqr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
344 | bn_sqr.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
345 | bn_sqr.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_sqr.c | ||
346 | bn_sqrt.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
347 | bn_sqrt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
348 | bn_sqrt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
349 | bn_sqrt.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
350 | bn_sqrt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
351 | bn_sqrt.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
352 | bn_sqrt.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_sqrt.c | ||
353 | bn_word.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
354 | bn_word.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
355 | bn_word.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
356 | bn_word.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
357 | bn_word.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
358 | bn_word.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
359 | bn_word.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_word.c | ||
360 | bn_x931p.o: ../../include/openssl/bn.h ../../include/openssl/e_os2.h | ||
361 | bn_x931p.o: ../../include/openssl/opensslconf.h | ||
362 | bn_x931p.o: ../../include/openssl/ossl_typ.h bn_x931p.c | ||