Add Wall.

This commit is contained in:
Eric Anholt 2006-08-22 12:44:28 -07:00 committed by Damien Lespiau
parent a58d896dfe
commit 1c62350848

View File

@ -1,11 +1,12 @@
SOURCES = lex.c main.c gram.c
CFLAGS = -g -O -Wall
all: lextest
y.tab.h: gram.c
lextest: ${SOURCES}
cc -o lextest ${SOURCES}
cc ${CFLAGS} -o lextest ${SOURCES}
clean:
rm -f gram.c lex.c