diff options
author | jmmv <jmmv@FreeBSD.org> | 2014-04-28 04:20:14 +0000 |
---|---|---|
committer | jmmv <jmmv@FreeBSD.org> | 2014-04-28 04:20:14 +0000 |
commit | 797209d767d2ab0f25d4df1b759273052ae7b6d4 (patch) | |
tree | 75b9c0126658bfd0f8c3a40cc52ce8056da937c4 /games | |
parent | 5b89692b00a51ee27c4f004b3c954b0b123bf551 (diff) | |
download | FreeBSD-src-797209d767d2ab0f25d4df1b759273052ae7b6d4.zip FreeBSD-src-797209d767d2ab0f25d4df1b759273052ae7b6d4.tar.gz |
MFC r264741: Add placeholder Kyuafiles for various top-level hierarchies.
This is "make tinderbox" clean.
Diffstat (limited to 'games')
-rw-r--r-- | games/Makefile | 10 | ||||
-rw-r--r-- | games/tests/Makefile | 10 |
2 files changed, 18 insertions, 2 deletions
diff --git a/games/Makefile b/games/Makefile index 214a394..716a786 100644 --- a/games/Makefile +++ b/games/Makefile @@ -1,6 +1,7 @@ -# @(#)Makefile 8.2 (Berkeley) 3/31/94 # $FreeBSD$ +.include <bsd.own.mk> + SUBDIR= \ bcd \ caesar \ @@ -12,6 +13,11 @@ SUBDIR= \ pom \ ppt \ primes \ - random + random \ + ${_tests} + +.if ${MK_TESTS} != "no" +_tests= tests +.endif .include <bsd.subdir.mk> diff --git a/games/tests/Makefile b/games/tests/Makefile new file mode 100644 index 0000000..45f93d9 --- /dev/null +++ b/games/tests/Makefile @@ -0,0 +1,10 @@ +# $FreeBSD$ + +.include <bsd.own.mk> + +TESTSDIR= ${TESTSBASE}/games + +.PATH: ${.CURDIR:H:H}/tests +KYUAFILE= yes + +.include <bsd.test.mk> |