blob: 97ea7787700031b10b941c6fa6b672405c506304 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# $NetBSD: hmac.inc,v 1.2 2023/05/06 17:07:23 christos Exp $
.PATH: ${OPENSSLSRC}/crypto/hmac
HMAC_SRCS += \
hmac.c \
SRCS += ${HMAC_SRCS}
.for cryptosrc in ${HMAC_SRCS}
CPPFLAGS.${cryptosrc} += -I${OPENSSLSRC}/crypto/hmac ${HMACCPPFLAGS}
.endfor
|