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 ++++++++++++++++++++++----------------- atc/grammar.y | 6 ++++++ 2 files changed, 28 insertions(+), 17 deletions(-) (limited to 'atc') 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 diff --git a/atc/grammar.y b/atc/grammar.y index 33845913..7be22b22 100644 --- a/atc/grammar.y +++ b/atc/grammar.y @@ -67,6 +67,7 @@ __RCSID("$NetBSD: grammar.y,v 1.12 2015/06/19 06:02:31 dholland Exp $"); #endif /* not lint */ #include +#include #include "def.h" #include "struct.h" @@ -78,6 +79,11 @@ int line = 1; static int errors = 0; static int yyerror(const char *); +static int checkdefs(void); +static void check_point(int x, int y); +static void check_edir(int x, int y, int dir); +static void check_line(int px1, int py1, int px2, int py2); +static void check_edge(int x, int y); %} %% -- cgit v1.2.3-56-ge451