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