Makefile revision 1.12
1# $NetBSD: Makefile,v 1.12 2016/01/23 21:22:49 christos Exp $ 2 3.include <bsd.own.mk> 4 5TESTSDIR= ${TESTSBASE}/modules 6CPPFLAGS+= -D_KERNTYPES 7 8# Ideally this test could be in the parent Makefile, which could not descend 9# into this directory at all. Unfortunately, the etc/mtree/NetBSD.dist file 10# creates the 'modules' subdirectory unconditionally, which if left empty 11# will confuse atf-run. Therefore we must install, at the very least, the 12# Atffile into it. 13TESTS_C= t_modctl 14TESTS_C+= t_builtin 15LDADD= -lprop 16LDADD+= -lrumpfs_kernfs -lrumpvfs -lrump -lrumpuser -lrump -lpthread 17 18TESTS_SH= t_abi_uvm 19TESTS_SH+= t_modload 20 21SUBDIR= k_helper 22SUBDIR+= k_helper2 23SUBDIR+= k_helper3 24SUBDIR+= k_uvm 25 26.include <bsd.test.mk> 27