xref: /freebsd/lib/libsecureboot/tests/Makefile (revision dbfb4063ae95b956a2b0021c37c9a8be4c2e4393)
1# $FreeBSD$
2
3.include <src.opts.mk>
4
5PROG= tvo
6
7SRCS+= tvo.c
8CFLAGS+= -DUNIT_TEST -g -O0
9
10LIBADD+= bearssl
11MAN=
12NO_SHARED=
13
14# we want to test verify_file api too
15# which requires a kludge or two
16.include "../Makefile.libsa.inc"
17BRSSL_CFLAGS := ${BRSSL_CFLAGS:N-DNO_STDIO}
18XCFLAGS.verify_file += -DSOPEN_MAX=64
19
20.include <bsd.prog.mk>
21