summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBen Smith <binji@chromium.org>2016-04-28 21:26:51 -0700
committerBen Smith <binji@chromium.org>2016-04-28 21:58:25 -0700
commit98729df534b55d495d0040266daaaf96ed41b9f9 (patch)
tree5c94244240665db55ad7442fe8cf162cfcd08fce /Makefile
parent8ef2f014f80ad118c901db4c65d4feb0baf878da (diff)
downloadwabt-98729df534b55d495d0040266daaaf96ed41b9f9.tar.gz
wabt-98729df534b55d495d0040266daaaf96ed41b9f9.tar.bz2
wabt-98729df534b55d495d0040266daaaf96ed41b9f9.zip
rename Lexer -> AstLexer, Parser -> AstParser
This matches other files, and will be nicer if other lexers/parsers are added. Also remove some references to flex, and the flex lexer.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index cdc95afe..405070d7 100644
--- a/Makefile
+++ b/Makefile
@@ -135,13 +135,13 @@ clean:
test-everything:
.PHONY: update-bison update-re2c
-update-bison: src/prebuilt/wasm-bison-parser.c
-update-re2c: src/prebuilt/wasm-re2c-lexer.c
+update-bison: src/prebuilt/wasm-ast-parser-gen.c
+update-re2c: src/prebuilt/wasm-ast-lexer-gen.c
-src/prebuilt/wasm-bison-parser.c: src/wasm-bison-parser.y
- bison -o $@ $< --defines=src/prebuilt/wasm-bison-parser.h
+src/prebuilt/wasm-ast-parser-gen.c: src/wasm-ast-parser.y
+ bison -o $@ $< --defines=src/prebuilt/wasm-ast-parser-gen.h
-src/prebuilt/wasm-re2c-lexer.c: src/wasm-lexer.c
+src/prebuilt/wasm-ast-lexer-gen.c: src/wasm-ast-lexer.c
re2c -bc -o $@ $<
# defaults with simple names