]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - share/examples/tests/tests/atf/Makefile
MFC Note: ${FILES} documentation change omitted since r299094 will
[FreeBSD/stable/10.git] / share / examples / tests / tests / atf / Makefile
1 # $FreeBSD$
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/.
12 TESTSDIR=       ${TESTSBASE}/share/examples/tests/atf
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.
16 ATF_TESTS_C=    printf_test
17 ATF_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 ATF_TESTS_*
25 # definitions from above.
26 KYUAFILE=       yes
27
28 .include <bsd.test.mk>