2008-05-11 01:29:31 +04:00
|
|
|
# $NetBSD: aes.inc,v 1.6 2008/05/10 21:29:31 christos 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
|
|
|
|
|
2008-05-11 00:14:20 +04:00
|
|
|
.if !defined(AES_SRCS)
|
|
|
|
AES_SRCS= aes_core.c aes_cbc.c
|
|
|
|
.endif
|
2003-07-24 18:16:30 +04:00
|
|
|
|
2008-05-11 00:14:20 +04:00
|
|
|
AES_SRCS += aes_misc.c aes_cfb.c aes_ofb.c \
|
2008-05-11 01:29:31 +04:00
|
|
|
aes_ctr.c aes_wrap.c aes_ige.c aes_ecb.c
|
2006-03-17 23:47:45 +03:00
|
|
|
SRCS += ${AES_SRCS}
|
|
|
|
|
|
|
|
.for cryptosrc in ${AES_SRCS}
|
|
|
|
CPPFLAGS.${cryptosrc} = -I${OPENSSLSRC}/crypto/aes
|
|
|
|
.endfor
|
2008-05-11 00:14:20 +04:00
|
|
|
|