2014-06-15 00:49:36 +04:00
|
|
|
# $NetBSD: Makefile,v 1.37 2014/06/14 20:49:37 mrg Exp $
|
1994-10-22 00:19:39 +03:00
|
|
|
# @(#)Makefile 8.1 (Berkeley) 5/31/93
|
|
|
|
|
2001-12-19 09:18:25 +03:00
|
|
|
.include <bsd.own.mk>
|
|
|
|
|
1994-10-22 00:19:39 +03:00
|
|
|
PROG= phantasia
|
1997-10-13 06:18:06 +04:00
|
|
|
SRCS= fight.c gamesupport.c interplayer.c io.c main.c misc.c phantglobs.c
|
|
|
|
|
2010-02-07 02:45:24 +03:00
|
|
|
DPADD= ${LIBM} ${LIBCURSES} ${LIBTERMINFO}
|
|
|
|
LDADD= -lm -lcurses -lterminfo
|
1994-10-22 00:19:39 +03:00
|
|
|
HIDEGAME=hidegame
|
1997-11-20 03:12:30 +03:00
|
|
|
SETGIDGAME=yes
|
1997-06-30 23:33:34 +04:00
|
|
|
USETBL=
|
1994-12-22 12:31:26 +03:00
|
|
|
MAN= phantasia.6
|
1994-10-22 00:19:39 +03:00
|
|
|
|
2001-03-27 06:23:28 +04:00
|
|
|
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
|
2003-09-30 13:23:19 +04:00
|
|
|
.if !exists(${DESTDIR}${FILESDIR}/${file})
|
2001-03-27 06:23:28 +04:00
|
|
|
FILES+=${file}
|
|
|
|
.endif
|
|
|
|
.endfor
|
|
|
|
|
2013-02-16 21:00:21 +04:00
|
|
|
CLEANFILES+=map mkdata setup.lo host_phantglobs.lo ${ALLFILES} files.stamp
|
2001-03-27 06:23:28 +04:00
|
|
|
|
2001-06-06 21:34:19 +04:00
|
|
|
realall: ${FILES}
|
2001-03-27 06:23:28 +04:00
|
|
|
|
2004-02-09 01:14:27 +03:00
|
|
|
${FILES}: files.stamp
|
2013-02-16 21:00:21 +04:00
|
|
|
files.stamp: mkdata monsters.asc
|
2003-11-16 17:14:18 +03:00
|
|
|
${_MKMSG_CREATE} ${FILES}
|
2004-02-09 01:14:27 +03:00
|
|
|
rm -f ${.TARGET}
|
2013-02-16 21:00:21 +04:00
|
|
|
./mkdata -m ${.CURDIR}/monsters.asc
|
2004-02-09 01:14:27 +03:00
|
|
|
touch ${.TARGET}
|
1994-10-22 00:19:39 +03:00
|
|
|
|
2013-02-16 21:00:21 +04:00
|
|
|
mkdata: host_phantglobs.lo setup.lo ${LIBM}
|
2003-10-21 14:01:19 +04:00
|
|
|
${_MKTARGET_LINK}
|
2003-11-16 17:14:18 +03:00
|
|
|
${HOST_LINK.c} -o ${.TARGET} ${.ALLSRC:M*.lo} -lm
|
1997-04-19 11:20:13 +04:00
|
|
|
|
2003-10-18 11:40:27 +04:00
|
|
|
BUILDSYMLINKS+= phantglobs.c host_phantglobs.c
|
|
|
|
HOST_CPPFLAGS+= -I${.CURDIR}
|
1994-10-22 00:19:39 +03:00
|
|
|
|
|
|
|
# Make Phantasia map. Change the map commands reflect your installation.
|
|
|
|
# PLOTDEVICE is used for plotting the map. Change as appropriate.
|
|
|
|
|
|
|
|
map: map.c
|
|
|
|
${CC} -O ${.CURDIR}/map.c -lplot -o ${.TARGET}
|
|
|
|
./map | plot > /dev/tty
|
|
|
|
|
|
|
|
.include <bsd.prog.mk>
|
2011-07-03 19:29:34 +04:00
|
|
|
|
2014-06-15 00:49:36 +04:00
|
|
|
.if defined(HAVE_GCC) && ${MACHINE_ARCH} == "vax"
|
2011-07-03 19:29:34 +04:00
|
|
|
COPTS.misc.c+= -O0
|
|
|
|
.endif
|