blob: 7a55c0793efc3265ae6bac4e87f6678b7a3fd351 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# $NetBSD: chacha.inc,v 1.1.1.1 2023/04/18 14:19:03 christos Exp $
#
# @(#) Copyright (c) 1995 Simon J. Gerraty
#
# SRCS extracted from src/crypto/dist/openssl/crypto/chacha/Makefile
#
.PATH: ${OPENSSLSRC}/crypto/chacha
CHACHA_SRCS ?= \
chacha_enc.c
SRCS += ${CHACHA_SRCS}
.for cryptosrc in ${CHACHA_SRCS}
CPPFLAGS.${cryptosrc} = -I${OPENSSLSRC}/crypto/chacha ${CHACHA_CPPFLAGS}
.endfor
|