poly1305.inc revision 1.1 1 # $NetBSD: poly1305.inc,v 1.1 2023/04/18 14:19:04 christos Exp $
2 #
3 # @(#) Copyright (c) 1995 Simon J. Gerraty
4 #
5 # SRCS extracted from src/crypto/dist/openssl/crypto/poly1305/Makefile
6 #
7
8 .PATH: ${OPENSSLSRC}/crypto/poly1305
9
10
11 POLY1305_SRCS += \
12 poly1305.c \
13 poly1305_ameth.c \
14 poly1305_pmeth.c
15
16 SRCS += ${POLY1305_SRCS}
17
18 .for cryptosrc in ${POLY1305_SRCS}
19 CPPFLAGS.${cryptosrc} = -I${OPENSSLSRC}/crypto/poly1305 ${POLY1305_CPPFLAGS}
20 .endfor
21