1#	$NetBSD: bf.inc,v 1.1 2009/07/19 23:30:42 christos Exp $
2#
3#	@(#) Copyright (c) 1995 Simon J. Gerraty
4#
5#	SRCS extracted from src/crypto/dist/openssl/crypto/bf/Makefile
6#
7
8.PATH:	${OPENSSLSRC}/crypto/bf
9
10.if !defined(BF_SRCS)
11BF_SRCS = bf_enc.c
12.endif
13BF_SRCS += bf_skey.c bf_ecb.c bf_cfb64.c bf_ofb64.c
14SRCS += ${BF_SRCS}
15
16.for cryptosrc in ${BF_SRCS}
17CPPFLAGS.${cryptosrc} = -I${OPENSSLSRC}/crypto/bf
18.endfor
19