Home | History | Annotate | Line # | Download | only in libcrypto
      1 #	$NetBSD: bf.inc,v 1.1.1.1 2018/02/03 22:43:37 christos Exp $
      2 #
      3 #	@(#) Copyright (c) 1995 Simon J. Gerraty
      4 #
      5 #	SRCS extracted from src/crypto/dist/openssl/crypto/bf/Makefile
      6 #
      7 
      8 .PATH:	${OPENSSLSRC}/crypto/bf
      9 
     10 .if !defined(BF_SRCS)
     11 BF_SRCS = bf_enc.c
     12 .endif
     13 BF_SRCS += bf_skey.c bf_ecb.c bf_cfb64.c bf_ofb64.c
     14 SRCS += ${BF_SRCS}
     15 
     16 .for cryptosrc in ${BF_SRCS}
     17 CPPFLAGS.${cryptosrc} = -I${OPENSSLSRC}/crypto/bf
     18 .endfor
     19