]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - share/examples/tests/tests/plain/Makefile
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / share / examples / tests / tests / plain / Makefile
1 # $FreeBSD$
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/.
14 TESTSDIR=       ${TESTSBASE}/share/examples/tests/plain
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.
18 PLAIN_TESTS_C=  printf_test
19 PLAIN_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 PLAIN_TESTS_*
27 # definitions from above.
28 KYUAFILE=       yes
29
30 .include <bsd.test.mk>