]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - Makefile.inc
expand the internal consistency checks in truedirec() to avoid
[bsdgames-darwin.git] / Makefile.inc
index 68a953cf8c437549b465e64c64a7edf0860d3b36..48090e05154f7495f59593b7f9a89185ba0d4c11 100644 (file)
@@ -1,16 +1,26 @@
-#      $NetBSD: Makefile.inc,v 1.9 1997/11/20 00:12:30 mrg Exp $
+#      $NetBSD: Makefile.inc,v 1.16 2014/03/23 00:17:40 dholland Exp $
 #      @(#)Makefile.inc        8.1 (Berkeley) 5/31/93
 
-.if defined(HIDEGAME) && defined(PROG)
-BINDIR?=       /usr/games/hide
-BINGRP?=       games
+MKHIDEGAME?=   no
+
+.if defined(HIDEGAME) && (${MKHIDEGAME} != no) && defined(PROG)
+BINDIR=                /usr/games/hide
+BINGRP=                games
 .if defined(SETGIDGAME)
-BINMODE?=      2550
+USE_FORT?=     yes
+BINMODE=       2550
 .else
-BINMODE?=      550
+BINMODE      550
 .endif
 SYMLINKS+=     dm /usr/games/${PROG}
 .else
-BINDIR?=       /usr/games
+BINDIR=                /usr/games
+.if defined(SETGIDGAME)
+BINGRP=                games
+BINMODE=       2555
+.endif
 .endif
-WARNS?=                1
+# Note: do not bother with WARNS=6 until -Wconversion is either
+# removed from WARNS=6 or rendered useful by improving gcc; as it is
+# (with gcc48) it produces buckets of drivel.
+WARNS?=                5