mirror of
https://github.com/opnsense/src.git
synced 2026-04-23 07:07:24 -04:00
Backed out yacc changes.
This commit is contained in:
parent
4d7af0f1b6
commit
0249938fea
2 changed files with 3 additions and 3 deletions
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
||||
%}
|
||||
|
|
|
|||
Loading…
Reference in a new issue