mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-10 09:26:10 +00:00
12 lines
154 B
Makefile
12 lines
154 B
Makefile
SOURCES = lex.c main.c gram.c
|
|
|
|
all: lextest
|
|
|
|
y.tab.h: gram.c
|
|
|
|
lextest: ${SOURCES}
|
|
cc -o lextest ${SOURCES}
|
|
|
|
clean:
|
|
rm -f gram.c lex.c
|
|
rm -f *.o lextest
|