diff options
Diffstat (limited to 'games/fortune/datfiles/Makefile')
-rw-r--r-- | games/fortune/datfiles/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/games/fortune/datfiles/Makefile b/games/fortune/datfiles/Makefile index d3962d9e6357..5d585fab45c5 100644 --- a/games/fortune/datfiles/Makefile +++ b/games/fortune/datfiles/Makefile @@ -15,16 +15,16 @@ TYPE= real # THE FOURTH LINE #TYPE= fake -.if exists(${.CURDIR}/../../caesar/obj/caesar) -CAESAR=${.CURDIR}/../../caesar/obj/caesar +.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(${.CURDIR}/../strfile/obj/strfile) -STRFILE=${.CURDIR}/../strfile/obj/strfile +.if exists(${.OBJDIR}/../strfile/strfile) +STRFILE=${.OBJDIR}/../strfile/strfile .elif exists(${.CURDIR}/../strfile/strfile) STRFILE=${.CURDIR}/../strfile/strfile .else |