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