eb12b8ea5e
This tool will verify a signed manifest and load contents into mac_veriexec for storage Sponsored by: Juniper Networks Differential Revision: D16575
21 lines
390 B
Makefile
21 lines
390 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= veriexec
|
|
MAN= veriexec.8
|
|
SRCS= \
|
|
veriexec.c \
|
|
manifest_parser.y \
|
|
manifest_lexer.l
|
|
|
|
LIBADD+= veriexec secureboot bearssl
|
|
|
|
NO_SHARED=
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
CFLAGS+= -I${.CURDIR} ${XCFLAGS.${.TARGET:T:R}:U}
|
|
|
|
XCFLAGS.manifest_lexer+= -Wno-missing-variable-declarations \
|
|
-Wno-unneeded-internal-declaration
|
|
XCFLAGS.manifest_parser+= -Wno-missing-variable-declarations
|