summaryrefslogtreecommitdiffstats
path: root/boggle/Makefile
blob: ed47dcb3a3125b3f8d643bd02e8f1f6ae3221daa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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>