summaryrefslogtreecommitdiffstats
path: root/Makefile.inc
diff options
context:
space:
mode:
authorperry <perry@NetBSD.org>2002-01-27 00:35:16 +0000
committerperry <perry@NetBSD.org>2002-01-27 00:35:16 +0000
commit8efcd4ae585dee40ec55cc53bc033c9c943d9690 (patch)
treec64b1af8353509232b783d4c0b6a2ca94becaed8 /Makefile.inc
parent1d70d2eef0af5a7202f071f37329bee1156c632a (diff)
downloadbsdgames-darwin-8efcd4ae585dee40ec55cc53bc033c9c943d9690.tar.gz
bsdgames-darwin-8efcd4ae585dee40ec55cc53bc033c9c943d9690.tar.zst
bsdgames-darwin-8efcd4ae585dee40ec55cc53bc033c9c943d9690.zip
Temporarily add a "MKHIDEGAME" variable that by default blocks the
"install some games into /usr/games/hide" dance. This is ?='ed to "no" at the top of the file. XXX What we should do ultimately is either add this to bsd.own.mk or rename it to MKDM and also have it control whether dm(8) is built at all.
Diffstat (limited to 'Makefile.inc')
-rw-r--r--Makefile.inc6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile.inc b/Makefile.inc
index f75364c7..2ae546a0 100644
--- a/Makefile.inc
+++ b/Makefile.inc
@@ -1,7 +1,9 @@
-# $NetBSD: Makefile.inc,v 1.10 2002/01/27 00:08:49 perry Exp $
+# $NetBSD: Makefile.inc,v 1.11 2002/01/27 00:35:16 perry Exp $
# @(#)Makefile.inc 8.1 (Berkeley) 5/31/93
-.if defined(HIDEGAME) && defined(PROG)
+MKHIDEGAME?= no
+
+.if defined(HIDEGAME) && (MKHIDEGAME!=no) && defined(PROG)
BINDIR= /usr/games/hide
BINGRP= games
.if defined(SETGIDGAME)