NetBSD/tests/modules/Makefile
jmmv 256b5bd1a9 Add tests for load-time parameter passing to modules, both at the syscall
level through modctl(2) and at the user level through the modload(8)
utility.
2008-03-02 11:22:10 +00:00

25 lines
591 B
Makefile

# $NetBSD: Makefile,v 1.2 2008/03/02 11:22:10 jmmv Exp $
.include <bsd.own.mk>
TESTSDIR= ${TESTSBASE}/modules
# Ideally this test could be in the parent Makefile, which could not descend
# into this directory at all. Unfortunately, the etc/mtree/NetBSD.dist file
# creates the 'modules' subdirectory unconditionally, which if left empty
# will confuse atf-run. Therefore we must install, at the very least, the
# Atffile into it.
.if ${MKMODULAR} != no
TESTS_CXX= t_modctl
LDADD= -lprop
TESTS_SH= t_modload
SUBDIR= k_helper
.endif
.include <bsd.subdir.mk>
.include <bsd.test.mk>