NetBSD/tests/Makefile
jmmv 80b30d8cdf Add placeholder test programs for share/mk files.
The main goal of this change is to simplify the further addition of test
cases for the share/mk infrastructure by adding a few placeholder test
programs to the tests tree.

To not leave these test programs empty, I have added a bunch of extremely
simple test cases to them.
2012-08-26 23:03:20 +00:00

39 lines
550 B
Makefile

# $NetBSD: Makefile,v 1.39 2012/08/26 23:03:20 jmmv Exp $
.include <bsd.own.mk>
.if ${MKATF} != "no"
TESTSDIR= ${TESTSBASE}
ATFFILE= yes
SUBDIR= bin dev examples games include kernel lib libexec net
SUBDIR+= sbin sys usr.bin usr.sbin
. if (${MKRUMP} != "no")
SUBDIR+= fs rump
. if ${MKKMOD} != "no"
SUBDIR+= modules
. endif
. endif
. if ${MKCRYPTO} != "no"
SUBDIR+= crypto
. endif
. if ${MKIPFILTER} != "no"
SUBDIR+= ipf
. endif
. if ${MKSHARE} != "no"
SUBDIR+= share
. endif
.include <bsd.test.mk>
.else
.include <bsd.subdir.mk>
.endif