X-Git-Url: https://git.cameronkatri.com/bsdgames-darwin.git/blobdiff_plain/ccb51d2169c63cbc7feeb357e199b234e6608a90..fb4bf232f26bcf58854d0ad1bca260452ef50301:/fortune/datfiles/Makefile diff --git a/fortune/datfiles/Makefile b/fortune/datfiles/Makefile index fa86fd73..a9911c1d 100644 --- a/fortune/datfiles/Makefile +++ b/fortune/datfiles/Makefile @@ -1,25 +1,42 @@ -# @(#)Makefile 5.2 (Berkeley) 5/6/91 +# $NetBSD: Makefile,v 1.15 1996/02/29 00:21:16 jtc Exp $ +# @(#)Makefile 8.2 (Berkeley) 4/19/94 -# -# set `OBSCENE' to "real" to have obscene fortunes installed, -# fake to have a note stating that they're not installed -# isntalled in their place -# -OBSCENE=real +SRCS= fortunes fortunes2 startrek zippy +BLDS= fortunes.dat fortunes2.dat startrek.dat zippy.dat \ + fortunes-o fortunes-o.dat -DATFILES=fortunes.dat startrek.dat zippy.dat fortunes-o.dat -CLEANFILES+=${DATFILES} +# TO INSTALL THE POTENTIALLY OFFENSIVE FORTUNES, UNCOMMENT THE THREE +# LINES AND COMMENT OUT THE FOURTH LINE. -install: ${DATFILES} - install -o ${BINOWN} -g ${BINGRP} -m 444 ${DATFILES} \ +# THE THREE LINES +SRCS+= fortunes2-o limerick +BLDS+= fortunes2-o.dat limerick.dat +TYPE= real + +# THE FOURTH LINE +#TYPE= fake + +CLEANFILES+=${BLDS} + +STRFILE!=cd $(.CURDIR)/../strfile; \ + printf "xxx:\n\techo \$${.OBJDIR}/strfile\n" | \ + ${MAKE} -r -s -f - xxx | grep strfile + +all: ${BLDS} + +install: ${SRCS} ${BLDS} + (cd ${.CURDIR} && install -c -o ${BINOWN} -g ${BINGRP} -m 444 \ + ${SRCS} ${DESTDIR}/usr/share/games/fortune) + install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${BLDS} \ ${DESTDIR}/usr/share/games/fortune -fortunes-o.dat: ${.TARGET:R}.${OBSCENE}.rot13 - ${.CURDIR}/../strfile/obj/strfile -rsx \ - ${.CURDIR}/${.TARGET:R}.${OBSCENE}.rot13 ${.TARGET} +fortunes.dat fortunes2.dat fortunes2-o.dat limerick.dat startrek.dat zippy.dat: + ${STRFILE} -rs ${.CURDIR}/${.TARGET:R} ${.TARGET} + +fortunes-o.dat: fortunes-o + ${STRFILE} -rsx fortunes-o ${.TARGET} -fortunes.dat startrek.dat zippy.dat: ${.TARGET:R} - ${.CURDIR}/../strfile/obj/strfile -rs \ - ${.CURDIR}/${.TARGET:R} ${.TARGET} +fortunes-o: fortunes-o.${TYPE} + tr [a-zA-Z] [n-za-mN-ZA-M] < ${.ALLSRC} > ${.TARGET} .include