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 --- atc/Makefile | 39 ++++++++++++++++++++++----------------- 1 file changed, 22 insertions(+), 17 deletions(-) (limited to 'atc/Makefile') diff --git a/atc/Makefile b/atc/Makefile index 8c4e9963..22216a34 100644 --- a/atc/Makefile +++ b/atc/Makefile @@ -1,27 +1,32 @@ # $NetBSD: Makefile,v 1.30 2011/08/16 10:14:40 christos Exp $ # @(#)Makefile 8.1 (Berkeley) 5/31/93 -.include - PROG= atc -CPPFLAGS+=-DBSD -I${.CURDIR} -I. -SRCS= extern.c grammar.y graphics.c input.c lex.l list.c log.c \ +SRCS= extern.c graphics.c input.c list.c log.c \ main.c tunable.c update.c -YHEADER=1 MAN= atc.6 -LDADD= -ll -lm -lcurses -lterminfo -DPADD= ${LIBL} ${LIBM} ${LIBCURSES} ${LIBTERMINFO} -GAMES= Game_List Killer crossover default easy game_2 \ - Atlantis OHare Tic-Tac-Toe airports box crosshatch game_3 \ - game_4 novice two-corners -HIDEGAME=hidegame -SETGIDGAME=yes -.if ${MKSHARE} != "no" FILES=${GAMES:S@^@${.CURDIR}/games/@g} FILESDIR=/usr/share/games/atc -FILESMODE=444 -.endif +FILESMODE=644 + +all: $(PROG) + +$(PROG): $(SRCS) grammar.y lex.l + yacc -d grammar.y -o grammar.c + lex lex.l + $(CC) $(CFLAGS) $(LDFLAGS) -o $(PROG) $(SRCS) grammar.c lex.yy.c -lncursesw $(LIBFLA) + $(STRIP) $(PROG) + +install: $(PROG) $(MAN) + $(GINSTALL) -Dm2755 $(PROG) $(DESTDIR)/usr/games/$(PROG) + $(GINSTALL) -Dm644 $(MAN) $(DESTDIR)/usr/share/man/man6/$(MAN) + mkdir -p $(DESTDIR)/usr/share/games + cp -r games $(DESTDIR)/usr/share/games/atc + chmod -R 644 $(DESTDIR)/usr/share/games/atc/* + mkdir -p $(DESTDIR)/var/games/ + -COPTS.input.c += -Wno-format-nonliteral +clean: + rm -f $(CLEANFILES) $(PROG) grammar.c grammar.h lex.yy.c -.include +.PHONY: all clean install -- cgit v1.2.3-56-ge451