2007-12-10 01:44:12 +03:00
|
|
|
# $NetBSD: aes.inc,v 1.3 2007/12/09 22:44:12 adrianp Exp $
|
2003-07-24 18:16:30 +04:00
|
|
|
#
|
|
|
|
# @(#) Copyright (c) 1995 Simon J. Gerraty
|
|
|
|
#
|
2007-12-10 01:44:12 +03:00
|
|
|
# SRCS extracted from src/crypto/dist/openssl/crypto/aes/Makefile
|
2003-07-24 18:16:30 +04:00
|
|
|
#
|
|
|
|
|
|
|
|
.PATH: ${OPENSSLSRC}/crypto/aes
|
|
|
|
|
|
|
|
|
2006-03-17 23:47:45 +03:00
|
|
|
AES_SRCS = aes_core.c aes_misc.c aes_ecb.c aes_cbc.c aes_cfb.c aes_ofb.c aes_ctr.c
|
|
|
|
SRCS += ${AES_SRCS}
|
|
|
|
|
|
|
|
.for cryptosrc in ${AES_SRCS}
|
|
|
|
CPPFLAGS.${cryptosrc} = -I${OPENSSLSRC}/crypto/aes
|
|
|
|
.endfor
|