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