summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBen Smith <binji@chromium.org>2015-11-13 20:05:41 -0800
committerBen Smith <binji@chromium.org>2015-12-03 17:04:35 -0800
commit713501c8644d3e5bf5b10bdea8eb19c3b874ba7b (patch)
tree8adc05151500c9380f9cfc186af34ae6ee549667 /Makefile
parent99ccd9463521221a710045ee194f6187e3849018 (diff)
downloadwabt-713501c8644d3e5bf5b10bdea8eb19c3b874ba7b.tar.gz
wabt-713501c8644d3e5bf5b10bdea8eb19c3b874ba7b.tar.bz2
wabt-713501c8644d3e5bf5b10bdea8eb19c3b874ba7b.zip
generate tokens from bison
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 6 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 63fd92e8..34f50124 100644
--- a/Makefile
+++ b/Makefile
@@ -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) $<