mesa/Makefile
Carl Worth 3a37b8701c Add the tiniest shell of a flex/bison-based parser.
It doesn't really *do* anything yet---merlely parsing a stream of
whitespace-separated tokens, (and not interpreting them at all).
2010-05-10 11:46:34 -07:00

12 lines
202 B
Makefile

glcpp: glcpp.o glcpp-lex.o glcpp-parse.o
%.c %.h: %.y
bison --defines=$*.h --output=$*.c $^
%.c: %.l
flex --outfile=$@ $<
glcpp-lex.c: glcpp-parse.h
clean:
rm -f glcpp-lex.c glcpp-parse.c *.o *~