summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1996-06-03 01:56:05 +0000
committerBruce Evans <bde@FreeBSD.org>1996-06-03 01:56:05 +0000
commit0249938fea641e37cc9731cce0593e989edfbf1e (patch)
tree5cf654a9211fe866723edc9705187c47666839b3
parent4d7af0f1b605d2823118bcc25238f92046da363f (diff)
Notes
-rw-r--r--games/atc/Makefile4
-rw-r--r--games/atc/lex.l2
2 files changed, 3 insertions, 3 deletions
diff --git a/games/atc/Makefile b/games/atc/Makefile
index d00acc250993..80305a183347 100644
--- a/games/atc/Makefile
+++ b/games/atc/Makefile
@@ -2,13 +2,13 @@
PROG= atc
CFLAGS+=-DBSD -I${.CURDIR} -I.
-SRCS= extern.c grammar.y graphics.c input.c lex.l list.c log.c \
+SRCS= extern.c grammar.c graphics.c input.c lex.c list.c log.c \
main.c tunable.c update.c
MAN6= atc.6
DPADD= ${usr/lib/libl.a ${LIBM} ${LIBTERMCAP} ${LIBCURSES} ${LIBCOMPAT}
LDADD= -ll -lm -lcurses -ltermcap -lcompat
GAMES= ATC_scores Game_List Killer crossover default easy game_2
-CLEANFILES=grammer.tab.h
+CLEANFILES=grammar.c y.tab.h lex.c
HIDEGAME=hidegame
beforeinstall:
diff --git a/games/atc/lex.l b/games/atc/lex.l
index 28b00b3f5ec0..0092a2959d1d 100644
--- a/games/atc/lex.l
+++ b/games/atc/lex.l
@@ -48,7 +48,7 @@
static char sccsid[] = "@(#)lex.l 8.1 (Berkeley) 5/31/93";
#endif /* not lint */
-#include "grammar.tab.h"
+#include "y.tab.h"
extern int line;
%}