mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-11 06:59:29 -04:00
20 lines
473 B
PHP
20 lines
473 B
PHP
# $NetBSD: modes.inc,v 1.2 2012/07/26 19:58:40 christos Exp $
|
|
#
|
|
# @(#) Copyright (c) 1995 Simon J. Gerraty
|
|
#
|
|
# SRCS extracted from src/crypto/dist/openssl/crypto/modes/Makefile
|
|
#
|
|
|
|
.PATH: ${OPENSSLSRC}/crypto/modes
|
|
|
|
MODES_SRCS += cbc128.c ctr128.c cts128.c cfb128.c ofb128.c gcm128.c \
|
|
ccm128.c xts128.c
|
|
|
|
|
|
SRCS += ${MODES_SRCS}
|
|
|
|
.for cryptosrc in ${MODES_SRCS}
|
|
CPPFLAGS.${cryptosrc} = -I${OPENSSLSRC}/crypto/modes
|
|
.endfor
|
|
CPPFLAGS.e_aes.c = -I${OPENSSLSRC}/crypto/modes
|