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