summaryrefslogtreecommitdiffstats
path: root/boggle/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'boggle/Makefile')
-rw-r--r--boggle/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/boggle/Makefile b/boggle/Makefile
index 7e42b913..8d7c859c 100644
--- a/boggle/Makefile
+++ b/boggle/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.7 1997/03/24 22:15:38 christos Exp $
+# $NetBSD: Makefile,v 1.8 1997/04/01 11:42:34 christos Exp $
# @(#)Makefile 8.1 (Berkeley) 6/11/93
SUBDIR= boggle mkdict mkindex
@@ -7,7 +7,7 @@ MKDICT!=cd $(.CURDIR)/mkdict; \
printf "xxx:\n\techo \$${.OBJDIR}/mkdict\n" | ${MAKE} -r -s -f - xxx
MKINDEX!=cd $(.CURDIR)/mkindex; \
printf "xxx:\n\techo \$${.OBJDIR}/mkindex\n" | ${MAKE} -r -s -f - xxx
-WORDS=${DESTDIR}/usr/share/dict/words
+WORDS=${.CURDIR}/../../share/dict/web2a
FILES=dictionary dictindex
FILESDIR=/usr/share/games/boggle
CLEANFILES+=${FILES}
@@ -17,11 +17,11 @@ all: ${FILES}
${MKDICT} ${MKINDEX}: ${SUBDIR}
-dictionary: ${MKDICT} ${WORDS}
+dictionary: ${WORDS}
rm -f ${.TARGET}
${MKDICT} < ${WORDS} > ${.TARGET}
-dictindex: ${MKINDEX} dictionary
+dictindex: dictionary
rm -f ${.TARGET}
${MKINDEX} < dictionary > ${.TARGET}