]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - phantasia/Makefile
apply some -O0 with gcc 4.5 and vax.
[bsdgames-darwin.git] / phantasia / Makefile
index 60f513f8dcb6c430dc31d4ceb1d371006b63ffad..2753cbe46a42224924919974963e1631b03c516a 100644 (file)
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.26 2002/03/05 21:31:23 thorpej Exp $
+#      $NetBSD: Makefile,v 1.35 2011/07/03 15:29:34 mrg Exp $
 #      @(#)Makefile    8.1 (Berkeley) 5/31/93
 
 .include <bsd.own.mk>
@@ -6,8 +6,8 @@
 PROG=  phantasia
 SRCS=  fight.c gamesupport.c interplayer.c io.c main.c misc.c phantglobs.c
 
-DPADD= ${LIBM} ${LIBCURSES}
-LDADD= -lm -lcurses
+DPADD= ${LIBM} ${LIBCURSES} ${LIBTERMINFO}
+LDADD= -lm -lcurses -lterminfo
 HIDEGAME=hidegame
 SETGIDGAME=yes
 USETBL=
@@ -21,26 +21,28 @@ ALLFILES=gold lastdead mess monsters void motd characs scoreboard
 FILES=gold lastdead mess monsters void motd
 # don't overwrite existing characters or scorefile
 .for file in characs scoreboard
-.if !exists(${DESTDIR}/${FILESDIR}/${file})
+.if !exists(${DESTDIR}${FILESDIR}/${file})
 FILES+=${file}
 .endif
 .endfor
 
-CLEANFILES+=map setup setup.lo host_phantglobs.lo ${ALLFILES}
+CLEANFILES+=map setup setup.lo host_phantglobs.lo ${ALLFILES} files.stamp
 
 realall: ${FILES}
 
-${FILES}: setup
+${FILES}: files.stamp
+files.stamp: setup monsters.asc
+       ${_MKMSG_CREATE} ${FILES}
+       rm -f ${.TARGET}
        ./setup -m ${.CURDIR}/monsters.asc
+       touch ${.TARGET}
 
-setup: host_phantglobs.lo setup.lo monsters.asc ${LIBM} 
-       ${HOST_LINK.c} host_phantglobs.lo setup.lo -o ${.TARGET} -lm
+setup: host_phantglobs.lo setup.lo ${LIBM} 
+       ${_MKTARGET_LINK}
+       ${HOST_LINK.c} -o ${.TARGET} ${.ALLSRC:M*.lo} -lm
 
-host_phantglobs.lo: ${.CURDIR}/phantglobs.c
-       ${HOST_COMPILE.c} -o host_phantglobs.lo ${.CURDIR}/phantglobs.c
-
-setup.lo: ${.CURDIR}/setup.c
-       ${HOST_COMPILE.c} -o setup.lo ${.CURDIR}/setup.c
+BUILDSYMLINKS+=        phantglobs.c host_phantglobs.c
+HOST_CPPFLAGS+=        -I${.CURDIR}
 
 # Make Phantasia map.  Change the map commands reflect your installation.
 # PLOTDEVICE is used for plotting the map.  Change as appropriate.
@@ -50,3 +52,7 @@ map: map.c
        ./map | plot > /dev/tty
 
 .include <bsd.prog.mk>
+
+.if defined(HAVE_GCC) && ${HAVE_GCC} >= 45 && ${MACHINE_ARCH} == "vax"
+COPTS.misc.c+= -O0
+.endif