From cabe7ad7ce7fbb2babd1cd906381ec917b5e4a07 Mon Sep 17 00:00:00 2001 From: thorpej Date: Tue, 5 Mar 2002 19:17:44 +0000 Subject: There is no need to explcitly use ${.OBJDIR}; it's implied. --- boggle/Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'boggle') 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 @@ -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 .include -- cgit v1.2.3-56-ge451