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
16142425SnectarCFLAGS= $(INCLUDES) $(CFLAG)
17142425SnectarASFLAGS= $(INCLUDES) $(ASFLAG)
18160814SsimonAFLAGS= $(ASFLAGS)
19142425Snectar
20142425SnectarGENERAL=Makefile
21142425SnectarTEST=bntest.c exptest.c
22142425SnectarAPPS=
23142425Snectar
24142425SnectarLIB=$(TOP)/libcrypto.a
25142425SnectarLIBSRC=	bn_add.c bn_div.c bn_exp.c bn_lib.c bn_ctx.c bn_mul.c bn_mod.c \
26142425Snectar	bn_print.c bn_rand.c bn_shift.c bn_word.c bn_blind.c \
27142425Snectar	bn_kron.c bn_sqrt.c bn_gcd.c bn_prime.c bn_err.c bn_sqr.c bn_asm.c \
28160814Ssimon	bn_recp.c bn_mont.c bn_mpi.c bn_exp2.c bn_gf2m.c bn_nist.c \
29238405Sjkim	bn_depr.c bn_const.c bn_x931p.c
30142425Snectar
31142425SnectarLIBOBJ=	bn_add.o bn_div.o bn_exp.o bn_lib.o bn_ctx.o bn_mul.o bn_mod.o \
32142425Snectar	bn_print.o bn_rand.o bn_shift.o bn_word.o bn_blind.o \
33142425Snectar	bn_kron.o bn_sqrt.o bn_gcd.o bn_prime.o bn_err.o bn_sqr.o $(BN_ASM) \
34160814Ssimon	bn_recp.o bn_mont.o bn_mpi.o bn_exp2.o bn_gf2m.o bn_nist.o \
35238405Sjkim	bn_depr.o bn_const.o bn_x931p.o
36142425Snectar
37142425SnectarSRC= $(LIBSRC)
38142425Snectar
39142425SnectarEXHEADER= bn.h
40142425SnectarHEADER=	bn_lcl.h bn_prime.h $(EXHEADER)
41142425Snectar
42142425SnectarALL=    $(GENERAL) $(SRC) $(HEADER)
43142425Snectar
44142425Snectartop:
45142425Snectar	(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
46142425Snectar
47142425Snectarall:	lib
48142425Snectar
49142425Snectarbn_prime.h: bn_prime.pl
50142425Snectar	$(PERL) bn_prime.pl >bn_prime.h
51142425Snectar
52142425Snectardivtest: divtest.c ../../libcrypto.a
53142425Snectar	cc -I../../include divtest.c -o divtest ../../libcrypto.a
54142425Snectar
55142425Snectarbnbug: bnbug.c ../../libcrypto.a top
56142425Snectar	cc -g -I../../include bnbug.c -o bnbug ../../libcrypto.a
57142425Snectar
58142425Snectarlib:	$(LIBOBJ)
59238405Sjkim	$(AR) $(LIB) $(LIBOBJ)
60142425Snectar	$(RANLIB) $(LIB) || echo Never mind.
61142425Snectar	@touch lib
62142425Snectar
63238405Sjkimbn-586.s:	asm/bn-586.pl ../perlasm/x86asm.pl
64238405Sjkim	$(PERL) asm/bn-586.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
65238405Sjkimco-586.s:	asm/co-586.pl ../perlasm/x86asm.pl
66238405Sjkim	$(PERL) asm/co-586.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
67238405Sjkimx86-mont.s:	asm/x86-mont.pl ../perlasm/x86asm.pl
68238405Sjkim	$(PERL) asm/x86-mont.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
69238405Sjkimx86-gf2m.s:	asm/x86-gf2m.pl ../perlasm/x86asm.pl
70238405Sjkim	$(PERL) asm/x86-gf2m.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
71142425Snectar
72160814Ssimonsparcv8.o:	asm/sparcv8.S
73160814Ssimon	$(CC) $(CFLAGS) -c asm/sparcv8.S
74238405Sjkimbn-sparcv9.o:	asm/sparcv8plus.S
75238405Sjkim	$(CC) $(CFLAGS) -c -o $@ asm/sparcv8plus.S
76238405Sjkimsparcv9a-mont.s:	asm/sparcv9a-mont.pl
77238405Sjkim	$(PERL) asm/sparcv9a-mont.pl $(CFLAGS) > $@
78238405Sjkimsparcv9-mont.s:		asm/sparcv9-mont.pl
79238405Sjkim	$(PERL) asm/sparcv9-mont.pl $(CFLAGS) > $@
80142425Snectar
81160814Ssimonbn-mips3.o:	asm/mips3.s
82160814Ssimon	@if [ "$(CC)" = "gcc" ]; then \
83160814Ssimon		ABI=`expr "$(CFLAGS)" : ".*-mabi=\([n3264]*\)"` && \
84160814Ssimon		as -$$ABI -O -o $@ asm/mips3.s; \
85160814Ssimon	else	$(CC) -c $(CFLAGS) -o $@ asm/mips3.s; fi
86142425Snectar
87238405Sjkimbn-mips.s:	asm/mips.pl
88238405Sjkim	$(PERL) asm/mips.pl $(PERLASM_SCHEME) $@
89238405Sjkimmips-mont.s:	asm/mips-mont.pl
90238405Sjkim	$(PERL)	asm/mips-mont.pl $(PERLASM_SCHEME) $@
91238405Sjkim
92238405Sjkimbn-s390x.o:	asm/s390x.S
93238405Sjkim	$(CC) $(CFLAGS) -c -o $@ asm/s390x.S
94238405Sjkims390x-gf2m.s:	asm/s390x-gf2m.pl
95238405Sjkim	$(PERL) asm/s390x-gf2m.pl $(PERLASM_SCHEME) $@
96238405Sjkim
97160814Ssimonx86_64-gcc.o:	asm/x86_64-gcc.c
98160814Ssimon	$(CC) $(CFLAGS) -c -o $@ asm/x86_64-gcc.c
99194206Ssimonx86_64-mont.s:	asm/x86_64-mont.pl
100238405Sjkim	$(PERL) asm/x86_64-mont.pl $(PERLASM_SCHEME) > $@
101238405Sjkimx86_64-mont5.s:	asm/x86_64-mont5.pl
102238405Sjkim	$(PERL) asm/x86_64-mont5.pl $(PERLASM_SCHEME) > $@
103238405Sjkimx86_64-gf2m.s:	asm/x86_64-gf2m.pl
104238405Sjkim	$(PERL) asm/x86_64-gf2m.pl $(PERLASM_SCHEME) > $@
105238405Sjkimmodexp512-x86_64.s:	asm/modexp512-x86_64.pl
106238405Sjkim	$(PERL) asm/modexp512-x86_64.pl $(PERLASM_SCHEME) > $@
107142425Snectar
108160814Ssimonbn-ia64.s:	asm/ia64.S
109160814Ssimon	$(CC) $(CFLAGS) -E asm/ia64.S > $@
110238405Sjkimia64-mont.s:	asm/ia64-mont.pl
111238405Sjkim	$(PERL) asm/ia64-mont.pl $@ $(CFLAGS)
112142425Snectar
113160814Ssimon# GNU assembler fails to compile PA-RISC2 modules, insist on calling
114160814Ssimon# vendor assembler...
115160814Ssimonpa-risc2W.o: asm/pa-risc2W.s
116160814Ssimon	/usr/ccs/bin/as -o pa-risc2W.o asm/pa-risc2W.s
117160814Ssimonpa-risc2.o: asm/pa-risc2.s
118160814Ssimon	/usr/ccs/bin/as -o pa-risc2.o asm/pa-risc2.s
119238405Sjkimparisc-mont.s:	asm/parisc-mont.pl
120238405Sjkim	$(PERL) asm/parisc-mont.pl $(PERLASM_SCHEME) $@
121142425Snectar
122160814Ssimon# ppc - AIX, Linux, MacOS X...
123238405Sjkimbn-ppc.s:	asm/ppc.pl;	$(PERL) asm/ppc.pl $(PERLASM_SCHEME) $@
124238405Sjkimppc-mont.s:	asm/ppc-mont.pl;$(PERL) asm/ppc-mont.pl $(PERLASM_SCHEME) $@
125238405Sjkimppc64-mont.s:	asm/ppc64-mont.pl;$(PERL) asm/ppc64-mont.pl $(PERLASM_SCHEME) $@
126142425Snectar
127238405Sjkimalpha-mont.s:	asm/alpha-mont.pl
128264331Sjkim	(preproc=/tmp/$$$$.$@; trap "rm $$preproc" INT; \
129264331Sjkim	$(PERL) asm/alpha-mont.pl > $$preproc && \
130264331Sjkim	$(CC) -E $$preproc > $@ && rm $$preproc)
131238405Sjkim
132238405Sjkim# GNU make "catch all"
133238405Sjkim%-mont.s:	asm/%-mont.pl;	$(PERL) $< $(PERLASM_SCHEME) $@
134238405Sjkim%-gf2m.S:	asm/%-gf2m.pl;	$(PERL) $< $(PERLASM_SCHEME) $@
135238405Sjkim
136238405Sjkimarmv4-gf2m.o:	armv4-gf2m.S
137238405Sjkim
138142425Snectarfiles:
139142425Snectar	$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
140142425Snectar
141142425Snectarlinks:
142142425Snectar	@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
143142425Snectar	@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
144142425Snectar	@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
145142425Snectar
146142425Snectarinstall:
147160814Ssimon	@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
148160814Ssimon	@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
149142425Snectar	do  \
150142425Snectar	(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
151142425Snectar	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
152142425Snectar	done;
153142425Snectar
154142425Snectarexptest:
155142425Snectar	rm -f exptest
156142425Snectar	gcc -I../../include -g2 -ggdb -o exptest exptest.c ../../libcrypto.a
157142425Snectar
158142425Snectardiv:
159142425Snectar	rm -f a.out
160142425Snectar	gcc -I.. -g div.c ../../libcrypto.a
161142425Snectar
162142425Snectartags:
163142425Snectar	ctags $(SRC)
164142425Snectar
165142425Snectartests:
166142425Snectar
167142425Snectarlint:
168142425Snectar	lint -DLINT $(INCLUDES) $(SRC)>fluff
169142425Snectar
170284285Sjkimupdate: bn_prime.h depend
171284285Sjkim
172142425Snectardepend:
173160814Ssimon	@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
174142425Snectar	$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
175142425Snectar
176142425Snectardclean:
177142425Snectar	$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
178142425Snectar	mv -f Makefile.new $(MAKEFILE)
179142425Snectar
180142425Snectarclean:
181160814Ssimon	rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
182142425Snectar
183142425Snectar# DO NOT DELETE THIS LINE -- make depend depends on it.
184142425Snectar
185142425Snectarbn_add.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
186142425Snectarbn_add.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
187142425Snectarbn_add.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
188142425Snectarbn_add.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
189160814Ssimonbn_add.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
190160814Ssimonbn_add.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
191160814Ssimonbn_add.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_add.c bn_lcl.h
192142425Snectarbn_asm.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
193142425Snectarbn_asm.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
194142425Snectarbn_asm.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
195142425Snectarbn_asm.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
196160814Ssimonbn_asm.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
197160814Ssimonbn_asm.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
198160814Ssimonbn_asm.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_asm.c bn_lcl.h
199142425Snectarbn_blind.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
200142425Snectarbn_blind.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
201142425Snectarbn_blind.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
202142425Snectarbn_blind.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
203160814Ssimonbn_blind.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
204160814Ssimonbn_blind.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
205160814Ssimonbn_blind.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_blind.c bn_lcl.h
206238405Sjkimbn_const.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
207238405Sjkimbn_const.o: ../../include/openssl/opensslconf.h
208238405Sjkimbn_const.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
209238405Sjkimbn_const.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
210238405Sjkimbn_const.o: ../../include/openssl/symhacks.h bn.h bn_const.c
211142425Snectarbn_ctx.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
212142425Snectarbn_ctx.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
213142425Snectarbn_ctx.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
214142425Snectarbn_ctx.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
215160814Ssimonbn_ctx.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
216160814Ssimonbn_ctx.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
217160814Ssimonbn_ctx.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_ctx.c bn_lcl.h
218160814Ssimonbn_depr.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
219160814Ssimonbn_depr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
220160814Ssimonbn_depr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
221160814Ssimonbn_depr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
222160814Ssimonbn_depr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
223160814Ssimonbn_depr.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
224160814Ssimonbn_depr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
225160814Ssimonbn_depr.o: ../cryptlib.h bn_depr.c bn_lcl.h
226142425Snectarbn_div.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
227142425Snectarbn_div.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
228142425Snectarbn_div.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
229142425Snectarbn_div.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
230160814Ssimonbn_div.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
231160814Ssimonbn_div.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
232160814Ssimonbn_div.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_div.c bn_lcl.h
233142425Snectarbn_err.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
234142425Snectarbn_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
235142425Snectarbn_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
236142425Snectarbn_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
237160814Ssimonbn_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
238160814Ssimonbn_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
239160814Ssimonbn_err.o: bn_err.c
240142425Snectarbn_exp.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
241142425Snectarbn_exp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
242142425Snectarbn_exp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
243142425Snectarbn_exp.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
244160814Ssimonbn_exp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
245160814Ssimonbn_exp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
246296317Sdelphijbn_exp.o: ../../include/openssl/symhacks.h ../constant_time_locl.h
247296317Sdelphijbn_exp.o: ../cryptlib.h bn_exp.c bn_lcl.h
248142425Snectarbn_exp2.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
249142425Snectarbn_exp2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
250142425Snectarbn_exp2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
251142425Snectarbn_exp2.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
252160814Ssimonbn_exp2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
253160814Ssimonbn_exp2.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
254160814Ssimonbn_exp2.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_exp2.c bn_lcl.h
255142425Snectarbn_gcd.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
256142425Snectarbn_gcd.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
257142425Snectarbn_gcd.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
258142425Snectarbn_gcd.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
259160814Ssimonbn_gcd.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
260160814Ssimonbn_gcd.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
261160814Ssimonbn_gcd.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_gcd.c bn_lcl.h
262160814Ssimonbn_gf2m.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
263160814Ssimonbn_gf2m.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
264160814Ssimonbn_gf2m.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
265160814Ssimonbn_gf2m.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
266160814Ssimonbn_gf2m.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
267160814Ssimonbn_gf2m.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
268160814Ssimonbn_gf2m.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_gf2m.c bn_lcl.h
269160814Ssimonbn_kron.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
270160814Ssimonbn_kron.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
271160814Ssimonbn_kron.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
272160814Ssimonbn_kron.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
273160814Ssimonbn_kron.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
274160814Ssimonbn_kron.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
275160814Ssimonbn_kron.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_kron.c bn_lcl.h
276142425Snectarbn_lib.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
277142425Snectarbn_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
278142425Snectarbn_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
279142425Snectarbn_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
280160814Ssimonbn_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
281160814Ssimonbn_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
282160814Ssimonbn_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_lib.c
283142425Snectarbn_mod.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
284142425Snectarbn_mod.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
285142425Snectarbn_mod.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
286142425Snectarbn_mod.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
287160814Ssimonbn_mod.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
288160814Ssimonbn_mod.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
289160814Ssimonbn_mod.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_mod.c
290142425Snectarbn_mont.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
291142425Snectarbn_mont.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
292142425Snectarbn_mont.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
293142425Snectarbn_mont.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
294160814Ssimonbn_mont.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
295160814Ssimonbn_mont.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
296160814Ssimonbn_mont.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_mont.c
297142425Snectarbn_mpi.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
298142425Snectarbn_mpi.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
299142425Snectarbn_mpi.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
300142425Snectarbn_mpi.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
301160814Ssimonbn_mpi.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
302160814Ssimonbn_mpi.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
303160814Ssimonbn_mpi.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_mpi.c
304142425Snectarbn_mul.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
305142425Snectarbn_mul.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
306142425Snectarbn_mul.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
307142425Snectarbn_mul.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
308160814Ssimonbn_mul.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
309160814Ssimonbn_mul.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
310160814Ssimonbn_mul.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_mul.c
311160814Ssimonbn_nist.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
312160814Ssimonbn_nist.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
313160814Ssimonbn_nist.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
314160814Ssimonbn_nist.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
315160814Ssimonbn_nist.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
316160814Ssimonbn_nist.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
317160814Ssimonbn_nist.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_nist.c
318142425Snectarbn_prime.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
319142425Snectarbn_prime.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
320142425Snectarbn_prime.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
321142425Snectarbn_prime.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
322142425Snectarbn_prime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
323142425Snectarbn_prime.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
324142425Snectarbn_prime.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
325142425Snectarbn_prime.o: ../cryptlib.h bn_lcl.h bn_prime.c bn_prime.h
326142425Snectarbn_print.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
327142425Snectarbn_print.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
328142425Snectarbn_print.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
329142425Snectarbn_print.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
330160814Ssimonbn_print.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
331160814Ssimonbn_print.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
332160814Ssimonbn_print.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_print.c
333142425Snectarbn_rand.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
334142425Snectarbn_rand.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
335142425Snectarbn_rand.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
336142425Snectarbn_rand.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
337142425Snectarbn_rand.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
338142425Snectarbn_rand.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
339142425Snectarbn_rand.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
340142425Snectarbn_rand.o: ../cryptlib.h bn_lcl.h bn_rand.c
341142425Snectarbn_recp.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
342142425Snectarbn_recp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
343142425Snectarbn_recp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
344142425Snectarbn_recp.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
345160814Ssimonbn_recp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
346160814Ssimonbn_recp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
347160814Ssimonbn_recp.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_recp.c
348142425Snectarbn_shift.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
349142425Snectarbn_shift.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
350142425Snectarbn_shift.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
351142425Snectarbn_shift.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
352160814Ssimonbn_shift.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
353160814Ssimonbn_shift.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
354160814Ssimonbn_shift.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_shift.c
355142425Snectarbn_sqr.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
356142425Snectarbn_sqr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
357142425Snectarbn_sqr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
358142425Snectarbn_sqr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
359160814Ssimonbn_sqr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
360160814Ssimonbn_sqr.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
361160814Ssimonbn_sqr.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_sqr.c
362142425Snectarbn_sqrt.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
363142425Snectarbn_sqrt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
364142425Snectarbn_sqrt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
365142425Snectarbn_sqrt.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
366160814Ssimonbn_sqrt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
367160814Ssimonbn_sqrt.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
368160814Ssimonbn_sqrt.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_sqrt.c
369142425Snectarbn_word.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
370142425Snectarbn_word.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
371142425Snectarbn_word.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
372142425Snectarbn_word.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
373160814Ssimonbn_word.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
374160814Ssimonbn_word.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
375160814Ssimonbn_word.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_word.c
376238405Sjkimbn_x931p.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
377238405Sjkimbn_x931p.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
378238405Sjkimbn_x931p.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
379238405Sjkimbn_x931p.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
380238405Sjkimbn_x931p.o: ../../include/openssl/symhacks.h bn_x931p.c
381