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