1#	$NetBSD: modes.inc,v 1.3 2013/02/18 21:15:25 riastradh 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
18.endfor
19