xref: /freebsd/usr.bin/fortune/datfiles/Makefile (revision e9ac41698b2f322d55ccf9da50a3596edb2c1800)
1DB=	freebsd-tips
2
3BLDS=	${DB:S/$/.dat/}
4FILES=	${DB} ${BLDS}
5CLEANFILES+=${BLDS}
6
7FILESDIR=	${SHAREDIR}/games/fortune
8
9.for f in ${DB}
10$f.dat: $f
11	PATH=$$PATH:/usr/bin:${FORTUNE_OBJ}/strfile \
12	    strfile -Cs ${.ALLSRC} ${.TARGET}
13.endfor
14
15.include <bsd.prog.mk>
16