Makefile revision 194206
1142425Snectar#
2160814Ssimon# OpenSSL/crypto/bn/Makefile
3142425Snectar#
4142425Snectar
5142425SnectarDIR=	bn
6142425SnectarTOP=	../..
7142425SnectarCC=	cc
8142425SnectarCPP=    $(CC) -E
9142425SnectarINCLUDES= -I.. -I$(TOP) -I../../include
10142425SnectarCFLAG=-g
11142425SnectarMAKEFILE=	Makefile
12142425SnectarAR=		ar r
13142425Snectar
14142425SnectarBN_ASM=		bn_asm.o
15142425Snectar# or use
16142425Snectar#BN_ASM=	bn86-elf.o
17142425Snectar
18142425SnectarCFLAGS= $(INCLUDES) $(CFLAG)
19142425SnectarASFLAGS= $(INCLUDES) $(ASFLAG)
20160814SsimonAFLAGS= $(ASFLAGS)
21142425Snectar
22142425SnectarGENERAL=Makefile
23142425SnectarTEST=bntest.c exptest.c
24142425SnectarAPPS=
25142425Snectar
26142425SnectarLIB=$(TOP)/libcrypto.a
27142425SnectarLIBSRC=	bn_add.c bn_div.c bn_exp.c bn_lib.c bn_ctx.c bn_mul.c bn_mod.c \
28142425Snectar	bn_print.c bn_rand.c bn_shift.c bn_word.c bn_blind.c \
29142425Snectar	bn_kron.c bn_sqrt.c bn_gcd.c bn_prime.c bn_err.c bn_sqr.c bn_asm.c \
30160814Ssimon	bn_recp.c bn_mont.c bn_mpi.c bn_exp2.c bn_gf2m.c bn_nist.c \
31194206Ssimon	bn_depr.c bn_x931p.c bn_const.c bn_opt.c
32142425Snectar
33142425SnectarLIBOBJ=	bn_add.o bn_div.o bn_exp.o bn_lib.o bn_ctx.o bn_mul.o bn_mod.o \
34142425Snectar	bn_print.o bn_rand.o bn_shift.o bn_word.o bn_blind.o \
35142425Snectar	bn_kron.o bn_sqrt.o bn_gcd.o bn_prime.o bn_err.o bn_sqr.o $(BN_ASM) \
36160814Ssimon	bn_recp.o bn_mont.o bn_mpi.o bn_exp2.o bn_gf2m.o bn_nist.o \
37194206Ssimon	bn_depr.o bn_x931p.o bn_const.o bn_opt.o
38142425Snectar
39142425SnectarSRC= $(LIBSRC)
40142425Snectar
41142425SnectarEXHEADER= bn.h
42142425SnectarHEADER=	bn_lcl.h bn_prime.h $(EXHEADER)
43142425Snectar
44142425SnectarALL=    $(GENERAL) $(SRC) $(HEADER)
45142425Snectar
46142425Snectartop:
47142425Snectar	(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
48142425Snectar
49142425Snectarall:	lib
50142425Snectar
51142425Snectarbn_prime.h: bn_prime.pl
52142425Snectar	$(PERL) bn_prime.pl >bn_prime.h
53142425Snectar
54142425Snectardivtest: divtest.c ../../libcrypto.a
55142425Snectar	cc -I../../include divtest.c -o divtest ../../libcrypto.a
56142425Snectar
57142425Snectarbnbug: bnbug.c ../../libcrypto.a top
58142425Snectar	cc -g -I../../include bnbug.c -o bnbug ../../libcrypto.a
59142425Snectar
60142425Snectarlib:	$(LIBOBJ)
61194206Ssimon	$(ARX) $(LIB) $(LIBOBJ)
62142425Snectar	$(RANLIB) $(LIB) || echo Never mind.
63142425Snectar	@touch lib
64142425Snectar
65160814Ssimon# ELF
66160814Ssimonbn86-elf.s:	asm/bn-586.pl ../perlasm/x86asm.pl
67160814Ssimon	(cd asm; $(PERL) bn-586.pl elf $(CFLAGS) > ../$@)
68160814Ssimonco86-elf.s:	asm/co-586.pl ../perlasm/x86asm.pl
69160814Ssimon	(cd asm; $(PERL) co-586.pl elf $(CFLAGS) > ../$@)
70194206Ssimonmo86-elf.s:	asm/mo-586.pl ../perlasm/x86asm.pl
71194206Ssimon	(cd asm; $(PERL) mo-586.pl elf $(CFLAGS) > ../$@)
72160814Ssimon# COFF
73160814Ssimonbn86-cof.s: asm/bn-586.pl ../perlasm/x86asm.pl
74160814Ssimon	(cd asm; $(PERL) bn-586.pl coff $(CFLAGS) > ../$@)
75160814Ssimonco86-cof.s: asm/co-586.pl ../perlasm/x86asm.pl
76160814Ssimon	(cd asm; $(PERL) co-586.pl coff $(CFLAGS) > ../$@)
77194206Ssimonmo86-cof.s: asm/mo-586.pl ../perlasm/x86asm.pl
78194206Ssimon	(cd asm; $(PERL) mo-586.pl coff $(CFLAGS) > ../$@)
79142425Snectar# a.out
80160814Ssimonbn86-out.s: asm/bn-586.pl ../perlasm/x86asm.pl
81160814Ssimon	(cd asm; $(PERL) bn-586.pl a.out $(CFLAGS) > ../$@)
82160814Ssimonco86-out.s: asm/co-586.pl ../perlasm/x86asm.pl
83160814Ssimon	(cd asm; $(PERL) co-586.pl a.out $(CFLAGS) > ../$@)
84194206Ssimonmo86-out.s: asm/mo-586.pl ../perlasm/x86asm.pl
85194206Ssimon	(cd asm; $(PERL) mo-586.pl a.out $(CFLAGS) > ../$@)
86142425Snectar
87160814Ssimonsparcv8.o:	asm/sparcv8.S
88160814Ssimon	$(CC) $(CFLAGS) -c asm/sparcv8.S
89160814Ssimonsparcv8plus.o:	asm/sparcv8plus.S
90160814Ssimon	$(CC) $(CFLAGS) -c asm/sparcv8plus.S
91142425Snectar
92160814Ssimonbn-mips3.o:	asm/mips3.s
93160814Ssimon	@if [ "$(CC)" = "gcc" ]; then \
94160814Ssimon		ABI=`expr "$(CFLAGS)" : ".*-mabi=\([n3264]*\)"` && \
95160814Ssimon		as -$$ABI -O -o $@ asm/mips3.s; \
96160814Ssimon	else	$(CC) -c $(CFLAGS) -o $@ asm/mips3.s; fi
97142425Snectar
98160814Ssimonx86_64-gcc.o:	asm/x86_64-gcc.c
99160814Ssimon	$(CC) $(CFLAGS) -c -o $@ asm/x86_64-gcc.c
100194206Ssimonx86_64-mont.s:	asm/x86_64-mont.pl
101194206Ssimon	$(PERL) asm/x86_64-mont.pl $@
102142425Snectar
103160814Ssimonbn-ia64.s:	asm/ia64.S
104160814Ssimon	$(CC) $(CFLAGS) -E asm/ia64.S > $@
105142425Snectar
106160814Ssimon# GNU assembler fails to compile PA-RISC2 modules, insist on calling
107160814Ssimon# vendor assembler...
108160814Ssimonpa-risc2W.o: asm/pa-risc2W.s
109160814Ssimon	/usr/ccs/bin/as -o pa-risc2W.o asm/pa-risc2W.s
110160814Ssimonpa-risc2.o: asm/pa-risc2.s
111160814Ssimon	/usr/ccs/bin/as -o pa-risc2.o asm/pa-risc2.s
112142425Snectar
113160814Ssimon# ppc - AIX, Linux, MacOS X...
114160814Ssimonlinux_ppc32.s: asm/ppc.pl;	$(PERL) $< $@
115160814Ssimonlinux_ppc64.s: asm/ppc.pl;	$(PERL) $< $@
116160814Ssimonaix_ppc32.s: asm/ppc.pl;	$(PERL) asm/ppc.pl $@
117160814Ssimonaix_ppc64.s: asm/ppc.pl;	$(PERL) asm/ppc.pl $@
118160814Ssimonosx_ppc32.s: asm/ppc.pl;	$(PERL) $< $@
119194206Ssimonosx_ppc64.s: asm/ppc.pl;	$(PERL) $< $@
120142425Snectar
121142425Snectarfiles:
122142425Snectar	$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
123142425Snectar
124142425Snectarlinks:
125142425Snectar	@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
126142425Snectar	@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
127142425Snectar	@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
128142425Snectar
129142425Snectarinstall:
130160814Ssimon	@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
131160814Ssimon	@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
132142425Snectar	do  \
133142425Snectar	(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
134142425Snectar	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
135142425Snectar	done;
136142425Snectar
137142425Snectarexptest:
138142425Snectar	rm -f exptest
139142425Snectar	gcc -I../../include -g2 -ggdb -o exptest exptest.c ../../libcrypto.a
140142425Snectar
141142425Snectardiv:
142142425Snectar	rm -f a.out
143142425Snectar	gcc -I.. -g div.c ../../libcrypto.a
144142425Snectar
145142425Snectartags:
146142425Snectar	ctags $(SRC)
147142425Snectar
148142425Snectartests:
149142425Snectar
150142425Snectarlint:
151142425Snectar	lint -DLINT $(INCLUDES) $(SRC)>fluff
152142425Snectar
153142425Snectardepend:
154160814Ssimon	@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
155142425Snectar	$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
156142425Snectar
157142425Snectardclean:
158142425Snectar	$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
159142425Snectar	mv -f Makefile.new $(MAKEFILE)
160142425Snectar
161142425Snectarclean:
162160814Ssimon	rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
163142425Snectar
164142425Snectar# DO NOT DELETE THIS LINE -- make depend depends on it.
165142425Snectar
166142425Snectarbn_add.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
167142425Snectarbn_add.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
168142425Snectarbn_add.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
169142425Snectarbn_add.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
170160814Ssimonbn_add.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
171160814Ssimonbn_add.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
172160814Ssimonbn_add.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_add.c bn_lcl.h
173142425Snectarbn_asm.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
174142425Snectarbn_asm.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
175142425Snectarbn_asm.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
176142425Snectarbn_asm.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
177160814Ssimonbn_asm.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
178160814Ssimonbn_asm.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
179160814Ssimonbn_asm.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_asm.c bn_lcl.h
180142425Snectarbn_blind.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
181142425Snectarbn_blind.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
182142425Snectarbn_blind.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
183142425Snectarbn_blind.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
184160814Ssimonbn_blind.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
185160814Ssimonbn_blind.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
186160814Ssimonbn_blind.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_blind.c bn_lcl.h
187160814Ssimonbn_const.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
188160814Ssimonbn_const.o: ../../include/openssl/ossl_typ.h bn.h bn_const.c
189142425Snectarbn_ctx.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
190142425Snectarbn_ctx.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
191142425Snectarbn_ctx.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
192142425Snectarbn_ctx.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
193160814Ssimonbn_ctx.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
194160814Ssimonbn_ctx.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
195160814Ssimonbn_ctx.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_ctx.c bn_lcl.h
196160814Ssimonbn_depr.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
197160814Ssimonbn_depr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
198160814Ssimonbn_depr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
199160814Ssimonbn_depr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
200160814Ssimonbn_depr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
201160814Ssimonbn_depr.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
202160814Ssimonbn_depr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
203160814Ssimonbn_depr.o: ../cryptlib.h bn_depr.c bn_lcl.h
204142425Snectarbn_div.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
205142425Snectarbn_div.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
206142425Snectarbn_div.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
207142425Snectarbn_div.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
208160814Ssimonbn_div.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
209160814Ssimonbn_div.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
210160814Ssimonbn_div.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_div.c bn_lcl.h
211142425Snectarbn_err.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
212142425Snectarbn_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
213142425Snectarbn_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
214142425Snectarbn_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
215160814Ssimonbn_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
216160814Ssimonbn_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
217160814Ssimonbn_err.o: bn_err.c
218142425Snectarbn_exp.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
219142425Snectarbn_exp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
220142425Snectarbn_exp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
221142425Snectarbn_exp.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
222160814Ssimonbn_exp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
223160814Ssimonbn_exp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
224160814Ssimonbn_exp.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_exp.c bn_lcl.h
225142425Snectarbn_exp2.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
226142425Snectarbn_exp2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
227142425Snectarbn_exp2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
228142425Snectarbn_exp2.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
229160814Ssimonbn_exp2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
230160814Ssimonbn_exp2.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
231160814Ssimonbn_exp2.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_exp2.c bn_lcl.h
232142425Snectarbn_gcd.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
233142425Snectarbn_gcd.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
234142425Snectarbn_gcd.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
235142425Snectarbn_gcd.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
236160814Ssimonbn_gcd.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
237160814Ssimonbn_gcd.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
238160814Ssimonbn_gcd.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_gcd.c bn_lcl.h
239160814Ssimonbn_gf2m.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
240160814Ssimonbn_gf2m.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
241160814Ssimonbn_gf2m.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
242160814Ssimonbn_gf2m.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
243160814Ssimonbn_gf2m.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
244160814Ssimonbn_gf2m.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
245160814Ssimonbn_gf2m.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_gf2m.c bn_lcl.h
246160814Ssimonbn_kron.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
247160814Ssimonbn_kron.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
248160814Ssimonbn_kron.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
249160814Ssimonbn_kron.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
250160814Ssimonbn_kron.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
251160814Ssimonbn_kron.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
252160814Ssimonbn_kron.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_kron.c bn_lcl.h
253142425Snectarbn_lib.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
254142425Snectarbn_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
255142425Snectarbn_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
256142425Snectarbn_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
257160814Ssimonbn_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
258160814Ssimonbn_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
259160814Ssimonbn_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_lib.c
260142425Snectarbn_mod.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
261142425Snectarbn_mod.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
262142425Snectarbn_mod.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
263142425Snectarbn_mod.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
264160814Ssimonbn_mod.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
265160814Ssimonbn_mod.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
266160814Ssimonbn_mod.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_mod.c
267142425Snectarbn_mont.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
268142425Snectarbn_mont.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
269142425Snectarbn_mont.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
270142425Snectarbn_mont.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
271160814Ssimonbn_mont.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
272160814Ssimonbn_mont.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
273160814Ssimonbn_mont.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_mont.c
274142425Snectarbn_mpi.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
275142425Snectarbn_mpi.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
276142425Snectarbn_mpi.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
277142425Snectarbn_mpi.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
278160814Ssimonbn_mpi.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
279160814Ssimonbn_mpi.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
280160814Ssimonbn_mpi.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_mpi.c
281142425Snectarbn_mul.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
282142425Snectarbn_mul.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
283142425Snectarbn_mul.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
284142425Snectarbn_mul.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
285160814Ssimonbn_mul.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
286160814Ssimonbn_mul.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
287160814Ssimonbn_mul.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_mul.c
288160814Ssimonbn_nist.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
289160814Ssimonbn_nist.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
290160814Ssimonbn_nist.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
291160814Ssimonbn_nist.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
292160814Ssimonbn_nist.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
293160814Ssimonbn_nist.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
294160814Ssimonbn_nist.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_nist.c
295194206Ssimonbn_opt.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
296194206Ssimonbn_opt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
297194206Ssimonbn_opt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
298194206Ssimonbn_opt.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
299194206Ssimonbn_opt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
300194206Ssimonbn_opt.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
301194206Ssimonbn_opt.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_opt.c
302142425Snectarbn_prime.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
303142425Snectarbn_prime.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
304142425Snectarbn_prime.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
305142425Snectarbn_prime.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
306142425Snectarbn_prime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
307142425Snectarbn_prime.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
308142425Snectarbn_prime.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
309142425Snectarbn_prime.o: ../cryptlib.h bn_lcl.h bn_prime.c bn_prime.h
310142425Snectarbn_print.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
311142425Snectarbn_print.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
312142425Snectarbn_print.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
313142425Snectarbn_print.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
314160814Ssimonbn_print.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
315160814Ssimonbn_print.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
316160814Ssimonbn_print.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_print.c
317142425Snectarbn_rand.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
318142425Snectarbn_rand.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
319142425Snectarbn_rand.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
320142425Snectarbn_rand.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
321142425Snectarbn_rand.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
322142425Snectarbn_rand.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
323142425Snectarbn_rand.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
324142425Snectarbn_rand.o: ../cryptlib.h bn_lcl.h bn_rand.c
325142425Snectarbn_recp.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
326142425Snectarbn_recp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
327142425Snectarbn_recp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
328142425Snectarbn_recp.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
329160814Ssimonbn_recp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
330160814Ssimonbn_recp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
331160814Ssimonbn_recp.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_recp.c
332142425Snectarbn_shift.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
333142425Snectarbn_shift.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
334142425Snectarbn_shift.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
335142425Snectarbn_shift.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
336160814Ssimonbn_shift.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
337160814Ssimonbn_shift.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
338160814Ssimonbn_shift.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_shift.c
339142425Snectarbn_sqr.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
340142425Snectarbn_sqr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
341142425Snectarbn_sqr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
342142425Snectarbn_sqr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
343160814Ssimonbn_sqr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
344160814Ssimonbn_sqr.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
345160814Ssimonbn_sqr.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_sqr.c
346142425Snectarbn_sqrt.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
347142425Snectarbn_sqrt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
348142425Snectarbn_sqrt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
349142425Snectarbn_sqrt.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
350160814Ssimonbn_sqrt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
351160814Ssimonbn_sqrt.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
352160814Ssimonbn_sqrt.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_sqrt.c
353142425Snectarbn_word.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
354142425Snectarbn_word.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
355142425Snectarbn_word.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
356142425Snectarbn_word.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
357160814Ssimonbn_word.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
358160814Ssimonbn_word.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
359160814Ssimonbn_word.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_word.c
360194206Ssimonbn_x931p.o: ../../include/openssl/bn.h ../../include/openssl/e_os2.h
361194206Ssimonbn_x931p.o: ../../include/openssl/opensslconf.h
362194206Ssimonbn_x931p.o: ../../include/openssl/ossl_typ.h bn_x931p.c
363