blob: 5d24698defb80b3a987a43845a0b6b070963fc6c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# $NetBSD: siphash.inc,v 1.1.1.1 2023/04/18 14:19:04 christos Exp $
#
# SRCS extracted from src/crypto/dist/openssl/crypto/siphash
#
SIPHASH=${OPENSSLSRC}/crypto/siphash
.PATH: ${SIPHASH}
SIPHASH_SRCS += \
siphash.c \
siphash_ameth.c \
siphash_pmeth.c
SRCS += ${SIPHASH_SRCS}
.for cryptosrc in ${SIPHASH_SRCS}
CPPFLAGS.${cryptosrc} = -I${SIPHASH} ${SIPHASHCPPFLAGS}
.endfor
|