Home | History | Annotate | Line # | Download | only in libcrypto
      1 #	$NetBSD: cast.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/cast/Makefile
      6 #
      7 
      8 .PATH:	${OPENSSLSRC}/crypto/cast
      9 
     10 .if !defined(CAST_SRCS)
     11 CAST_SRCS = c_enc.c
     12 .endif
     13 
     14 CAST_SRCS += c_skey.c c_ecb.c c_cfb64.c c_ofb64.c
     15 SRCS += ${CAST_SRCS}
     16 
     17 .for cryptosrc in ${CAST_SRCS}
     18 CPPFLAGS.${cryptosrc} = -I${OPENSSLSRC}/crypto/cast
     19 .endfor
     20