blob: 93e64e19be385138c27683186a874fcba5a094b5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# @(#)Makefile 8.2 (Berkeley) 4/19/94
DB= freebsd-tips
BLDS= ${DB:S/$/.dat/}
FILES= ${DB} ${BLDS}
CLEANFILES+=${BLDS}
FILESDIR= ${SHAREDIR}/games/fortune
.for f in ${DB}
$f.dat: $f
PATH=$$PATH:/usr/bin:${FORTUNE_OBJ}/strfile \
strfile -Cs ${.ALLSRC} ${.TARGET}
.endfor
.include <bsd.prog.mk>
|