1 # $NetBSD: Makefile,v 1.44 2013/02/25 00:33:19 jmmv Exp $ 2 3 .include <bsd.own.mk> 4 5 .if ${MKATF} != "no" 6 7 TESTSDIR= ${TESTSBASE} 8 9 TESTS_SUBDIRS= bin dev games include kernel lib libexec net 10 TESTS_SUBDIRS+= sbin sys usr.bin usr.sbin 11 12 . if (${MKRUMP} != "no") 13 TESTS_SUBDIRS+= fs rump 14 15 . if ${MKKMOD} != "no" 16 TESTS_SUBDIRS+= modules 17 . endif 18 . endif 19 20 . if ${MKCRYPTO} != "no" 21 TESTS_SUBDIRS+= crypto 22 . endif 23 24 . if ${MKIPFILTER} != "no" 25 TESTS_SUBDIRS+= ipf 26 . endif 27 28 . if ${MKSHARE} != "no" 29 TESTS_SUBDIRS+= share 30 . endif 31 32 . if ${MKATF} != "no" 33 ATFFILE_EXTRA_SUBDIRS+= atf 34 . endif 35 36 . if ${MKKYUA} != "no" 37 ATFFILE_EXTRA_SUBDIRS+= kyua-atf-compat kyua-cli kyua-testers 38 . endif 39 40 .include <bsd.test.mk> 41 42 .else 43 44 .include <bsd.subdir.mk> 45 .endif 46