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