1#	$NetBSD: bn.inc,v 1.1 2009/07/19 23:30:43 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)
11BN_SRCS = bn_asm.c
12.endif
13
14BN_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_const.c
19SRCS += ${BN_SRCS}
20
21.for cryptosrc in ${BN_SRCS}
22CPPFLAGS.${cryptosrc} = -I${OPENSSLSRC}/crypto/bn
23.endfor
24