]> 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 d37f5cdba6dff459ad56baf137a52b838383cdb9..2753cbe46a42224924919974963e1631b03c516a 100644 (file)
@@ -1,29 +1,48 @@
-#      $NetBSD: Makefile,v 1.10 1997/06/30 19:33:34 phil 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>
+
 PROG=  phantasia
-SRCS=  main.c fight.c io.c interplayer.c gamesupport.c misc.c phantglobs.c
-DPADD= ${LIBM} ${LIBCURSES} ${LIBTERM} ${LIBCOMPAT}
-LDADD= -lm -lcurses -ltermlib -lcompat
+SRCS=  fight.c gamesupport.c interplayer.c io.c main.c misc.c phantglobs.c
+
+DPADD= ${LIBM} ${LIBCURSES} ${LIBTERMINFO}
+LDADD= -lm -lcurses -lterminfo
 HIDEGAME=hidegame
+SETGIDGAME=yes
 USETBL=
 MAN=   phantasia.6
-CLEANFILES+=map setup setup.o host_phantglobs.o
-
-all: setup phantasia
-
-setup: host_phantglobs.o setup.o monsters.asc ${LIBM} 
-       ${HOST_CC} host_phantglobs.o setup.o -o ${.TARGET} -lm
 
-host_phantglobs.o: ${.CURDIR}/phantglobs.c
-       ${HOST_COMPILE.c} -o host_phantglobs.o ${.CURDIR}/phantglobs.c
+FILESDIR=/var/games/phantasia
+FILESOWN=games
+FILESGRP=games
+FILESMODE=0660
+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})
+FILES+=${file}
+.endif
+.endfor
+
+CLEANFILES+=map setup setup.lo host_phantglobs.lo ${ALLFILES} files.stamp
+
+realall: ${FILES}
+
+${FILES}: files.stamp
+files.stamp: setup monsters.asc
+       ${_MKMSG_CREATE} ${FILES}
+       rm -f ${.TARGET}
+       ./setup -m ${.CURDIR}/monsters.asc
+       touch ${.TARGET}
 
-setup.o: ${.CURDIR}/setup.c
-       ${HOST_COMPILE.c} ${.CURDIR}/setup.c
+setup: host_phantglobs.lo setup.lo ${LIBM} 
+       ${_MKTARGET_LINK}
+       ${HOST_LINK.c} -o ${.TARGET} ${.ALLSRC:M*.lo} -lm
 
-afterinstall: 
-       ./setup -m ${.CURDIR}/monsters.asc
-       chown games:bin ${DESTDIR}/var/games/phantasia/*
+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.
@@ -33,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