freebsd-dev/tests/sys/netpfil/Makefile
Kristof Provost cb625c1e17 pf tests: Do not build or install if pf is not enabled
Do not build or install pf tests if WITHOUT_PF is set. This fixes the build
failure with WITHOUT_PF=yes.

Reported by:	Vladimir Zakharov <zakharov.vv@gmail.com>
2018-04-10 12:45:34 +00:00

12 lines
146 B
Makefile

# $FreeBSD$
.include <src.opts.mk>
TESTSDIR= ${TESTSBASE}/sys/netpfil
.if ${MK_PF} != "no"
TESTS_SUBDIRS+= pf
.endif
.include <bsd.test.mk>