6ae1554a5d
(or what's left of it, at least) into src/usr.bin. This change will not be MFCed. Discussed at: EuroBSDCon 2014 Committed from: EuroBSDCon 2015
23 lines
473 B
Makefile
23 lines
473 B
Makefile
# @(#)Makefile 8.2 (Berkeley) 4/19/94
|
|
# $FreeBSD$
|
|
|
|
DB= fortunes freebsd-tips murphy startrek zippy
|
|
|
|
# TO AVOID INSTALLING THE POTENTIALLY OFFENSIVE FORTUNES, COMMENT OUT THE
|
|
# NEXT LINE.
|
|
DB+= limerick murphy-o gerrold.limerick
|
|
|
|
BLDS= ${DB:S/$/.dat/}
|
|
FILES= ${DB} ${BLDS}
|
|
CLEANFILES+=${BLDS}
|
|
|
|
FILESDIR= ${SHAREDIR}/games/fortune
|
|
|
|
.for f in ${DB}
|
|
$f.dat: $f
|
|
PATH=$$PATH:/usr/bin:${.OBJDIR}/../strfile \
|
|
strfile -Cs ${.ALLSRC} ${.TARGET}
|
|
.endfor
|
|
|
|
.include <bsd.prog.mk>
|