xref: /original-bsd/old/boggle/Makefile (revision b6e6114e)
1#	@(#)Makefile	8.1 (Berkeley) 05/31/93
2
3PROG=	boggle
4MAN6=	boggle.0
5DPADD=	${LIBCOMPAT}
6LDADD=	-lcompat
7HIDEGAME=hidegame
8CLEANFILES=comp bogdict
9
10all: ${PROG} ${MAN6}
11
12boggle: bogdict
13
14bogdict: /usr/share/dict/words comp sfile
15	sed -f ${.CURDIR}/sfile /usr/share/dict/words | uniq | ./comp >bogdict
16
17beforeinstall:
18	install -c -o ${BINOWN} -g ${BINGRP} -m 444 bogdict \
19	    ${DESTDIR}/usr/share/games
20comp:
21	${CC} -O ${.CURDIR}/comp.c -o ${.TARGET}
22
23.include <bsd.prog.mk>
24