summaryrefslogtreecommitdiff
path: root/crypto/external/bsd/openssl/lib/libcrypto/bf.inc
blob: 17e15f0ed3db43c006bc861623f0a3b8ed7e3e62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#	$NetBSD: bf.inc,v 1.3 2023/05/25 15:52:28 riastradh Exp $

.PATH:	${OPENSSLSRC}/crypto/bf

BF_SRCS ?= bf_enc.c

BF_SRCS += \
bf_cfb64.c \
bf_ecb.c \
bf_ofb64.c \
bf_skey.c \

SRCS += ${BF_SRCS}

.for cryptosrc in ${BF_SRCS}
CPPFLAGS.${cryptosrc} += -I${OPENSSLSRC}/crypto/bf ${BFCPPFLAGS}
.endfor