diff --git a/gnu/Makefile b/gnu/Makefile index 490e05ae4f0d..c48e2514f0b3 100644 --- a/gnu/Makefile +++ b/gnu/Makefile @@ -1,6 +1,5 @@ # @(#)Makefile 5.33.1.1 (Berkeley) 5/6/91 -SUBDIR= bc chess cpio cvs dc diff diff3 gas gawk gcc2 gdb grep groff gzip \ - ld libg++ libmalloc libregex man patch pr rcs sdiff sort tar uucp +SUBDIR= games lib libexec usr.bin .include diff --git a/gnu/games/Makefile b/gnu/games/Makefile new file mode 100644 index 000000000000..4a7577e53ef8 --- /dev/null +++ b/gnu/games/Makefile @@ -0,0 +1,5 @@ +# $Id$ + +SUBDIR= chess + +.include diff --git a/gnu/games/Makefile.inc b/gnu/games/Makefile.inc new file mode 100644 index 000000000000..4437a8428bef --- /dev/null +++ b/gnu/games/Makefile.inc @@ -0,0 +1,9 @@ +# $Id$ + +BINOWN?= games +.if defined(HIDEGAME) +BINDIR?= /usr/games/hide +BINMODE?= 4700 +.else +BINDIR?= /usr/games +.endif