diff options
| author | Rodney W. Grimes <rgrimes@FreeBSD.org> | 1994-01-30 00:55:54 +0000 |
|---|---|---|
| committer | Rodney W. Grimes <rgrimes@FreeBSD.org> | 1994-01-30 00:55:54 +0000 |
| commit | 3f6a562175d9f466af53cffa50b11ce76495e307 (patch) | |
| tree | fca615e6e458344156bca03f4196e02c5201af70 /gnu | |
| parent | ca4dad266fd28f1695e88684051fa505cba7dcbe (diff) | |
Notes
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/Makefile | 3 | ||||
| -rw-r--r-- | gnu/games/Makefile | 5 | ||||
| -rw-r--r-- | gnu/games/Makefile.inc | 9 |
3 files changed, 15 insertions, 2 deletions
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 <bsd.subdir.mk> 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 <bsd.subdir.mk> 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 |
