diff options
Diffstat (limited to 'src/lib/libcrypto/bn/Makefile')
| -rw-r--r-- | src/lib/libcrypto/bn/Makefile | 347 |
1 files changed, 0 insertions, 347 deletions
diff --git a/src/lib/libcrypto/bn/Makefile b/src/lib/libcrypto/bn/Makefile deleted file mode 100644 index aabc4f56b8..0000000000 --- a/src/lib/libcrypto/bn/Makefile +++ /dev/null | |||
| @@ -1,347 +0,0 @@ | |||
| 1 | # | ||
| 2 | # OpenSSL/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 | MAKEFILE= Makefile | ||
| 12 | AR= ar r | ||
| 13 | |||
| 14 | BN_ASM= bn_asm.o | ||
| 15 | |||
| 16 | CFLAGS= $(INCLUDES) $(CFLAG) | ||
| 17 | ASFLAGS= $(INCLUDES) $(ASFLAG) | ||
| 18 | AFLAGS= $(ASFLAGS) | ||
| 19 | |||
| 20 | GENERAL=Makefile | ||
| 21 | TEST=bntest.c exptest.c | ||
| 22 | APPS= | ||
| 23 | |||
| 24 | LIB=$(TOP)/libcrypto.a | ||
| 25 | LIBSRC= bn_add.c bn_div.c bn_exp.c bn_lib.c bn_ctx.c bn_mul.c bn_mod.c \ | ||
| 26 | bn_print.c bn_rand.c bn_shift.c bn_word.c bn_blind.c \ | ||
| 27 | bn_kron.c bn_sqrt.c bn_gcd.c bn_prime.c bn_err.c bn_sqr.c bn_asm.c \ | ||
| 28 | bn_recp.c bn_mont.c bn_mpi.c bn_exp2.c bn_gf2m.c bn_nist.c \ | ||
| 29 | bn_depr.c bn_const.c | ||
| 30 | |||
| 31 | LIBOBJ= bn_add.o bn_div.o bn_exp.o bn_lib.o bn_ctx.o bn_mul.o bn_mod.o \ | ||
| 32 | bn_print.o bn_rand.o bn_shift.o bn_word.o bn_blind.o \ | ||
| 33 | bn_kron.o bn_sqrt.o bn_gcd.o bn_prime.o bn_err.o bn_sqr.o $(BN_ASM) \ | ||
| 34 | bn_recp.o bn_mont.o bn_mpi.o bn_exp2.o bn_gf2m.o bn_nist.o \ | ||
| 35 | bn_depr.o bn_const.o | ||
| 36 | |||
| 37 | SRC= $(LIBSRC) | ||
| 38 | |||
| 39 | EXHEADER= bn.h | ||
| 40 | HEADER= bn_lcl.h bn_prime.h $(EXHEADER) | ||
| 41 | |||
| 42 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
| 43 | |||
| 44 | top: | ||
| 45 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
| 46 | |||
| 47 | all: lib | ||
| 48 | |||
| 49 | bn_prime.h: bn_prime.pl | ||
| 50 | $(PERL) bn_prime.pl >bn_prime.h | ||
| 51 | |||
| 52 | divtest: divtest.c ../../libcrypto.a | ||
| 53 | cc -I../../include divtest.c -o divtest ../../libcrypto.a | ||
| 54 | |||
| 55 | bnbug: bnbug.c ../../libcrypto.a top | ||
| 56 | cc -g -I../../include bnbug.c -o bnbug ../../libcrypto.a | ||
| 57 | |||
| 58 | lib: $(LIBOBJ) | ||
| 59 | $(AR) $(LIB) $(LIBOBJ) | ||
| 60 | $(RANLIB) $(LIB) || echo Never mind. | ||
| 61 | @touch lib | ||
| 62 | |||
| 63 | bn-586.s: asm/bn-586.pl ../perlasm/x86asm.pl | ||
| 64 | $(PERL) asm/bn-586.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@ | ||
| 65 | co-586.s: asm/co-586.pl ../perlasm/x86asm.pl | ||
| 66 | $(PERL) asm/co-586.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@ | ||
| 67 | x86-mont.s: asm/x86-mont.pl ../perlasm/x86asm.pl | ||
| 68 | $(PERL) asm/x86-mont.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@ | ||
| 69 | |||
| 70 | sparcv8.o: asm/sparcv8.S | ||
| 71 | $(CC) $(CFLAGS) -c asm/sparcv8.S | ||
| 72 | bn-sparcv9.o: asm/sparcv8plus.S | ||
| 73 | $(CC) $(CFLAGS) -c -o $@ asm/sparcv8plus.S | ||
| 74 | sparcv9a-mont.s: asm/sparcv9a-mont.pl | ||
| 75 | $(PERL) asm/sparcv9a-mont.pl $(CFLAGS) > $@ | ||
| 76 | sparcv9-mont.s: asm/sparcv9-mont.pl | ||
| 77 | $(PERL) asm/sparcv9-mont.pl $(CFLAGS) > $@ | ||
| 78 | |||
| 79 | bn-mips3.o: asm/mips3.s | ||
| 80 | @if [ "$(CC)" = "gcc" ]; then \ | ||
| 81 | ABI=`expr "$(CFLAGS)" : ".*-mabi=\([n3264]*\)"` && \ | ||
| 82 | as -$$ABI -O -o $@ asm/mips3.s; \ | ||
| 83 | else $(CC) -c $(CFLAGS) -o $@ asm/mips3.s; fi | ||
| 84 | |||
| 85 | bn-s390x.o: asm/s390x.S | ||
| 86 | $(CC) $(CFLAGS) -c -o $@ asm/s390x.S | ||
| 87 | |||
| 88 | x86_64-gcc.o: asm/x86_64-gcc.c | ||
| 89 | $(CC) $(CFLAGS) -c -o $@ asm/x86_64-gcc.c | ||
| 90 | x86_64-mont.s: asm/x86_64-mont.pl | ||
| 91 | $(PERL) asm/x86_64-mont.pl $(PERLASM_SCHEME) > $@ | ||
| 92 | |||
| 93 | bn-ia64.s: asm/ia64.S | ||
| 94 | $(CC) $(CFLAGS) -E asm/ia64.S > $@ | ||
| 95 | |||
| 96 | # GNU assembler fails to compile PA-RISC2 modules, insist on calling | ||
| 97 | # vendor assembler... | ||
| 98 | pa-risc2W.o: asm/pa-risc2W.s | ||
| 99 | /usr/ccs/bin/as -o pa-risc2W.o asm/pa-risc2W.s | ||
| 100 | pa-risc2.o: asm/pa-risc2.s | ||
| 101 | /usr/ccs/bin/as -o pa-risc2.o asm/pa-risc2.s | ||
| 102 | |||
| 103 | # ppc - AIX, Linux, MacOS X... | ||
| 104 | bn-ppc.s: asm/ppc.pl; $(PERL) asm/ppc.pl $(PERLASM_SCHEME) $@ | ||
| 105 | ppc-mont.s: asm/ppc-mont.pl;$(PERL) asm/ppc-mont.pl $(PERLASM_SCHEME) $@ | ||
| 106 | |||
| 107 | alpha-mont.s: asm/alpha-mont.pl | ||
| 108 | $(PERL) $< | $(CC) -E - | tee $@ > /dev/null | ||
| 109 | |||
| 110 | # GNU make "catch all" | ||
| 111 | %-mont.s: asm/%-mont.pl; $(PERL) $< $(CFLAGS) > $@ | ||
| 112 | |||
| 113 | files: | ||
| 114 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | ||
| 115 | |||
| 116 | links: | ||
| 117 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
| 118 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
| 119 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
| 120 | |||
| 121 | install: | ||
| 122 | @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... | ||
| 123 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | ||
| 124 | do \ | ||
| 125 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
| 126 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
| 127 | done; | ||
| 128 | |||
| 129 | exptest: | ||
| 130 | rm -f exptest | ||
| 131 | gcc -I../../include -g2 -ggdb -o exptest exptest.c ../../libcrypto.a | ||
| 132 | |||
| 133 | div: | ||
| 134 | rm -f a.out | ||
| 135 | gcc -I.. -g div.c ../../libcrypto.a | ||
| 136 | |||
| 137 | tags: | ||
| 138 | ctags $(SRC) | ||
| 139 | |||
| 140 | tests: | ||
| 141 | |||
| 142 | lint: | ||
| 143 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
| 144 | |||
| 145 | depend: | ||
| 146 | @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile... | ||
| 147 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | ||
| 148 | |||
| 149 | dclean: | ||
| 150 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
| 151 | mv -f Makefile.new $(MAKEFILE) | ||
| 152 | |||
| 153 | clean: | ||
| 154 | rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
| 155 | |||
| 156 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
| 157 | |||
| 158 | bn_add.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 159 | bn_add.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 160 | bn_add.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 161 | bn_add.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 162 | bn_add.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 163 | bn_add.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 164 | bn_add.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_add.c bn_lcl.h | ||
| 165 | bn_asm.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 166 | bn_asm.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 167 | bn_asm.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 168 | bn_asm.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 169 | bn_asm.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 170 | bn_asm.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 171 | bn_asm.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_asm.c bn_lcl.h | ||
| 172 | bn_blind.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 173 | bn_blind.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 174 | bn_blind.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 175 | bn_blind.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 176 | bn_blind.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 177 | bn_blind.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 178 | bn_blind.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_blind.c bn_lcl.h | ||
| 179 | bn_const.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 180 | bn_const.o: ../../include/openssl/opensslconf.h | ||
| 181 | bn_const.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 182 | bn_const.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 183 | bn_const.o: ../../include/openssl/symhacks.h bn.h bn_const.c | ||
| 184 | bn_ctx.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 185 | bn_ctx.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 186 | bn_ctx.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 187 | bn_ctx.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 188 | bn_ctx.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 189 | bn_ctx.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 190 | bn_ctx.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_ctx.c bn_lcl.h | ||
| 191 | bn_depr.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 192 | bn_depr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 193 | bn_depr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 194 | bn_depr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 195 | bn_depr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 196 | bn_depr.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
| 197 | bn_depr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 198 | bn_depr.o: ../cryptlib.h bn_depr.c bn_lcl.h | ||
| 199 | bn_div.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 200 | bn_div.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 201 | bn_div.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 202 | bn_div.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 203 | bn_div.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 204 | bn_div.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 205 | bn_div.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_div.c bn_lcl.h | ||
| 206 | bn_err.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 207 | bn_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 208 | bn_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 209 | bn_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 210 | bn_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
| 211 | bn_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 212 | bn_err.o: bn_err.c | ||
| 213 | bn_exp.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 214 | bn_exp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 215 | bn_exp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 216 | bn_exp.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 217 | bn_exp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 218 | bn_exp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 219 | bn_exp.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_exp.c bn_lcl.h | ||
| 220 | bn_exp2.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 221 | bn_exp2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 222 | bn_exp2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 223 | bn_exp2.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 224 | bn_exp2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 225 | bn_exp2.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 226 | bn_exp2.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_exp2.c bn_lcl.h | ||
| 227 | bn_gcd.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 228 | bn_gcd.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 229 | bn_gcd.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 230 | bn_gcd.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 231 | bn_gcd.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 232 | bn_gcd.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 233 | bn_gcd.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_gcd.c bn_lcl.h | ||
| 234 | bn_gf2m.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 235 | bn_gf2m.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 236 | bn_gf2m.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 237 | bn_gf2m.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 238 | bn_gf2m.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 239 | bn_gf2m.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 240 | bn_gf2m.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_gf2m.c bn_lcl.h | ||
| 241 | bn_kron.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 242 | bn_kron.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 243 | bn_kron.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 244 | bn_kron.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 245 | bn_kron.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 246 | bn_kron.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 247 | bn_kron.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_kron.c bn_lcl.h | ||
| 248 | bn_lib.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 249 | bn_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 250 | bn_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 251 | bn_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 252 | bn_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 253 | bn_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 254 | bn_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_lib.c | ||
| 255 | bn_mod.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 256 | bn_mod.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 257 | bn_mod.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 258 | bn_mod.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 259 | bn_mod.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 260 | bn_mod.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 261 | bn_mod.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_mod.c | ||
| 262 | bn_mont.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 263 | bn_mont.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 264 | bn_mont.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 265 | bn_mont.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 266 | bn_mont.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 267 | bn_mont.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 268 | bn_mont.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_mont.c | ||
| 269 | bn_mpi.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 270 | bn_mpi.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 271 | bn_mpi.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 272 | bn_mpi.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 273 | bn_mpi.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 274 | bn_mpi.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 275 | bn_mpi.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_mpi.c | ||
| 276 | bn_mul.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 277 | bn_mul.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 278 | bn_mul.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 279 | bn_mul.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 280 | bn_mul.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 281 | bn_mul.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 282 | bn_mul.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_mul.c | ||
| 283 | bn_nist.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 284 | bn_nist.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 285 | bn_nist.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 286 | bn_nist.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 287 | bn_nist.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 288 | bn_nist.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 289 | bn_nist.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_nist.c | ||
| 290 | bn_prime.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 291 | bn_prime.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 292 | bn_prime.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 293 | bn_prime.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 294 | bn_prime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 295 | bn_prime.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
| 296 | bn_prime.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 297 | bn_prime.o: ../cryptlib.h bn_lcl.h bn_prime.c bn_prime.h | ||
| 298 | bn_print.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 299 | bn_print.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 300 | bn_print.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 301 | bn_print.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 302 | bn_print.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 303 | bn_print.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 304 | bn_print.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_print.c | ||
| 305 | bn_rand.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 306 | bn_rand.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 307 | bn_rand.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 308 | bn_rand.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 309 | bn_rand.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 310 | bn_rand.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
| 311 | bn_rand.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 312 | bn_rand.o: ../cryptlib.h bn_lcl.h bn_rand.c | ||
| 313 | bn_recp.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 314 | bn_recp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 315 | bn_recp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 316 | bn_recp.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 317 | bn_recp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 318 | bn_recp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 319 | bn_recp.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_recp.c | ||
| 320 | bn_shift.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 321 | bn_shift.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 322 | bn_shift.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 323 | bn_shift.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 324 | bn_shift.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 325 | bn_shift.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 326 | bn_shift.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_shift.c | ||
| 327 | bn_sqr.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 328 | bn_sqr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 329 | bn_sqr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 330 | bn_sqr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 331 | bn_sqr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 332 | bn_sqr.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 333 | bn_sqr.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_sqr.c | ||
| 334 | bn_sqrt.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 335 | bn_sqrt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 336 | bn_sqrt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 337 | bn_sqrt.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 338 | bn_sqrt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 339 | bn_sqrt.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 340 | bn_sqrt.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_sqrt.c | ||
| 341 | bn_word.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 342 | bn_word.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 343 | bn_word.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 344 | bn_word.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 345 | bn_word.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 346 | bn_word.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 347 | bn_word.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_word.c | ||
