mirror of
https://github.com/vattam/BSDGames.git
synced 2025-12-20 10:54:48 +00:00
'debian_version_2_14-8'. git-svn-id: file:///srv/svn/joey/bsdgames-tags/debian_version_2_14-8@5231 a4a2c43b-8ac3-0310-8836-e0e880c912e2
23 lines
423 B
Makefile
23 lines
423 B
Makefile
# $NetBSD: Makefile.inc,v 1.11 2002/01/27 00:35:16 perry 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)
|
|
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?= 1
|