NetBSD/lib/libcrypto/bf.inc

19 lines
416 B
PHP
Raw Normal View History

2008-05-11 01:44:12 +04:00
# $NetBSD: bf.inc,v 1.10 2008/05/10 21:44:12 christos Exp $
#
# @(#) Copyright (c) 1995 Simon J. Gerraty
#
# SRCS extracted from src/crypto/dist/openssl/crypto/bf/Makefile
#
.PATH: ${OPENSSLSRC}/crypto/bf
2008-05-11 01:30:06 +04:00
.if !defined(BF_SRCS)
2008-05-11 01:44:12 +04:00
BF_SRCS = bf_enc.c
2008-05-11 01:30:06 +04:00
.endif
2008-05-11 01:44:12 +04:00
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