diff options
author | Ben Smith <binji@chromium.org> | 2015-11-13 20:05:41 -0800 |
---|---|---|
committer | Ben Smith <binji@chromium.org> | 2015-12-03 17:04:35 -0800 |
commit | 713501c8644d3e5bf5b10bdea8eb19c3b874ba7b (patch) | |
tree | 8adc05151500c9380f9cfc186af34ae6ee549667 /Makefile | |
parent | 99ccd9463521221a710045ee194f6187e3849018 (diff) | |
download | wabt-713501c8644d3e5bf5b10bdea8eb19c3b874ba7b.tar.gz wabt-713501c8644d3e5bf5b10bdea8eb19c3b874ba7b.tar.bz2 wabt-713501c8644d3e5bf5b10bdea8eb19c3b874ba7b.zip |
generate tokens from bison
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -1,6 +1,6 @@ .SUFFIXES: -ALL = sexpr-wasm lexer +ALL = sexpr-wasm parser EVERYHING = $(ALL) sexpr-wasm-asan sexpr-wasm-msan sexpr-wasm-lsan CFLAGS = -Wall -Werror -g DEPEND_FLAGS = -MMD -MP -MF $(patsubst %.o,%.d,$@) @@ -26,8 +26,11 @@ out/: src/wasm-lexer.c src/wasm-lexer.h: src/wasm-lexer.l flex -o src/wasm-lexer.c --header-file=src/wasm-lexer.h $< -out/lexer: src/wasm-lexer.c | out - $(CC) $(CFLAGS) -Wno-unused-function -Wno-return-type -o $@ $< -ll +src/wasm-parser.c src/wasm-parser.h: src/wasm-parser.y + bison -o src/wasm-parser.c --defines=src/wasm-parser.h $< + +out/parser: src/wasm-lexer.c src/wasm-parser.c | out + $(CC) $(CFLAGS) -Wno-unused-function -Wno-return-type -o $@ $^ -ll $(OBJS): out/%.o: src/%.c | out $(CC) $(CFLAGS) -c -o $@ $(DEPEND_FLAGS) $< |