1 # $NetBSD: Makefile.inc,v 1.16 2014/03/23 00:17:40 dholland Exp $ 2 # @(#)Makefile.inc 8.1 (Berkeley) 5/31/93 3 4 MKHIDEGAME?= no 5 6 .if defined(HIDEGAME) && (${MKHIDEGAME} != no) && defined(PROG) 7 BINDIR= /usr/games/hide 8 BINGRP= games 9 .if defined(SETGIDGAME) 10 USE_FORT?= yes 11 BINMODE= 2550 12 .else 13 BINMODE= 550 14 .endif 15 SYMLINKS+= dm /usr/games/${PROG} 16 .else 17 BINDIR= /usr/games 18 .if defined(SETGIDGAME) 19 BINGRP= games 20 BINMODE= 2555 21 .endif 22 .endif 23 # Note: do not bother with WARNS=6 until -Wconversion is either 24 # removed from WARNS=6 or rendered useful by improving gcc; as it is 25 # (with gcc48) it produces buckets of drivel. 26 WARNS?= 5 27