blob: 3280bc4015f55d28c4e974c9709c5a0bef67a831 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# $NetBSD: cast.inc,v 1.1.1.1 2018/02/03 22:43:37 christos Exp $
#
# @(#) Copyright (c) 1995 Simon J. Gerraty
#
# SRCS extracted from src/crypto/dist/openssl/crypto/cast/Makefile
#
.PATH: ${OPENSSLSRC}/crypto/cast
.if !defined(CAST_SRCS)
CAST_SRCS = c_enc.c
.endif
CAST_SRCS += c_skey.c c_ecb.c c_cfb64.c c_ofb64.c
SRCS += ${CAST_SRCS}
.for cryptosrc in ${CAST_SRCS}
CPPFLAGS.${cryptosrc} = -I${OPENSSLSRC}/crypto/cast
.endfor
|