]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/bn/Makefile.ssl
Use double dashes so makedepend doesn't misunderstand the flags we
[thirdparty/openssl.git] / crypto / bn / Makefile.ssl
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
RE
13INSTALLTOP=/usr/local/ssl
14MAKE= make -f Makefile.ssl
cf1b7d96
RL
15MAKEDEPPROG= makedepend
16MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
d02b48c6 17MAKEFILE= Makefile.ssl
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)
b96eb06f
AP
25
26# We let the C compiler driver to take care of .s files. This is done in
27# order to be excused from maintaining a separate set of architecture
28# dependent assembler flags. E.g. if you throw -mcpu=ultrasparc at SPARC
29# gcc, then the driver will automatically translate it to -xarch=v8plus
30# and pass it down to assembler.
31AS=$(CC) -c
7363455f 32ASFLAGS=$(CFLAGS)
d02b48c6 33
d02b48c6
RE
34GENERAL=Makefile
35TEST=bntest.c exptest.c
36APPS=
37
38LIB=$(TOP)/libcrypto.a
78a0c1f1 39LIBSRC= bn_add.c bn_div.c bn_exp.c bn_lib.c bn_ctx.c bn_mul.c bn_mod.c \
dfeab068 40 bn_print.c bn_rand.c bn_shift.c bn_word.c bn_blind.c \
cd2eebfd 41 bn_kron.c bn_sqrt.c bn_gcd.c bn_prime.c bn_err.c bn_sqr.c bn_asm.c \
1dc920c8 42 bn_recp.c bn_mont.c bn_mpi.c bn_exp2.c bn_gf2m.c
d02b48c6 43
78a0c1f1 44LIBOBJ= bn_add.o bn_div.o bn_exp.o bn_lib.o bn_ctx.o bn_mul.o bn_mod.o \
dfeab068 45 bn_print.o bn_rand.o bn_shift.o bn_word.o bn_blind.o \
cd2eebfd 46 bn_kron.o bn_sqrt.o bn_gcd.o bn_prime.o bn_err.o bn_sqr.o $(BN_ASM) \
1dc920c8 47 bn_recp.o bn_mont.o bn_mpi.o bn_exp2.o bn_gf2m.o
d02b48c6
RE
48
49SRC= $(LIBSRC)
50
51EXHEADER= bn.h
52HEADER= bn_lcl.h bn_prime.h $(EXHEADER)
53
54ALL= $(GENERAL) $(SRC) $(HEADER)
55
56top:
57 (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
58
59all: lib
60
e4b76456
BM
61bn_prime.h: bn_prime.pl
62 $(PERL) bn_prime.pl >bn_prime.h
63
775c63fc 64divtest: divtest.c ../../libcrypto.a
17dddc05 65 cc -I../../include divtest.c -o divtest ../../libcrypto.a
d02b48c6 66
1070e0e2 67bnbug: bnbug.c ../../libcrypto.a top
775c63fc
UM
68 cc -g -I../../include bnbug.c -o bnbug ../../libcrypto.a
69
d02b48c6
RE
70lib: $(LIBOBJ)
71 $(AR) $(LIB) $(LIBOBJ)
4e20b1a6 72 $(RANLIB) $(LIB) || echo Never mind.
d02b48c6
RE
73 @touch lib
74
58964a49
RE
75# elf
76asm/bn86-elf.o: asm/bn86unix.cpp
3a6a39c3 77 $(CPP) -DELF -x c asm/bn86unix.cpp | as -o asm/bn86-elf.o
58964a49 78
dfeab068 79asm/co86-elf.o: asm/co86unix.cpp
3a6a39c3 80 $(CPP) -DELF -x c asm/co86unix.cpp | as -o asm/co86-elf.o
dfeab068 81
58964a49
RE
82# solaris
83asm/bn86-sol.o: asm/bn86unix.cpp
84 $(CC) -E -DSOL asm/bn86unix.cpp | sed 's/^#.*//' > asm/bn86-sol.s
85 as -o asm/bn86-sol.o asm/bn86-sol.s
86 rm -f asm/bn86-sol.s
87
dfeab068
RE
88asm/co86-sol.o: asm/co86unix.cpp
89 $(CC) -E -DSOL asm/co86unix.cpp | sed 's/^#.*//' > asm/co86-sol.s
90 as -o asm/co86-sol.o asm/co86-sol.s
91 rm -f asm/co86-sol.s
92
58964a49
RE
93# a.out
94asm/bn86-out.o: asm/bn86unix.cpp
95 $(CPP) -DOUT asm/bn86unix.cpp | as -o asm/bn86-out.o
96
dfeab068
RE
97asm/co86-out.o: asm/co86unix.cpp
98 $(CPP) -DOUT asm/co86unix.cpp | as -o asm/co86-out.o
99
58964a49
RE
100# bsdi
101asm/bn86bsdi.o: asm/bn86unix.cpp
dfeab068
RE
102 $(CPP) -DBSDI asm/bn86unix.cpp | sed 's/ :/:/' | as -o asm/bn86bsdi.o
103
104asm/co86bsdi.o: asm/co86unix.cpp
105 $(CPP) -DBSDI asm/co86unix.cpp | sed 's/ :/:/' | as -o asm/co86bsdi.o
58964a49 106
743e7be9 107asm/bn86unix.cpp: asm/bn-586.pl ../perlasm/x86asm.pl
99aab161 108 (cd asm; $(PERL) bn-586.pl cpp >bn86unix.cpp )
58964a49 109
743e7be9 110asm/co86unix.cpp: asm/co-586.pl ../perlasm/x86asm.pl
99aab161 111 (cd asm; $(PERL) co-586.pl cpp >co86unix.cpp )
dfeab068 112
5e85b6ab 113asm/sparcv8.o: asm/sparcv8.S
5e85b6ab 114
49dce898 115asm/sparcv8plus.o: asm/sparcv8plus.S
4f5fac80 116
1656ef29
AP
117# Old GNU assembler doesn't understand V9 instructions, so we
118# hire /usr/ccs/bin/as to do the job. Note that option is called
119# *-gcc27, but even gcc 2>=8 users may experience similar problem
120# if they didn't bother to upgrade GNU assembler. Such users should
121# not choose this option, but be adviced to *remove* GNU assembler
122# or upgrade it.
123asm/sparcv8plus-gcc27.o: asm/sparcv8plus.S
124 $(CC) $(ASFLAGS) -E asm/sparcv8plus.S | \
125 /usr/ccs/bin/as -xarch=v8plus - -o asm/sparcv8plus-gcc27.o
744029c1 126
6d03b73e
AP
127
128asm/ia64.o: asm/ia64.S
129
130# Some compiler drivers (most notably HP-UX and Intel C++) don't
131# understand .S extension:-( I wish I could pipe output from cc -E,
132# but it's too compiler driver/ABI dependent to cover with a single
133# rule... <appro@fy.chalmers.se>
134asm/ia64-cpp.o: asm/ia64.S
135 $(CC) $(ASFLAGS) -E asm/ia64.S > /tmp/ia64.$$$$.s && \
136 $(CC) $(ASFLAGS) -c -o asm/ia64-cpp.o /tmp/ia64.$$$$.s; \
137 rm -f /tmp/ia64.$$$$.s
138
d02b48c6 139files:
99aab161 140 $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
d02b48c6
RE
141
142links:
bb8f3c58 143 @$(TOP)/util/point.sh Makefile.ssl Makefile
1314c344
BM
144 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
145 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
146 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
d02b48c6
RE
147
148install:
149 @for i in $(EXHEADER) ; \
150 do \
e5f3045f
BM
151 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
152 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
d02b48c6
RE
153 done;
154
155exptest:
bb8f3c58 156 rm -f exptest
d02b48c6
RE
157 gcc -I../../include -g2 -ggdb -o exptest exptest.c ../../libcrypto.a
158
159div:
bb8f3c58 160 rm -f a.out
d02b48c6
RE
161 gcc -I.. -g div.c ../../libcrypto.a
162
163tags:
164 ctags $(SRC)
165
166tests:
167
168lint:
169 lint -DLINT $(INCLUDES) $(SRC)>fluff
170
171depend:
001ab3ab 172 $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
d02b48c6
RE
173
174dclean:
99aab161 175 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
d02b48c6
RE
176 mv -f Makefile.new $(MAKEFILE)
177
178clean:
436a376b 179 rm -f asm/co86unix.cpp asm/bn86unix.cpp *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff bn_asm.s
d02b48c6 180
d02b48c6 181# DO NOT DELETE THIS LINE -- make depend depends on it.
6242bb9c 182
41d2a336 183bn_add.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
bf57da07 184bn_add.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
41d2a336
RL
185bn_add.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
186bn_add.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
187bn_add.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
188bn_add.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
710e5d56 189bn_add.o: ../cryptlib.h bn_add.c bn_lcl.h
41d2a336 190bn_asm.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
bf57da07 191bn_asm.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
41d2a336
RL
192bn_asm.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
193bn_asm.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
194bn_asm.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
195bn_asm.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
710e5d56 196bn_asm.o: ../cryptlib.h bn_asm.c bn_lcl.h
41d2a336 197bn_blind.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
bf57da07 198bn_blind.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
41d2a336
RL
199bn_blind.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
200bn_blind.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
dd9d233e 201bn_blind.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
62ab514e 202bn_blind.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
710e5d56 203bn_blind.o: ../cryptlib.h bn_blind.c bn_lcl.h
41d2a336 204bn_ctx.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
37e48b88 205bn_ctx.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
41d2a336
RL
206bn_ctx.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
207bn_ctx.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
208bn_ctx.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
209bn_ctx.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
710e5d56 210bn_ctx.o: ../cryptlib.h bn_ctx.c bn_lcl.h
41d2a336 211bn_div.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
bf57da07 212bn_div.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
41d2a336
RL
213bn_div.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
214bn_div.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
215bn_div.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
216bn_div.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
710e5d56 217bn_div.o: ../cryptlib.h bn_div.c bn_lcl.h
1c4f90a0 218bn_err.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
cf1b7d96
RL
219bn_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
220bn_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
221bn_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
222bn_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
710e5d56 223bn_err.o: ../../include/openssl/symhacks.h bn_err.c
41d2a336 224bn_exp.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
bf57da07 225bn_exp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
41d2a336
RL
226bn_exp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
227bn_exp.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
228bn_exp.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
229bn_exp.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
710e5d56 230bn_exp.o: ../cryptlib.h bn_exp.c bn_lcl.h
41d2a336 231bn_exp2.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
bf57da07 232bn_exp2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
41d2a336
RL
233bn_exp2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
234bn_exp2.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
235bn_exp2.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
236bn_exp2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
710e5d56 237bn_exp2.o: ../cryptlib.h bn_exp2.c bn_lcl.h
41d2a336 238bn_gcd.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
bf57da07 239bn_gcd.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
41d2a336
RL
240bn_gcd.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
241bn_gcd.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
242bn_gcd.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
243bn_gcd.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
710e5d56 244bn_gcd.o: ../cryptlib.h bn_gcd.c bn_lcl.h
35b73a1f
BM
245bn_gf2m.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
246bn_gf2m.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
247bn_gf2m.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
248bn_gf2m.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
249bn_gf2m.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
250bn_gf2m.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
251bn_gf2m.o: ../cryptlib.h bn_gf2m.c bn_lcl.h
41d2a336 252bn_kron.o: ../../include/openssl/bn.h ../../include/openssl/e_os2.h
710e5d56 253bn_kron.o: ../../include/openssl/opensslconf.h bn_kron.c bn_lcl.h
41d2a336 254bn_lib.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
bf57da07 255bn_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
41d2a336
RL
256bn_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
257bn_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
258bn_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
259bn_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
710e5d56 260bn_lib.o: ../cryptlib.h bn_lcl.h bn_lib.c
41d2a336 261bn_mod.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
78a0c1f1 262bn_mod.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
41d2a336
RL
263bn_mod.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
264bn_mod.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
265bn_mod.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
266bn_mod.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
710e5d56 267bn_mod.o: ../cryptlib.h bn_lcl.h bn_mod.c
41d2a336 268bn_mont.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
bf57da07 269bn_mont.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
41d2a336
RL
270bn_mont.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
271bn_mont.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
272bn_mont.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
273bn_mont.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
710e5d56 274bn_mont.o: ../cryptlib.h bn_lcl.h bn_mont.c
41d2a336 275bn_mpi.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
bf57da07 276bn_mpi.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
41d2a336
RL
277bn_mpi.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
278bn_mpi.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
279bn_mpi.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
280bn_mpi.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
710e5d56 281bn_mpi.o: ../cryptlib.h bn_lcl.h bn_mpi.c
41d2a336 282bn_mul.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
bf57da07 283bn_mul.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
41d2a336
RL
284bn_mul.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
285bn_mul.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
286bn_mul.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
287bn_mul.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
710e5d56 288bn_mul.o: ../cryptlib.h bn_lcl.h bn_mul.c
41d2a336 289bn_prime.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
bf57da07 290bn_prime.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
41d2a336
RL
291bn_prime.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
292bn_prime.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
f8000b93
RL
293bn_prime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
294bn_prime.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
295bn_prime.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
534aaf37 296bn_prime.o: ../cryptlib.h bn_lcl.h bn_prime.c bn_prime.h
41d2a336 297bn_print.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
bf57da07 298bn_print.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
41d2a336
RL
299bn_print.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
300bn_print.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
dd9d233e 301bn_print.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
62ab514e 302bn_print.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
710e5d56 303bn_print.o: ../cryptlib.h bn_lcl.h bn_print.c
41d2a336 304bn_rand.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
bf57da07 305bn_rand.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
41d2a336
RL
306bn_rand.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
307bn_rand.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
f8000b93
RL
308bn_rand.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
309bn_rand.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
310bn_rand.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
534aaf37 311bn_rand.o: ../cryptlib.h bn_lcl.h bn_rand.c
41d2a336 312bn_recp.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
bf57da07 313bn_recp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
41d2a336
RL
314bn_recp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
315bn_recp.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
316bn_recp.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
317bn_recp.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
710e5d56 318bn_recp.o: ../cryptlib.h bn_lcl.h bn_recp.c
41d2a336 319bn_shift.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
bf57da07 320bn_shift.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
41d2a336
RL
321bn_shift.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
322bn_shift.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
dd9d233e 323bn_shift.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
62ab514e 324bn_shift.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
710e5d56 325bn_shift.o: ../cryptlib.h bn_lcl.h bn_shift.c
41d2a336 326bn_sqr.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
bf57da07 327bn_sqr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
41d2a336
RL
328bn_sqr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
329bn_sqr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
330bn_sqr.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
331bn_sqr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
710e5d56 332bn_sqr.o: ../cryptlib.h bn_lcl.h bn_sqr.c
41d2a336 333bn_sqrt.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
b5a25a43 334bn_sqrt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
41d2a336
RL
335bn_sqrt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
336bn_sqrt.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
337bn_sqrt.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
338bn_sqrt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
710e5d56 339bn_sqrt.o: ../cryptlib.h bn_lcl.h bn_sqrt.c
41d2a336 340bn_word.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
bf57da07 341bn_word.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
41d2a336
RL
342bn_word.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
343bn_word.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
344bn_word.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
345bn_word.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
710e5d56 346bn_word.o: ../cryptlib.h bn_lcl.h bn_word.c