mirror of
https://github.com/opnsense/src.git
synced 2026-04-15 14:29:58 -04:00
17 lines
303 B
Makefile
17 lines
303 B
Makefile
# @(#)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>
|