blob: 006050e9a8a10ea77b04c00596a58fa07706dd71 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# $NetBSD: cmac.inc,v 1.1.1.1 2018/02/03 22:43:37 christos Exp $
#
# SRCS extracted from src/crypto/dist/openssl/crypto/cmac/Makefile
#
.PATH: ${OPENSSLSRC}/crypto/cmac
CMAC_SRCS = cmac.c cm_ameth.c cm_pmeth.c
SRCS += ${CMAC_SRCS}
.for cryptosrc in ${CMAC_SRCS}
CPPFLAGS.${cryptosrc} = -I${OPENSSLSRC}/crypto/cmac
.endfor
|