Module Name: src
Committed By: maya
Date: Sat Apr 6 11:54:25 UTC 2019
Added Files:
src/tests/modules/ufetchstore: Makefile
Log Message:
Add missing Makefile.
Grabbed from thorpej's github repository.
XXX not actually built tested...
To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 src/tests/modules/ufetchstore/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Added files:
Index: src/tests/modules/ufetchstore/Makefile
diff -u /dev/null src/tests/modules/ufetchstore/Makefile:1.1
--- /dev/null Sat Apr 6 11:54:25 2019
+++ src/tests/modules/ufetchstore/Makefile Sat Apr 6 11:54:25 2019
@@ -0,0 +1,17 @@
+# $NetBSD: Makefile,v 1.1 2019/04/06 11:54:25 maya Exp $
+
+.include <bsd.own.mk>
+
+TESTSDIR= ${TESTSBASE}/modules
+CPPFLAGS+= -D_KERNTYPES -I${.CURDIR}/module
+
+# 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.
+TESTS_C= t_ufetchstore
+
+SUBDIR+= module
+
+.include <bsd.test.mk>