73734d6eb1
Without this "SUBDIR.${MK_TESTS}=tests" would always expand to "SUBDIR.=tests" resulting in the tests not being built. Sponsored by: DARPA
23 lines
254 B
Makefile
23 lines
254 B
Makefile
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
.include <src.opts.mk>
|
|
|
|
OPENBSMDIR=${SRCTOP}/contrib/openbsm
|
|
.PATH: ${OPENBSMDIR}/bin/praudit
|
|
|
|
CFLAGS+= -I${OPENBSMDIR}
|
|
|
|
PROG= praudit
|
|
MAN= praudit.1
|
|
|
|
WARNS?= 3
|
|
|
|
LIBADD= bsm
|
|
|
|
HAS_TESTS=
|
|
SUBDIR.${MK_TESTS}+= tests
|
|
|
|
.include <bsd.prog.mk>
|