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