summaryrefslogtreecommitdiffstats
path: root/boggle
diff options
context:
space:
mode:
authorthorpej <thorpej@NetBSD.org>2002-03-05 19:17:44 +0000
committerthorpej <thorpej@NetBSD.org>2002-03-05 19:17:44 +0000
commitcabe7ad7ce7fbb2babd1cd906381ec917b5e4a07 (patch)
tree63b9d95d4cf67f1e0f5f67f4987373dc1ce8536b /boggle
parent0b261a554056674d38c679abb87087d816f00d66 (diff)
downloadbsdgames-darwin-cabe7ad7ce7fbb2babd1cd906381ec917b5e4a07.tar.gz
bsdgames-darwin-cabe7ad7ce7fbb2babd1cd906381ec917b5e4a07.tar.zst
bsdgames-darwin-cabe7ad7ce7fbb2babd1cd906381ec917b5e4a07.zip
There is no need to explcitly use ${.OBJDIR}; it's implied.
Diffstat (limited to 'boggle')
-rw-r--r--boggle/Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/boggle/Makefile b/boggle/Makefile
index 4543e37f..f5cc0774 100644
--- a/boggle/Makefile
+++ b/boggle/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.17 2000/12/30 17:51:26 sommerfeld Exp $
+# $NetBSD: Makefile,v 1.18 2002/03/05 19:17:44 thorpej Exp $
# @(#)Makefile 8.1 (Berkeley) 6/11/93
.include <bsd.own.mk>
@@ -10,7 +10,7 @@ MKDICT=${MKDICTDIR}/mkdict
MKINDEXDIR!= cd $(.CURDIR)/mkindex; ${PRINTOBJDIR}
MKINDEX=${MKINDEXDIR}/mkindex
WORDS=${.CURDIR}/../../share/dict/web2
-DICTFILES=${.OBJDIR}/dictionary ${.OBJDIR}/dictindex
+DICTFILES=dictionary dictindex
.if ${MKSHARE} != "no"
FILES=${DICTFILES}
FILESDIR=/usr/share/games/boggle
@@ -25,13 +25,13 @@ ${MKDICT}:
${MKINDEX}:
@cd ${.CURDIR}/mkindex && ${MAKE}
-${.OBJDIR}/dictionary: ${WORDS} ${MKDICT}
+dictionary: ${WORDS} ${MKDICT}
rm -f ${.TARGET}
${MKDICT} < ${WORDS} > ${.TARGET}
-${.OBJDIR}/dictindex: ${.OBJDIR}/dictionary ${MKINDEX}
+dictindex: dictionary ${MKINDEX}
rm -f ${.TARGET}
- ${MKINDEX} < ${.OBJDIR}/dictionary > ${.TARGET}
+ ${MKINDEX} < dictionary > ${.TARGET}
.include <bsd.prog.mk>
.include <bsd.subdir.mk>