]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - phantasia/Makefile
Get all the games compiling for iOS
[bsdgames-darwin.git] / phantasia / Makefile
index 250aad23403cc9418968d25e27dad6ef739d898f..3792164c10cd8f57e2ed24f6e0298b3b3a245d3d 100644 (file)
@@ -1,53 +1,48 @@
-#      $NetBSD: Makefile,v 1.30 2003/10/19 04:45:01 lukem Exp $
+#      $NetBSD: Makefile,v 1.37 2014/06/14 20:49:37 mrg Exp $
 #      @(#)Makefile    8.1 (Berkeley) 5/31/93
 
-.include <bsd.own.mk>
-
 PROG=  phantasia
 SRCS=  fight.c gamesupport.c interplayer.c io.c main.c misc.c phantglobs.c
-
-DPADD= ${LIBM} ${LIBCURSES}
-LDADD= -lm -lcurses
-HIDEGAME=hidegame
-SETGIDGAME=yes
-USETBL=
 MAN=   phantasia.6
 
 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
-.if !exists(${DESTDIR}${FILESDIR}/${file})
-FILES+=${file}
-.endif
-.endfor
 
-CLEANFILES+=map setup setup.lo host_phantglobs.lo ${ALLFILES}
+CLEANFILES+=map mkdata $(ALLFILES) files.stamp
 
-realall: ${FILES}
+all: $(PROG) $(FILES)
 
-${FILES}: setup
-       ${_MKMSGCREATE}
-       ${_MKCMD}\
-       ./setup -m ${.CURDIR}/monsters.asc
+$(FILES): files.stamp
+files.stamp: mkdata monsters.asc
+       rm -f files.stamp
+       ./mkdata -m monsters.asc
+       touch files.stamp
 
-setup: host_phantglobs.lo setup.lo monsters.asc ${LIBM} 
-       ${_MKMSGLINK}
-       ${_MKCMD}\
-       ${HOST_LINK.c} host_phantglobs.lo setup.lo -o ${.TARGET} -lm
-
-BUILDSYMLINKS+=        phantglobs.c host_phantglobs.c
-HOST_CPPFLAGS+=        -I${.CURDIR}
+mkdata: phantglobs.c setup.c
+       clang -o mkdata phantglobs.c setup.c
 
 # 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}
+       clang -o map map.c -lplot
        ./map | plot > /dev/tty
 
-.include <bsd.prog.mk>
+$(PROG): $(SRCS)
+       $(CC) $(CFLAGS) $(LDFLAGS) -o $(PROG) $(SRCS) -lncursesw
+       $(STRIP) $(PROG)
+
+$(ALLFILES): $(FILES)
+
+install: $(PROG) $(MAN) $(ALLFILES)
+       $(GINSTALL) -Dm2755 $(PROG) $(DESTDIR)/usr/games/$(PROG)
+       $(GINSTALL) -Dm644 $(MAN) $(DESTDIR)/usr/share/man/man6/$(MAN)
+       $(GINSTALL) -d $(DESTDIR)$(FILESDIR)
+       $(GINSTALL) -Dm$(FILESMODE) $(ALLFILES) $(DESTDIR)$(FILESDIR)
+
+clean:
+       rm -f $(CLEANFILES) $(PROG)
+
+.PHONY: all clean install