Home | History | Annotate | Line # | Download | only in libcrypto
bn.inc revision 1.1
      1 #	$NetBSD: bn.inc,v 1.1 2018/02/03 22:43:37 christos Exp $
      2 #
      3 #	@(#) Copyright (c) 1995 Simon J. Gerraty
      4 #
      5 #	SRCS extracted from src/crypto/dist/openssl/crypto/bn/Makefile
      6 #
      7 
      8 .PATH:	${OPENSSLSRC}/crypto/bn
      9 
     10 .if !defined(BN_SRCS)
     11 BN_SRCS = bn_asm.c
     12 .endif
     13 
     14 BN_SRCS += bn_add.c bn_div.c bn_exp.c bn_lib.c bn_ctx.c bn_mod.c \
     15 	bn_print.c bn_rand.c bn_shift.c bn_word.c bn_blind.c bn_mul.c \
     16 	bn_kron.c bn_sqrt.c bn_gcd.c bn_prime.c bn_err.c bn_sqr.c \
     17 	bn_recp.c bn_mont.c bn_mpi.c bn_exp2.c bn_nist.c bn_gf2m.c bn_depr.c \
     18 	bn_nist.c bn_const.c bn_x931p.c rsaz_exp.c
     19 SRCS += ${BN_SRCS}
     20 
     21 .for cryptosrc in ${BN_SRCS}
     22 CPPFLAGS.${cryptosrc} = -I${OPENSSLSRC}/crypto/bn
     23 .endfor
     24