0819c9f89b
No Minix specific changes needed. Change-Id: I6826d660c60a9e01676e21ef9b95d27e64a67aa5
23 lines
446 B
Makefile
23 lines
446 B
Makefile
# $NetBSD: Makefile.inc,v 1.15 2012/06/19 05:46:08 dholland Exp $
|
|
# @(#)Makefile.inc 8.1 (Berkeley) 5/31/93
|
|
|
|
MKHIDEGAME?= no
|
|
|
|
.if defined(HIDEGAME) && (${MKHIDEGAME} != no) && defined(PROG)
|
|
BINDIR= /usr/games/hide
|
|
BINGRP= games
|
|
.if defined(SETGIDGAME)
|
|
USE_FORT?= yes
|
|
BINMODE= 2550
|
|
.else
|
|
BINMODE= 550
|
|
.endif
|
|
SYMLINKS+= dm /usr/games/${PROG}
|
|
.else
|
|
BINDIR= /usr/games
|
|
.if defined(SETGIDGAME)
|
|
BINGRP= games
|
|
BINMODE= 2555
|
|
.endif
|
|
.endif
|
|
WARNS?= 5
|