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