NetBSD/games/boggle/Makefile

29 lines
687 B
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.8 1997/04/01 11:42:34 christos Exp $
1994-10-21 23:52:51 +03:00
# @(#)Makefile 8.1 (Berkeley) 6/11/93
SUBDIR= boggle mkdict mkindex
1994-11-30 14:38:56 +03:00
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=${.CURDIR}/../../share/dict/web2a
1997-03-25 01:15:37 +03:00
FILES=dictionary dictindex
FILESDIR=/usr/share/games/boggle
CLEANFILES+=${FILES}
1994-11-30 14:38:56 +03:00
1997-03-25 01:15:37 +03:00
all: ${FILES}
1995-03-01 12:05:20 +03:00
1997-03-25 01:15:37 +03:00
${MKDICT} ${MKINDEX}: ${SUBDIR}
dictionary: ${WORDS}
1997-03-25 01:15:37 +03:00
rm -f ${.TARGET}
${MKDICT} < ${WORDS} > ${.TARGET}
dictindex: dictionary
1997-03-25 01:15:37 +03:00
rm -f ${.TARGET}
${MKINDEX} < dictionary > ${.TARGET}
.include <bsd.prog.mk>