freebsd-dev/sbin/veriexec/Makefile
Simon J. Gerraty eb12b8ea5e Add verifying manifest loader for mac_veriexec
This tool will verify a signed manifest and load contents into
mac_veriexec for storage

Sponsored by:	Juniper Networks
Differential Revision:	D16575
2019-02-26 06:17:23 +00:00

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