mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-08 16:36:14 +00:00
13 lines
185 B
Makefile
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
|