modes.inc revision 1.1 1 # $NetBSD: modes.inc,v 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/modes/Makefile
6 #
7
8 .PATH: ${OPENSSLSRC}/crypto/modes
9
10 MODES_SRCS += cbc128.c ctr128.c cts128.c cfb128.c ofb128.c gcm128.c \
11 ccm128.c xts128.c wrap128.c
12
13
14 SRCS += ${MODES_SRCS}
15
16 .for cryptosrc in ${MODES_SRCS}
17 CPPFLAGS.${cryptosrc} = -I${OPENSSLSRC}/crypto/modes ${MODESCPPFLAGS}
18 .endfor
19