diff options
| author | Bruce Evans <bde@FreeBSD.org> | 1998-07-07 06:22:23 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 1998-07-07 06:22:23 +0000 |
| commit | 07d8ec4c1713d7e07021427186b2cb0b09dc8f5a (patch) | |
| tree | 20f758b5f8778760a6aab4d42df74ace96390bd1 | |
| parent | 274068262c30bf96c140657684c1c2d2370e791c (diff) | |
Notes
| -rw-r--r-- | games/fortune/datfiles/Makefile | 22 |
1 files changed, 3 insertions, 19 deletions
diff --git a/games/fortune/datfiles/Makefile b/games/fortune/datfiles/Makefile index e0b1478edf53..daeaeb10e888 100644 --- a/games/fortune/datfiles/Makefile +++ b/games/fortune/datfiles/Makefile @@ -15,22 +15,6 @@ TYPE= real # THE FOURTH LINE #TYPE= fake -.if exists(${.OBJDIR}/../../caesar/caesar) -CAESAR=${.OBJDIR}/../../caesar/caesar -.elif exists(${.CURDIR}/../../caesar/caesar) -CAESAR=${.CURDIR}/../../caesar/caesar -.else -CAESAR=/usr/games/caesar -.endif - -.if exists(${.OBJDIR}/../strfile/strfile) -STRFILE=${.OBJDIR}/../strfile/strfile -.elif exists(${.CURDIR}/../strfile/strfile) -STRFILE=${.CURDIR}/../strfile/strfile -.else -STRFILE=/usr/games/strfile -.endif - CLEANFILES+=${BLDS} all: ${FILES} ${BLDS} @@ -42,12 +26,12 @@ install: ${DESTDIR}${SHAREDIR}/games/fortune fortunes.dat fortunes2.dat fortunes2-o.dat limerick.dat startrek.dat zippy.dat: - ${STRFILE} -rs ${.CURDIR}/${.TARGET:R} ${.TARGET} + strfile -rs ${.CURDIR}/${.TARGET:R} ${.TARGET} fortunes-o.dat: fortunes-o - ${STRFILE} -rsx fortunes-o ${.TARGET} + strfile -rsx fortunes-o ${.TARGET} fortunes-o: fortunes-o.${TYPE} - ${CAESAR} 13 < ${.ALLSRC} > ${.TARGET} + caesar 13 < ${.ALLSRC} > ${.TARGET} .include <bsd.prog.mk> |
