blob: 54f734690e7fcab48f30d43f87c198ad2a884b2d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# $NetBSD: cmac.inc,v 1.1 2011/06/05 23:09:50 spz 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
|