summaryrefslogtreecommitdiffstats
path: root/boggle/Makefile
diff options
context:
space:
mode:
authorjtc <jtc@NetBSD.org>1994-10-21 20:52:51 +0000
committerjtc <jtc@NetBSD.org>1994-10-21 20:52:51 +0000
commit59d081ebf54dd031de27738cf8fa17341ee4cbf0 (patch)
treeae20aa4948e32b8339e0489ae2f99057338592d4 /boggle/Makefile
parenta861bdee374ea33fbbe20e45cd8d3f644374c835 (diff)
downloadbsdgames-darwin-59d081ebf54dd031de27738cf8fa17341ee4cbf0.tar.gz
bsdgames-darwin-59d081ebf54dd031de27738cf8fa17341ee4cbf0.tar.zst
bsdgames-darwin-59d081ebf54dd031de27738cf8fa17341ee4cbf0.zip
boggle(6), from 44lite
Diffstat (limited to 'boggle/Makefile')
-rw-r--r--boggle/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/boggle/Makefile b/boggle/Makefile
new file mode 100644
index 00000000..ed47dcb3
--- /dev/null
+++ b/boggle/Makefile
@@ -0,0 +1,15 @@
+# @(#)Makefile 8.1 (Berkeley) 6/11/93
+
+SUBDIR= boggle mkdict mkindex
+
+beforeinstall:
+ mkdict/obj/mkdict < /usr/share/dict/words > \
+ ${DESTDIR}/usr/share/games/boggle/dictionary
+ mkindex/obj/mkindex < ${DESTDIR}/usr/share/games/boggle/dictionary > \
+ ${DESTDIR}/usr/share/games/boggle/dictindex
+ chown ${BINOWN}.${BINGRP} ${DESTDIR}/usr/share/games/boggle/dictionary
+ chmod 444 ${DESTDIR}/usr/share/games/boggle/dictionary
+ chown ${BINOWN}.${BINGRP} ${DESTDIR}/usr/share/games/boggle/dictindex
+ chmod 444 ${DESTDIR}/usr/share/games/boggle/dictindex
+
+.include <bsd.subdir.mk>