mirror of
https://github.com/opnsense/src.git
synced 2026-02-11 14:55:36 -05:00
20 lines
351 B
Makefile
20 lines
351 B
Makefile
|
|
.include <src.opts.mk>
|
|
|
|
PROG= tvo
|
|
|
|
SRCS+= tvo.c
|
|
CFLAGS+= -DUNIT_TEST -g -O0
|
|
|
|
LIBADD+= bearssl
|
|
MAN=
|
|
NO_SHARED=
|
|
|
|
# we want to test verify_file api too
|
|
# which requires a kludge or two
|
|
MK_LOADER_EFI_SECUREBOOT= no
|
|
.include "../Makefile.libsa.inc"
|
|
BRSSL_CFLAGS := ${BRSSL_CFLAGS:N-DNO_STDIO}
|
|
XCFLAGS.verify_file += -DSOPEN_MAX=64
|
|
|
|
.include <bsd.prog.mk>
|