Rename the resulting binary to gen4asm instead of lextest.

This commit is contained in:
Eric Anholt 2006-08-25 11:10:00 -07:00 committed by Damien Lespiau
parent c81a6084de
commit 2cca382cd2

View File

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