]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/bn/Makefile
There must be an explicit way to build the .o!
[thirdparty/openssl.git] / crypto / bn / Makefile
CommitLineData
d02b48c6
RE
1#
2# SSLeay/crypto/bn/Makefile
3#
4
5DIR= bn
6TOP= ../..
7CC= cc
623bb80b 8CPP= $(CC) -E
41d2a336 9INCLUDES= -I.. -I$(TOP) -I../../include
d02b48c6 10CFLAG=-g
e5f3045f
BM
11INSTALL_PREFIX=
12OPENSSLDIR= /usr/local/ssl
d02b48c6 13INSTALLTOP=/usr/local/ssl
42ba5d23 14MAKE= make
cf1b7d96
RL
15MAKEDEPPROG= makedepend
16MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
42ba5d23 17MAKEFILE= Makefile
d02b48c6
RE
18AR= ar r
19
dfeab068 20BN_ASM= bn_asm.o
58964a49 21# or use
dfeab068 22#BN_ASM= bn86-elf.o
58964a49 23
d02b48c6 24CFLAGS= $(INCLUDES) $(CFLAG)
01fc834b 25ASFLAGS= $(INCLUDES) $(ASFLAG)
16760a30 26AFLAGS= $(ASFLAGS)
b96eb06f 27
d02b48c6
RE
28GENERAL=Makefile
29TEST=bntest.c exptest.c
30APPS=
31
32LIB=$(TOP)/libcrypto.a
78a0c1f1 33LIBSRC= bn_add.c bn_div.c bn_exp.c bn_lib.c bn_ctx.c bn_mul.c bn_mod.c \
dfeab068 34 bn_print.c bn_rand.c bn_shift.c bn_word.c bn_blind.c \
cd2eebfd 35 bn_kron.c bn_sqrt.c bn_gcd.c bn_prime.c bn_err.c bn_sqr.c bn_asm.c \
e9224c71
GT
36 bn_recp.c bn_mont.c bn_mpi.c bn_exp2.c bn_gf2m.c bn_nist.c \
37 bn_depr.c
d02b48c6 38
78a0c1f1 39LIBOBJ= bn_add.o bn_div.o bn_exp.o bn_lib.o bn_ctx.o bn_mul.o bn_mod.o \
dfeab068 40 bn_print.o bn_rand.o bn_shift.o bn_word.o bn_blind.o \
cd2eebfd 41 bn_kron.o bn_sqrt.o bn_gcd.o bn_prime.o bn_err.o bn_sqr.o $(BN_ASM) \
e9224c71
GT
42 bn_recp.o bn_mont.o bn_mpi.o bn_exp2.o bn_gf2m.o bn_nist.o \
43 bn_depr.o
d02b48c6
RE
44
45SRC= $(LIBSRC)
46
47EXHEADER= bn.h
48HEADER= bn_lcl.h bn_prime.h $(EXHEADER)
49
50ALL= $(GENERAL) $(SRC) $(HEADER)
51
52top:
53 (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
54
55all: lib
56
e4b76456
BM
57bn_prime.h: bn_prime.pl
58 $(PERL) bn_prime.pl >bn_prime.h
59
775c63fc 60divtest: divtest.c ../../libcrypto.a
17dddc05 61 cc -I../../include divtest.c -o divtest ../../libcrypto.a
d02b48c6 62
1070e0e2 63bnbug: bnbug.c ../../libcrypto.a top
775c63fc
UM
64 cc -g -I../../include bnbug.c -o bnbug ../../libcrypto.a
65
d02b48c6
RE
66lib: $(LIBOBJ)
67 $(AR) $(LIB) $(LIBOBJ)
4e20b1a6 68 $(RANLIB) $(LIB) || echo Never mind.
d02b48c6
RE
69 @touch lib
70
ec38ddc7 71# ELF
67ea999d 72bn86-elf.s: asm/bn-586.pl ../perlasm/x86asm.pl
ec38ddc7 73 (cd asm; $(PERL) bn-586.pl elf $(CFLAGS) > ../$@)
67ea999d 74co86-elf.s: asm/co-586.pl ../perlasm/x86asm.pl
ec38ddc7
AP
75 (cd asm; $(PERL) co-586.pl elf $(CFLAGS) > ../$@)
76# COFF
67ea999d 77bn86-cof.s: asm/bn-586.pl ../perlasm/x86asm.pl
ec38ddc7 78 (cd asm; $(PERL) bn-586.pl coff $(CFLAGS) > ../$@)
67ea999d 79co86-cof.s: asm/co-586.pl ../perlasm/x86asm.pl
ec38ddc7 80 (cd asm; $(PERL) co-586.pl coff $(CFLAGS) > ../$@)
58964a49 81# a.out
16760a30
AP
82bn86-out.s: asm/bn-586.pl ../perlasm/x86asm.pl
83 (cd asm; $(PERL) bn-586.pl a.out $(CFLAGS) > ../$@)
84co86-out.s: asm/co-586.pl ../perlasm/x86asm.pl
85 (cd asm; $(PERL) co-586.pl a.out $(CFLAGS) > ../$@)
dfeab068 86
67ea999d 87sparcv8.o: asm/sparcv8.S
4b26fe30 88
67ea999d 89sparcv8plus.o: asm/sparcv8plus.S
4b26fe30
BL
90 $(CC) $(CFLAGS) -c asm/sparcv8plus.S
91
67ea999d 92mips3.o: asm/mips3.s
5e85b6ab 93
67ea999d 94x86_64-gcc.o: asm/x86_64-gcc.c
0abfd606 95 $(CC) $(CFLAGS) -c -o $@ asm/x86_64-gcc.c
4f5fac80 96
67ea999d 97bn-ia64.s: asm/ia64.S
33c3ecf7 98 $(CC) $(CFLAGS) -E asm/ia64.S > $@
6d03b73e 99
12470927
AP
100# GNU assembler fails to compile PA-RISC2 modules, insist on calling
101# vendor assembler...
67ea999d
AP
102pa-risc2W.o: asm/pa-risc2W.s
103 /usr/ccs/bin/as -o pa-risc2W.o asm/pa-risc2W.s
104pa-risc2.o: asm/pa-risc2.s
105 /usr/ccs/bin/as -o pa-risc2.o asm/pa-risc2.s
12470927 106
dd558806 107# ppc - AIX, Linux, MacOS X...
67ea999d
AP
108linux_ppc32.s: asm/ppc.pl; $(PERL) $< $@
109linux_ppc64.s: asm/ppc.pl; $(PERL) $< $@
110aix_ppc32.s: asm/ppc.pl; $(PERL) asm/ppc.pl $@
111aix_ppc64.s: asm/ppc.pl; $(PERL) asm/ppc.pl $@
112osx_ppc32.s: asm/ppc.pl; $(PERL) $< $@
dd558806 113
d02b48c6 114files:
42ba5d23 115 $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
d02b48c6
RE
116
117links:
1314c344
BM
118 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
119 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
120 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
d02b48c6
RE
121
122install:
a2ac429d 123 @headerlist="$(EXHEADER)"; for i in $$headerlist ; \
d02b48c6 124 do \
e5f3045f
BM
125 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
126 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
d02b48c6
RE
127 done;
128
129exptest:
bb8f3c58 130 rm -f exptest
d02b48c6
RE
131 gcc -I../../include -g2 -ggdb -o exptest exptest.c ../../libcrypto.a
132
133div:
bb8f3c58 134 rm -f a.out
d02b48c6
RE
135 gcc -I.. -g div.c ../../libcrypto.a
136
137tags:
138 ctags $(SRC)
139
140tests:
141
142lint:
143 lint -DLINT $(INCLUDES) $(SRC)>fluff
144
145depend:
001ab3ab 146 $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
d02b48c6
RE
147
148dclean:
99aab161 149 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
d02b48c6
RE
150 mv -f Makefile.new $(MAKEFILE)
151
152clean:
67ea999d 153 rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
d02b48c6 154
d02b48c6 155# DO NOT DELETE THIS LINE -- make depend depends on it.
6242bb9c 156
41d2a336 157bn_add.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
bf57da07 158bn_add.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
41d2a336
RL
159bn_add.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
160bn_add.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
c57bc2dc
GT
161bn_add.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
162bn_add.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
163bn_add.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_add.c bn_lcl.h
41d2a336 164bn_asm.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
bf57da07 165bn_asm.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
41d2a336
RL
166bn_asm.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
167bn_asm.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
c57bc2dc
GT
168bn_asm.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
169bn_asm.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
170bn_asm.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_asm.c bn_lcl.h
41d2a336 171bn_blind.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
bf57da07 172bn_blind.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
41d2a336
RL
173bn_blind.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
174bn_blind.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
c57bc2dc
GT
175bn_blind.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
176bn_blind.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
177bn_blind.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_blind.c bn_lcl.h
41d2a336 178bn_ctx.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
37e48b88 179bn_ctx.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
41d2a336
RL
180bn_ctx.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
181bn_ctx.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
c57bc2dc
GT
182bn_ctx.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
183bn_ctx.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
184bn_ctx.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_ctx.c bn_lcl.h
0edad88a
RL
185bn_depr.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
186bn_depr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
187bn_depr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
188bn_depr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
189bn_depr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
190bn_depr.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
191bn_depr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
192bn_depr.o: ../cryptlib.h bn_depr.c bn_lcl.h
41d2a336 193bn_div.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
bf57da07 194bn_div.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
41d2a336
RL
195bn_div.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
196bn_div.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
c57bc2dc
GT
197bn_div.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
198bn_div.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
199bn_div.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_div.c bn_lcl.h
1c4f90a0 200bn_err.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
cf1b7d96
RL
201bn_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
202bn_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
203bn_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
c57bc2dc
GT
204bn_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
205bn_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
206bn_err.o: bn_err.c
41d2a336 207bn_exp.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
bf57da07 208bn_exp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
41d2a336
RL
209bn_exp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
210bn_exp.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
c57bc2dc
GT
211bn_exp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
212bn_exp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
213bn_exp.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_exp.c bn_lcl.h
41d2a336 214bn_exp2.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
bf57da07 215bn_exp2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
41d2a336
RL
216bn_exp2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
217bn_exp2.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
c57bc2dc
GT
218bn_exp2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
219bn_exp2.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
220bn_exp2.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_exp2.c bn_lcl.h
41d2a336 221bn_gcd.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
bf57da07 222bn_gcd.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
41d2a336
RL
223bn_gcd.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
224bn_gcd.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
c57bc2dc
GT
225bn_gcd.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
226bn_gcd.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
227bn_gcd.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_gcd.c bn_lcl.h
35b73a1f
BM
228bn_gf2m.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
229bn_gf2m.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
230bn_gf2m.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
231bn_gf2m.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
c57bc2dc
GT
232bn_gf2m.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
233bn_gf2m.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
234bn_gf2m.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_gf2m.c bn_lcl.h
1fb72444
RL
235bn_kron.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
236bn_kron.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
237bn_kron.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
238bn_kron.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
c57bc2dc
GT
239bn_kron.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
240bn_kron.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
241bn_kron.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_kron.c bn_lcl.h
41d2a336 242bn_lib.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
bf57da07 243bn_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
41d2a336
RL
244bn_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
245bn_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
c57bc2dc
GT
246bn_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
247bn_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
248bn_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_lib.c
41d2a336 249bn_mod.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
78a0c1f1 250bn_mod.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
41d2a336
RL
251bn_mod.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
252bn_mod.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
c57bc2dc
GT
253bn_mod.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
254bn_mod.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
255bn_mod.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_mod.c
41d2a336 256bn_mont.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
bf57da07 257bn_mont.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
41d2a336
RL
258bn_mont.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
259bn_mont.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
c57bc2dc
GT
260bn_mont.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
261bn_mont.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
262bn_mont.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_mont.c
41d2a336 263bn_mpi.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
bf57da07 264bn_mpi.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
41d2a336
RL
265bn_mpi.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
266bn_mpi.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
c57bc2dc
GT
267bn_mpi.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
268bn_mpi.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
269bn_mpi.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_mpi.c
41d2a336 270bn_mul.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
bf57da07 271bn_mul.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
41d2a336
RL
272bn_mul.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
273bn_mul.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
c57bc2dc
GT
274bn_mul.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
275bn_mul.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
276bn_mul.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_mul.c
b5148cf1
RL
277bn_nist.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
278bn_nist.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
279bn_nist.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
280bn_nist.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
c57bc2dc
GT
281bn_nist.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
282bn_nist.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
283bn_nist.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_nist.c
41d2a336 284bn_prime.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
bf57da07 285bn_prime.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
41d2a336
RL
286bn_prime.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
287bn_prime.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
f8000b93
RL
288bn_prime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
289bn_prime.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
290bn_prime.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
534aaf37 291bn_prime.o: ../cryptlib.h bn_lcl.h bn_prime.c bn_prime.h
41d2a336 292bn_print.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
bf57da07 293bn_print.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
41d2a336
RL
294bn_print.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
295bn_print.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
c57bc2dc
GT
296bn_print.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
297bn_print.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
298bn_print.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_print.c
41d2a336 299bn_rand.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
bf57da07 300bn_rand.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
41d2a336
RL
301bn_rand.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
302bn_rand.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
f8000b93
RL
303bn_rand.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
304bn_rand.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
305bn_rand.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
534aaf37 306bn_rand.o: ../cryptlib.h bn_lcl.h bn_rand.c
41d2a336 307bn_recp.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
bf57da07 308bn_recp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
41d2a336
RL
309bn_recp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
310bn_recp.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
c57bc2dc
GT
311bn_recp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
312bn_recp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
313bn_recp.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_recp.c
41d2a336 314bn_shift.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
bf57da07 315bn_shift.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
41d2a336
RL
316bn_shift.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
317bn_shift.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
c57bc2dc
GT
318bn_shift.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
319bn_shift.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
320bn_shift.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_shift.c
41d2a336 321bn_sqr.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
bf57da07 322bn_sqr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
41d2a336
RL
323bn_sqr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
324bn_sqr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
c57bc2dc
GT
325bn_sqr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
326bn_sqr.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
327bn_sqr.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_sqr.c
41d2a336 328bn_sqrt.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
b5a25a43 329bn_sqrt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
41d2a336
RL
330bn_sqrt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
331bn_sqrt.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
c57bc2dc
GT
332bn_sqrt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
333bn_sqrt.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
334bn_sqrt.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_sqrt.c
41d2a336 335bn_word.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
bf57da07 336bn_word.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
41d2a336
RL
337bn_word.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
338bn_word.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
c57bc2dc
GT
339bn_word.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
340bn_word.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
341bn_word.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_word.c