mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-09 22:20:19 -04:00
19 lines
442 B
PHP
19 lines
442 B
PHP
# $NetBSD: modes.inc,v 1.4 2014/03/02 08:58:02 nakayama 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 ${MODESCPPFLAGS}
|
|
.endfor
|