opnsense-src/lib/libsecureboot/tests/Makefile
Simon J. Gerraty 02a4bc589c Allow for reproducible build
Use SOURCE_DATE_EPOCH for BUILD_UTC if MK_REPRODUCIBLE_BUILD is yes.
Default SOURCE_DATE_EPOCH to 2019-01-01

Reviewed by:	emaste
Sponsored by:	Juniper Networks
Differential Revision:	https://reviews.freebsd.org/D19464
2019-03-04 22:04:21 +00:00

20 lines
334 B
Makefile

# $FreeBSD$
.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
.include "../Makefile.libsa.inc"
BRSSL_CFLAGS := ${BRSSL_CFLAGS:N-DNO_STDIO}
XCFLAGS.verify_file += -DSOPEN_MAX=64
.include <bsd.prog.mk>