summaryrefslogtreecommitdiffstats
path: root/atc
diff options
context:
space:
mode:
authorCameron Katri <me@cameronkatri.com>2021-02-17 14:05:02 -0500
committerCameron Katri <me@cameronkatri.com>2021-02-22 09:20:17 -0500
commit08eca96e71d96ad1f8e9b888875ab5570f208d19 (patch)
tree9cace520fa50d9ef5bb77c2d7ebdde40e6b40f7f /atc
parent3f650c87c6ee6692ad6a558bb03ccf3364fe794a (diff)
downloadbsdgames-darwin-08eca96e71d96ad1f8e9b888875ab5570f208d19.tar.gz
bsdgames-darwin-08eca96e71d96ad1f8e9b888875ab5570f208d19.tar.zst
bsdgames-darwin-08eca96e71d96ad1f8e9b888875ab5570f208d19.zip
Get all the games compiling for iOS
Diffstat (limited to 'atc')
-rw-r--r--atc/Makefile39
-rw-r--r--atc/grammar.y6
2 files changed, 28 insertions, 17 deletions
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 <bsd.own.mk>
-
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 <bsd.prog.mk>
+.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 <stdio.h>
+#include <stdlib.h>
#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);
%}
%%