0538d7bbe6
Humour is a funny thing. What is funny to one person is not funny to all people. What is insightful to one person is similarly not universal. The fortune datfiles have been around a long time and have undoubtedly amused people but it's time to acknowledge their subjective, and in some cases at least potentially offensive, nature and stop distributing them with the imprimatur of the FreeBSD project. If anyone wishes to distribute these via other mechanisms they are welcome to check them out of history and do so. MFC after: 2 days
19 lines
315 B
Makefile
19 lines
315 B
Makefile
# @(#)Makefile 8.2 (Berkeley) 4/19/94
|
|
# $FreeBSD$
|
|
|
|
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>
|