Makefile revision 321753
1# $FreeBSD: stable/10/share/examples/tests/tests/plain/Makefile 321753 2017-07-31 03:57:45Z ngie $
2
3# Directory into which the Kyuafile provided by this directory will be
4# installed.
5#
6# This is always a subdirectory of ${TESTSBASE}/.  The remainder of the
7# path has to match the relative path within the source tree in which
8# these files are found modulo the tests/ component at the end.
9#
10# For example: if this Makefile were in src/bin/cp/tests/, its TESTSDIR
11# would point at ${TESTSBASE}/bin/cp/.
12TESTSDIR=	${TESTSBASE}/share/examples/tests/plain
13
14# List of test programs to build.  Note that we can build more than one
15# test from a single directory, and this is expected.
16PLAIN_TESTS_C=	printf_test
17PLAIN_TESTS_SH=	cp_test
18
19# Tell bsd.test.mk that we are providing a hand-crafted Kyuafile in this
20# directory.  We do so because the file in this directory exists for
21# documentation purposes.
22#
23# In general, however, you should NOT define KYUAFILE at all to allow
24# bsd.test.mk auto-generate one for you based on the PLAIN_TESTS_*
25# definitions from above.
26KYUAFILE=	yes
27
28.include <bsd.test.mk>
29