Files
ntel-gpu-tools/assembler/Makefile
T
Eric Anholt 1c62350848 Add Wall.
2013-03-04 15:54:20 +00:00

13 lines
185 B
Makefile

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