1 # $NetBSD: modes.inc,v 1.1.1.2 2023/04/18 14:19:04 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 += \ 11 cbc128.c \ 12 ccm128.c \ 13 cfb128.c \ 14 ctr128.c \ 15 cts128.c \ 16 gcm128.c \ 17 ocb128.c \ 18 ofb128.c \ 19 wrap128.c \ 20 xts128.c 21 22 23 SRCS += ${MODES_SRCS} 24 25 .for cryptosrc in ${MODES_SRCS} 26 CPPFLAGS.${cryptosrc} = -I${OPENSSLSRC}/crypto/modes ${MODESCPPFLAGS} 27 .endfor 28