Makefile revision 1.2
11.1Scgd#	@(#)Makefile	5.2 (Berkeley) 5/6/91
21.1Scgd
31.2Scgd#
41.2Scgd# set `OBSCENE' to "real" to have obscene fortunes installed,
51.2Scgd# fake to have a note stating that they're not installed
61.2Scgd# isntalled in their place
71.2Scgd#
81.2ScgdOBSCENE=real
91.2Scgd
101.1ScgdDATFILES=fortunes.dat startrek.dat zippy.dat fortunes-o.dat
111.1ScgdCLEANFILES+=${DATFILES}
121.1Scgd
131.1Scgdinstall: ${DATFILES}
141.1Scgd	install -o ${BINOWN} -g ${BINGRP} -m 444 ${DATFILES} \
151.1Scgd	    ${DESTDIR}/usr/share/games/fortune
161.1Scgd
171.2Scgdfortunes-o.dat: ${.TARGET:R}.${OBSCENE}.rot13
181.1Scgd	${.CURDIR}/../strfile/obj/strfile -rsx \
191.2Scgd	    ${.CURDIR}/${.TARGET:R}.${OBSCENE}.rot13 ${.TARGET}
201.1Scgd
211.1Scgdfortunes.dat startrek.dat zippy.dat: ${.TARGET:R}
221.1Scgd	${.CURDIR}/../strfile/obj/strfile -rs \
231.1Scgd	    ${.CURDIR}/${.TARGET:R} ${.TARGET}
241.1Scgd
251.1Scgd.include <bsd.prog.mk>
26