Module Name: src Committed By: matt Date: Sat Mar 24 01:36:51 UTC 2012
Modified Files: src/tests: Makefile Log Message: Only descend into ipf if MKIPFILTER != "no" To generate a diff of this commit: cvs rdiff -u -r1.36 -r1.37 src/tests/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/tests/Makefile diff -u src/tests/Makefile:1.36 src/tests/Makefile:1.37 --- src/tests/Makefile:1.36 Sat Mar 17 17:15:28 2012 +++ src/tests/Makefile Sat Mar 24 01:36:50 2012 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.36 2012/03/17 17:15:28 jruoho Exp $ +# $NetBSD: Makefile,v 1.37 2012/03/24 01:36:50 matt Exp $ .include <bsd.own.mk> @@ -7,7 +7,7 @@ TESTSDIR= ${TESTSBASE} ATFFILE= yes -SUBDIR= bin dev examples fs games include ipf kernel lib libexec net +SUBDIR= bin dev examples fs games include kernel lib libexec net SUBDIR+= rump sbin sys usr.bin usr.sbin . if ${MKKMOD} != "no" @@ -18,6 +18,10 @@ SUBDIR+= modules SUBDIR+= crypto . endif +. if ${MKIPFILTER} != "no" +SUBDIR+= ipf +. endif + .include <bsd.test.mk> .else