1#	$NetBSD: modes.inc,v 1.4 2014/03/02 08:58:02 nakayama 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
10MODES_SRCS += cbc128.c ctr128.c cts128.c cfb128.c ofb128.c gcm128.c \
11    ccm128.c xts128.c
12
13
14SRCS += ${MODES_SRCS}
15
16.for cryptosrc in ${MODES_SRCS}
17CPPFLAGS.${cryptosrc} = -I${OPENSSLSRC}/crypto/modes ${MODESCPPFLAGS}
18.endfor
19