Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/tests avoid most of the SUBDIRs if MKATF == "no".



details:   https://anonhg.NetBSD.org/src/rev/c3cfe28bf901
branches:  trunk
changeset: 750059:c3cfe28bf901
user:      mrg <mrg%NetBSD.org@localhost>
date:      Tue Dec 15 03:01:48 2009 +0000

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

diffstat:

 tests/Makefile |  11 ++++++++---
 1 files changed, 8 insertions(+), 3 deletions(-)

diffs (23 lines):

diff -r 024296ce99dd -r c3cfe28bf901 tests/Makefile
--- a/tests/Makefile    Tue Dec 15 03:01:15 2009 +0000
+++ b/tests/Makefile    Tue Dec 15 03:01:48 2009 +0000
@@ -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}



Home | Main Index | Thread Index | Old Index