diff options
author | Carl Worth <cworth@cworth.org> | 2010-05-10 11:44:09 -0700 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2010-05-10 11:46:34 -0700 |
commit | 3a37b8701cd3e0a86fef59910b20b2af7e4573f6 (patch) | |
tree | 40e6f9385abb1692c95114610693ce871c0f5b87 /Makefile |
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).
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..d8357dd --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +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 *~ |