Allow ``make BINDIR=/foo/games'' to work.

This commit is contained in:
obrien 1998-10-18 09:49:02 +00:00
parent b7b8620d00
commit 13142cebdc
2 changed files with 7 additions and 3 deletions

View File

@ -1,9 +1,10 @@
# @(#)Makefile.inc 8.1 (Berkeley) 5/31/93
BINGRP= games
BINDIR?= /usr/games
.if defined(HIDEGAME)
BINDIR?= /usr/games/hide
GBINDIR:= ${BINDIR}
BINDIR:= ${BINDIR}/hide
BINMODE= 550
.else
BINDIR= /usr/games
.endif

View File

@ -0,0 +1,3 @@
.if exists(${.CURDIR}/../../Makefile.inc)
.include "${.CURDIR}/../../Makefile.inc"
.endif