Makefile 19.0 KB
Newer Older
1
#
2
# OpenSSL/crypto/bn/Makefile
3 4 5 6 7
#

DIR=	bn
TOP=	../..
CC=	cc
8
CPP=    $(CC) -E
9
INCLUDES= -I.. -I$(TOP) -I../../include
10
CFLAG=-g
B
Ben Laurie 已提交
11
MAKEFILE=	Makefile
12 13
AR=		ar r

14
BN_ASM=		bn_asm.o
15
# or use
16
#BN_ASM=	bn86-elf.o
17

18
CFLAGS= $(INCLUDES) $(CFLAG)
19
ASFLAGS= $(INCLUDES) $(ASFLAG)
20
AFLAGS= $(ASFLAGS)
21

22 23 24 25 26
GENERAL=Makefile
TEST=bntest.c exptest.c
APPS=

LIB=$(TOP)/libcrypto.a
B
Bodo Möller 已提交
27
LIBSRC=	bn_add.c bn_div.c bn_exp.c bn_lib.c bn_ctx.c bn_mul.c bn_mod.c \
28
	bn_print.c bn_rand.c bn_shift.c bn_word.c bn_blind.c \
B
BN_sqrt  
Bodo Möller 已提交
29
	bn_kron.c bn_sqrt.c bn_gcd.c bn_prime.c bn_err.c bn_sqr.c bn_asm.c \
30
	bn_recp.c bn_mont.c bn_mpi.c bn_exp2.c bn_gf2m.c bn_nist.c \
31
	bn_depr.c bn_const.c
32

B
Bodo Möller 已提交
33
LIBOBJ=	bn_add.o bn_div.o bn_exp.o bn_lib.o bn_ctx.o bn_mul.o bn_mod.o \
34
	bn_print.o bn_rand.o bn_shift.o bn_word.o bn_blind.o \
B
BN_sqrt  
Bodo Möller 已提交
35
	bn_kron.o bn_sqrt.o bn_gcd.o bn_prime.o bn_err.o bn_sqr.o $(BN_ASM) \
36
	bn_recp.o bn_mont.o bn_mpi.o bn_exp2.o bn_gf2m.o bn_nist.o \
37
	bn_depr.o bn_const.o
38 39 40 41 42 43 44 45 46 47 48 49 50

SRC= $(LIBSRC)

EXHEADER= bn.h
HEADER=	bn_lcl.h bn_prime.h $(EXHEADER)

ALL=    $(GENERAL) $(SRC) $(HEADER)

top:
	(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)

all:	lib

51 52 53
bn_prime.h: bn_prime.pl
	$(PERL) bn_prime.pl >bn_prime.h

54
divtest: divtest.c ../../libcrypto.a
U
Ulf Möller 已提交
55
	cc -I../../include divtest.c -o divtest ../../libcrypto.a
56

U
Ulf Möller 已提交
57
bnbug: bnbug.c ../../libcrypto.a top
58 59
	cc -g -I../../include bnbug.c -o bnbug ../../libcrypto.a

60 61
lib:	$(LIBOBJ)
	$(AR) $(LIB) $(LIBOBJ)
62
	$(RANLIB) $(LIB) || echo Never mind.
63 64
	@touch lib

65
# ELF
66
bn86-elf.s:	asm/bn-586.pl ../perlasm/x86asm.pl
67
	(cd asm; $(PERL) bn-586.pl elf $(CFLAGS) > ../$@)
68
co86-elf.s:	asm/co-586.pl ../perlasm/x86asm.pl
69
	(cd asm; $(PERL) co-586.pl elf $(CFLAGS) > ../$@)
70 71
mo86-elf.s:	asm/x86-mont.pl ../perlasm/x86asm.pl
	(cd asm; $(PERL) x86-mont.pl elf $(CFLAGS) > ../$@)
72
# COFF
73
bn86-cof.s: asm/bn-586.pl ../perlasm/x86asm.pl
74
	(cd asm; $(PERL) bn-586.pl coff $(CFLAGS) > ../$@)
75
co86-cof.s: asm/co-586.pl ../perlasm/x86asm.pl
76
	(cd asm; $(PERL) co-586.pl coff $(CFLAGS) > ../$@)
77 78
mo86-cof.s: asm/x86-mont.pl ../perlasm/x86asm.pl
	(cd asm; $(PERL) x86-mont.pl coff $(CFLAGS) > ../$@)
79
# a.out
80 81 82 83
bn86-out.s: asm/bn-586.pl ../perlasm/x86asm.pl
	(cd asm; $(PERL) bn-586.pl a.out $(CFLAGS) > ../$@)
co86-out.s: asm/co-586.pl ../perlasm/x86asm.pl
	(cd asm; $(PERL) co-586.pl a.out $(CFLAGS) > ../$@)
84 85
mo86-out.s: asm/x86-mont.pl ../perlasm/x86asm.pl
	(cd asm; $(PERL) x86-mont.pl a.out $(CFLAGS) > ../$@)
86 87 88 89 90 91
bn86-macosx.s: asm/bn-586.pl ../perlasm/x86asm.pl
	(cd asm; $(PERL) bn-586.pl macosx $(CFLAGS) > ../$@)
co86-macosx.s: asm/co-586.pl ../perlasm/x86asm.pl
	(cd asm; $(PERL) co-586.pl macosx $(CFLAGS) > ../$@)
mo86-macosx.s: asm/bn-586.pl ../perlasm/x86asm.pl
	(cd asm; $(PERL) x86-mont.pl macosx $(CFLAGS) > ../$@)
92

93
sparcv8.o:	asm/sparcv8.S
A
Andy Polyakov 已提交
94
	$(CC) $(CFLAGS) -c asm/sparcv8.S
95 96
bn-sparcv9.o:	asm/sparcv8plus.S
	$(CC) $(CFLAGS) -c -o $@ asm/sparcv8plus.S
97 98
sparcv9a-mont.s:	asm/sparcv9a-mont.pl
	$(PERL) asm/sparcv9a-mont.pl $(CFLAGS) > $@
99 100
sparcv9-mont.s:		asm/sparcv9-mont.pl
	$(PERL) asm/sparcv9-mont.pl $(CFLAGS) > $@
101

A
Andy Polyakov 已提交
102
bn-mips3.o:	asm/mips3.s
103 104 105
	@if [ "$(CC)" = "gcc" ]; then \
		ABI=`expr "$(CFLAGS)" : ".*-mabi=\([n3264]*\)"` && \
		as -$$ABI -O -o $@ asm/mips3.s; \
A
Andy Polyakov 已提交
106
	else	$(CC) -c $(CFLAGS) -o $@ asm/mips3.s; fi
U
Ulf Möller 已提交
107

108 109 110
bn-s390x.o:	asm/s390x.S
	$(CC) $(CFLAGS) -c -o $@ asm/s390x.S

111
x86_64-gcc.o:	asm/x86_64-gcc.c
112
	$(CC) $(CFLAGS) -c -o $@ asm/x86_64-gcc.c
113 114
x86_64-mont.s:	asm/x86_64-mont.pl
	$(PERL) asm/x86_64-mont.pl $@
U
Ulf Möller 已提交
115

116
bn-ia64.s:	asm/ia64.S
117
	$(CC) $(CFLAGS) -E asm/ia64.S > $@
118

A
Andy Polyakov 已提交
119 120
# GNU assembler fails to compile PA-RISC2 modules, insist on calling
# vendor assembler...
121 122 123 124
pa-risc2W.o: asm/pa-risc2W.s
	/usr/ccs/bin/as -o pa-risc2W.o asm/pa-risc2W.s
pa-risc2.o: asm/pa-risc2.s
	/usr/ccs/bin/as -o pa-risc2.o asm/pa-risc2.s
A
Andy Polyakov 已提交
125

126
# ppc - AIX, Linux, MacOS X...
127 128 129 130 131
linux_ppc32.s: asm/ppc.pl;	$(PERL) $< $@
linux_ppc64.s: asm/ppc.pl;	$(PERL) $< $@
aix_ppc32.s: asm/ppc.pl;	$(PERL) asm/ppc.pl $@
aix_ppc64.s: asm/ppc.pl;	$(PERL) asm/ppc.pl $@
osx_ppc32.s: asm/ppc.pl;	$(PERL) $< $@
132 133 134 135 136 137 138 139
osx_ppc64.s: asm/ppc.pl;	$(PERL) $< $@

linux_ppc32-mont.s: asm/ppc-mont.pl;	$(PERL) $< $@
linux_ppc64-mont.s: asm/ppc-mont.pl;	$(PERL) $< $@
aix_ppc32-mont.s: asm/ppc-mont.pl;	$(PERL) asm/ppc-mont.pl $@
aix_ppc64-mont.s: asm/ppc-mont.pl;	$(PERL) asm/ppc-mont.pl $@
osx_ppc32-mont.s: asm/ppc-mont.pl;	$(PERL) $< $@
osx_ppc64-mont.s: asm/ppc-mont.pl;	$(PERL) $< $@
140

141
alpha-mont.s:	asm/alpha-mont.pl
A
Andy Polyakov 已提交
142
	$(PERL) $< | $(CC) -E - | tee $@ > /dev/null
143

A
Andy Polyakov 已提交
144 145 146
# GNU make "catch all"
%-mont.s:	asm/%-mont.pl;	$(PERL) $< $(CFLAGS) > $@

147
files:
B
Ben Laurie 已提交
148
	$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
149 150

links:
151 152 153
	@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
	@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
	@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
154 155

install:
A
Andy Polyakov 已提交
156
	@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
157
	@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
158
	do  \
159 160
	(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
161 162 163
	done;

exptest:
164
	rm -f exptest
165 166 167
	gcc -I../../include -g2 -ggdb -o exptest exptest.c ../../libcrypto.a

div:
168
	rm -f a.out
169 170 171 172 173 174 175 176 177 178 179
	gcc -I.. -g div.c ../../libcrypto.a

tags:
	ctags $(SRC)

tests:

lint:
	lint -DLINT $(INCLUDES) $(SRC)>fluff

depend:
180
	@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
181
	$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
182 183

dclean:
184
	$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
185 186 187
	mv -f Makefile.new $(MAKEFILE)

clean:
188
	rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
189 190

# DO NOT DELETE THIS LINE -- make depend depends on it.
B
Ben Laurie 已提交
191

192
bn_add.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
B
Bodo Möller 已提交
193
bn_add.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
194 195
bn_add.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
bn_add.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
G
Geoff Thorpe 已提交
196 197 198
bn_add.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
bn_add.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
bn_add.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_add.c bn_lcl.h
199
bn_asm.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
B
Bodo Möller 已提交
200
bn_asm.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
201 202
bn_asm.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
bn_asm.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
G
Geoff Thorpe 已提交
203 204 205
bn_asm.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
bn_asm.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
bn_asm.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_asm.c bn_lcl.h
206
bn_blind.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
B
Bodo Möller 已提交
207
bn_blind.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
208 209
bn_blind.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
bn_blind.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
G
Geoff Thorpe 已提交
210 211 212
bn_blind.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
bn_blind.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
bn_blind.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_blind.c bn_lcl.h
U
Ulf Möller 已提交
213 214
bn_const.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
bn_const.o: ../../include/openssl/ossl_typ.h bn.h bn_const.c
215
bn_ctx.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
216
bn_ctx.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
217 218
bn_ctx.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
bn_ctx.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
G
Geoff Thorpe 已提交
219 220 221
bn_ctx.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
bn_ctx.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
bn_ctx.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_ctx.c bn_lcl.h
R
Richard Levitte 已提交
222 223 224 225 226 227 228 229
bn_depr.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
bn_depr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
bn_depr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
bn_depr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
bn_depr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
bn_depr.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
bn_depr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
bn_depr.o: ../cryptlib.h bn_depr.c bn_lcl.h
230
bn_div.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
B
Bodo Möller 已提交
231
bn_div.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
232 233
bn_div.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
bn_div.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
G
Geoff Thorpe 已提交
234 235 236
bn_div.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
bn_div.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
bn_div.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_div.c bn_lcl.h
237
bn_err.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
238 239 240
bn_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
bn_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
bn_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
G
Geoff Thorpe 已提交
241 242 243
bn_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
bn_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
bn_err.o: bn_err.c
244
bn_exp.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
B
Bodo Möller 已提交
245
bn_exp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
246 247
bn_exp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
bn_exp.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
G
Geoff Thorpe 已提交
248 249 250
bn_exp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
bn_exp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
bn_exp.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_exp.c bn_lcl.h
251
bn_exp2.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
B
Bodo Möller 已提交
252
bn_exp2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
253 254
bn_exp2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
bn_exp2.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
G
Geoff Thorpe 已提交
255 256 257
bn_exp2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
bn_exp2.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
bn_exp2.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_exp2.c bn_lcl.h
258
bn_gcd.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
B
Bodo Möller 已提交
259
bn_gcd.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
260 261
bn_gcd.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
bn_gcd.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
G
Geoff Thorpe 已提交
262 263 264
bn_gcd.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
bn_gcd.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
bn_gcd.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_gcd.c bn_lcl.h
265 266 267 268
bn_gf2m.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
bn_gf2m.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
bn_gf2m.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
bn_gf2m.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
G
Geoff Thorpe 已提交
269 270 271
bn_gf2m.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
bn_gf2m.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
bn_gf2m.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_gf2m.c bn_lcl.h
R
Richard Levitte 已提交
272 273 274 275
bn_kron.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
bn_kron.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
bn_kron.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
bn_kron.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
G
Geoff Thorpe 已提交
276 277 278
bn_kron.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
bn_kron.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
bn_kron.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_kron.c bn_lcl.h
279
bn_lib.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
B
Bodo Möller 已提交
280
bn_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
281 282
bn_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
bn_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
G
Geoff Thorpe 已提交
283 284 285
bn_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
bn_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
bn_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_lib.c
286
bn_mod.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
B
Bodo Möller 已提交
287
bn_mod.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
288 289
bn_mod.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
bn_mod.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
G
Geoff Thorpe 已提交
290 291 292
bn_mod.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
bn_mod.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
bn_mod.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_mod.c
293
bn_mont.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
B
Bodo Möller 已提交
294
bn_mont.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
295 296
bn_mont.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
bn_mont.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
G
Geoff Thorpe 已提交
297 298 299
bn_mont.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
bn_mont.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
bn_mont.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_mont.c
300
bn_mpi.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
B
Bodo Möller 已提交
301
bn_mpi.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
302 303
bn_mpi.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
bn_mpi.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
G
Geoff Thorpe 已提交
304 305 306
bn_mpi.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
bn_mpi.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
bn_mpi.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_mpi.c
307
bn_mul.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
B
Bodo Möller 已提交
308
bn_mul.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
309 310
bn_mul.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
bn_mul.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
G
Geoff Thorpe 已提交
311 312 313
bn_mul.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
bn_mul.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
bn_mul.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_mul.c
314 315 316 317
bn_nist.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
bn_nist.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
bn_nist.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
bn_nist.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
G
Geoff Thorpe 已提交
318 319 320
bn_nist.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
bn_nist.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
bn_nist.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_nist.c
321
bn_prime.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
B
Bodo Möller 已提交
322
bn_prime.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
323 324
bn_prime.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
bn_prime.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
R
Richard Levitte 已提交
325 326 327
bn_prime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
bn_prime.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
bn_prime.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
G
Geoff Thorpe 已提交
328
bn_prime.o: ../cryptlib.h bn_lcl.h bn_prime.c bn_prime.h
329
bn_print.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
B
Bodo Möller 已提交
330
bn_print.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
331 332
bn_print.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
bn_print.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
G
Geoff Thorpe 已提交
333 334 335
bn_print.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
bn_print.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
bn_print.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_print.c
336
bn_rand.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
B
Bodo Möller 已提交
337
bn_rand.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
338 339
bn_rand.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
bn_rand.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
R
Richard Levitte 已提交
340 341 342
bn_rand.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
bn_rand.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
bn_rand.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
G
Geoff Thorpe 已提交
343
bn_rand.o: ../cryptlib.h bn_lcl.h bn_rand.c
344
bn_recp.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
B
Bodo Möller 已提交
345
bn_recp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
346 347
bn_recp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
bn_recp.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
G
Geoff Thorpe 已提交
348 349 350
bn_recp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
bn_recp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
bn_recp.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_recp.c
351
bn_shift.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
B
Bodo Möller 已提交
352
bn_shift.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
353 354
bn_shift.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
bn_shift.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
G
Geoff Thorpe 已提交
355 356 357
bn_shift.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
bn_shift.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
bn_shift.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_shift.c
358
bn_sqr.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
B
Bodo Möller 已提交
359
bn_sqr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
360 361
bn_sqr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
bn_sqr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
G
Geoff Thorpe 已提交
362 363 364
bn_sqr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
bn_sqr.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
bn_sqr.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_sqr.c
365
bn_sqrt.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
B
Bodo Möller 已提交
366
bn_sqrt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
367 368
bn_sqrt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
bn_sqrt.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
G
Geoff Thorpe 已提交
369 370 371
bn_sqrt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
bn_sqrt.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
bn_sqrt.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_sqrt.c
372
bn_word.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
B
Bodo Möller 已提交
373
bn_word.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
374 375
bn_word.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
bn_word.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
G
Geoff Thorpe 已提交
376 377 378
bn_word.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
bn_word.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
bn_word.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_word.c