virtio - Remove explicit load of virtio.ko. Remove device virtio_pci line.
[dragonfly.git] / games / boggle / dictfiles / Makefile
blob4cd6a8aed8caeb723096f1c373da9808bbf27c76
1 .PATH: ${.CURDIR}/../boggle
3 # XXX better word list selection
4 .if exists(${.CURDIR}/../../../share/dict/web2)
5 BOOGLEWORDS?= ${.CURDIR}/../../../share/dict/web2
6 .else
7 BOOGLEWORDS?= /usr/share/dict/words
8 .endif
10 FILES= dictindex dictionary helpfile
11 FILESDIR= ${SHAREDIR}/games/boggle
13 CLEANFILES= dictindex dictionary
15 dictionary:
16 ${.OBJDIR}/../mkdict/mkdict.nx < ${BOOGLEWORDS} > ${.TARGET}
18 dictindex: dictionary
19 ${.OBJDIR}/../mkindex/mkindex.nx < ${.ALLSRC} > ${.TARGET}
21 .include <bsd.prog.mk>