Module Name:    src
Committed By:   mrg
Date:           Tue Dec 15 03:01:48 UTC 2009

Modified Files:
        src/tests: Makefile

Log Message:
avoid most of the SUBDIRs if MKATF == "no".


To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 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.18 src/tests/Makefile:1.19
--- src/tests/Makefile:1.18	Thu Nov  5 17:34:25 2009
+++ src/tests/Makefile	Tue Dec 15 03:01:48 2009
@@ -1,11 +1,16 @@
-# $NetBSD: Makefile,v 1.18 2009/11/05 17:34:25 dyoung Exp $
+# $NetBSD: Makefile,v 1.19 2009/12/15 03:01:48 mrg Exp $
 
 .include <bsd.own.mk>
 
-SUBDIR=	crypto fs games ipf kernel lib libexec net rump syscall util
+SUBDIR=	crypto games ipf util
+  
+.if ${MKATF} != "no"
+SUBDIR+= fs net kernel lib libexec rump syscall 
 
-.if ${MACHINE} != "evbppc" && ${MKKMOD} != "no"
+. if ${MACHINE} != "evbppc" && ${MKKMOD} != "no"
 SUBDIR+= modules
+. endif
+
 .endif
 
 TESTSDIR=	${TESTSBASE}

Reply via email to