1 # $NetBSD: Makefile,v 1.17 1998/12/06 09:06:46 dbj 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}
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 DESTDIR=${DESTDIR} ./setup -m ${.CURDIR}/monsters.asc
28 chown games:games ${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>