mirror of
https://github.com/opnsense/src.git
synced 2026-02-28 04:10:49 -05:00
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
20 lines
334 B
Makefile
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>
|