554eb505f8
of the x11 based games. I'm not going to tag the originals with bsd_44_lite and do this in two stages since it's just not worth it for this collection, and I've got directory renames to deal with that way. Bleah. Submitted by: jkh
37 lines
1009 B
Makefile
37 lines
1009 B
Makefile
# @(#)Makefile 8.2 (Berkeley) 4/19/94
|
|
|
|
SRCS= fortunes fortunes2 startrek zippy
|
|
BLDS= fortunes.dat fortunes2.dat startrek.dat zippy.dat \
|
|
fortunes-o fortunes-o.dat
|
|
|
|
# TO INSTALL THE POTENTIALLY OFFENSIVE FORTUNES, UNCOMMENT THE THREE
|
|
# LINES AND COMMENT OUT THE FOURTH LINE.
|
|
|
|
# THE THREE LINES
|
|
SRCS+= fortunes2-o limerick
|
|
BLDS+= fortunes2-o.dat limerick.dat
|
|
TYPE= real
|
|
|
|
# THE FOURTH LINE
|
|
#TYPE= fake
|
|
|
|
CLEANFILES+=${BLDS}
|
|
|
|
install: ${SRCS} ${BLDS}
|
|
(cd ${.CURDIR} && install -c -o ${BINOWN} -g ${BINGRP} -m 444 \
|
|
${SRCS} ${DESTDIR}/usr/share/games/fortune)
|
|
install -o ${BINOWN} -g ${BINGRP} -m 444 ${BLDS} \
|
|
${DESTDIR}/usr/share/games/fortune
|
|
|
|
fortunes.dat fortunes2.dat fortunes2-o.dat limerick.dat startrek.dat zippy.dat:
|
|
${.CURDIR}/../strfile/obj/strfile -rs \
|
|
${.CURDIR}/${.TARGET:R} ${.TARGET}
|
|
|
|
fortunes-o.dat: fortunes-o
|
|
${.CURDIR}/../strfile/obj/strfile -rsx fortunes-o ${.TARGET}
|
|
|
|
fortunes-o: fortunes-o.${TYPE}
|
|
/usr/games/caesar 13 < ${.ALLSRC} > ${.TARGET}
|
|
|
|
.include <bsd.prog.mk>
|