1 # $NetBSD: aes.inc,v 1.1.1.2 2023/04/18 14:19:03 christos Exp $ 2 # 3 # @(#) Copyright (c) 1995 Simon J. Gerraty 4 # 5 # SRCS extracted from src/crypto/dist/openssl/crypto/aes/Makefile 6 # 7 8 .PATH: ${OPENSSLSRC}/crypto/aes 9 10 AES_SRCS ?= aes_core.c aes_cbc.c 11 12 AES_SRCS += \ 13 aes_cfb.c \ 14 aes_ecb.c \ 15 aes_ige.c \ 16 aes_misc.c \ 17 aes_ofb.c \ 18 aes_wrap.c 19 20 SRCS += ${AES_SRCS} 21 22 .for cryptosrc in ${AES_SRCS} 23 CPPFLAGS.${cryptosrc} += -I${OPENSSLSRC}/crypto/aes ${AESCPPFLAGS} 24 .endfor 25 26