blob: 2e3b04b39de335852830d5efcce8448fb89757d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# $NetBSD: bf.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/bf/Makefile
#
.PATH: ${OPENSSLSRC}/crypto/bf
.if !defined(BF_SRCS)
BF_SRCS = bf_enc.c
.endif
BF_SRCS += bf_skey.c bf_ecb.c bf_cfb64.c bf_ofb64.c
SRCS += ${BF_SRCS}
.for cryptosrc in ${BF_SRCS}
CPPFLAGS.${cryptosrc} = -I${OPENSSLSRC}/crypto/bf
.endfor
|