1 # $NetBSD: Makefile,v 1.13 1997/11/20 00:12:37 mrg Exp $
2 # @(#)Makefile 8.1 (Berkeley) 5/31/93
5 SRCS= fight.c gamesupport.c interplayer.c io.c main.c misc.c phantglobs.c
7 DPADD= ${LIBM} ${LIBCURSES} ${LIBTERM} ${LIBCOMPAT}
8 LDADD= -lm -lcurses -ltermlib -lcompat
13 CLEANFILES+=map setup setup.o host_phantglobs.o
17 setup: host_phantglobs.o setup.o monsters.asc ${LIBM}
18 ${HOST_CC} host_phantglobs.o setup.o -o ${.TARGET} -lm
20 host_phantglobs.o: ${.CURDIR}/phantglobs.c
21 ${HOST_COMPILE.c} -o host_phantglobs.o ${.CURDIR}/phantglobs.c
23 setup.o: ${.CURDIR}/setup.c
24 ${HOST_COMPILE.c} ${.CURDIR}/setup.c
27 ./setup -m ${.CURDIR}/monsters.asc
28 chown games:bin ${DESTDIR}/var/games/phantasia/*
30 # Make Phantasia map. Change the map commands reflect your installation.
31 # PLOTDEVICE is used for plotting the map. Change as appropriate.
34 ${CC} -O ${.CURDIR}/map.c -lplot -o ${.TARGET}
35 ./map | plot > /dev/tty
37 .include <bsd.prog.mk>