summaryrefslogtreecommitdiff
path: root/crypto/external/bsd/openssl/lib/libcrypto/cast.inc
blob: 054e452a5857b407c2508c22fb4a98d064382175 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#	$NetBSD: cast.inc,v 1.2 2023/05/06 17:07:22 christos Exp $

.PATH:	${OPENSSLSRC}/crypto/cast

CAST_SRCS ?= c_enc.c

CAST_SRCS += \
c_cfb64.c \
c_ecb.c \
c_ofb64.c \
c_skey.c \

SRCS += ${CAST_SRCS}

.for cryptosrc in ${CAST_SRCS}
CPPFLAGS.${cryptosrc} += -I${OPENSSLSRC}/crypto/cast ${CASTCPPFLAGS}
.endfor