From 08eca96e71d96ad1f8e9b888875ab5570f208d19 Mon Sep 17 00:00:00 2001 From: Cameron Katri Date: Wed, 17 Feb 2021 14:05:02 -0500 Subject: Get all the games compiling for iOS --- battlestar/Makefile | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) (limited to 'battlestar/Makefile') diff --git a/battlestar/Makefile b/battlestar/Makefile index 70c79ea7..639f21a2 100644 --- a/battlestar/Makefile +++ b/battlestar/Makefile @@ -7,13 +7,18 @@ SRCS= battlestar.c command1.c command2.c command3.c command4.c \ init.c cypher.c getcom.c parse.c room.c save.c fly.c misc.c \ globals.c dayfile.c nightfile.c dayobjs.c nightobjs.c words.c MAN= battlestar.6 -DPADD= ${LIBCURSES} ${LIBTERMINFO} -LDADD= -lcurses -lterminfo -HIDEGAME=hidegame -SETGIDGAME=yes -.if !empty(MACHINE_ARCH:Msh3*) -COPTS.parse.c+=-Wno-restrict -.endif +all: $(PROG) -.include +$(PROG): $(SRCS) + $(CC) $(CFLAGS) $(LDFLAGS) -o $(PROG) $(SRCS) -lncursesw + $(STRIP) $(PROG) + +install: $(PROG) $(MAN) + $(GINSTALL) -Dm2755 $(PROG) $(DESTDIR)/usr/games/$(PROG) + $(GINSTALL) -Dm644 $(MAN) $(DESTDIR)/usr/share/man/man6/$(MAN) + +clean: + rm -f $(CLEANFILES) $(PROG) + +.PHONY: all clean install -- cgit v1.2.3-56-ge451