summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBen Smith <binjimin@gmail.com>2017-05-04 16:31:46 -0700
committerGitHub <noreply@github.com>2017-05-04 16:31:46 -0700
commit0cc349dae28571450a4b7a70606a68fd54403233 (patch)
treeef49f60d0e3839e8158a3603d52e750e69da5ebe /Makefile
parent08cc271f600bafb7dbf42b519ba48c539cd3130e (diff)
downloadwabt-0cc349dae28571450a4b7a70606a68fd54403233.tar.gz
wabt-0cc349dae28571450a4b7a70606a68fd54403233.tar.bz2
wabt-0cc349dae28571450a4b7a70606a68fd54403233.zip
Rename all occurences of AST (#413)
* ast.{cc,h} => ir.{cc,h} * binary-reader-ast.{cc,h} => binary-reader-ir.{cc,h} * ast-writer.{cc,h} => wat-writer.{cc,h} Everything else changes ast => wast. When deciding between wast vs. wat, the wat format should only allow for a single module, without assertions.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index f2d2d935..6b2211e7 100644
--- a/Makefile
+++ b/Makefile
@@ -141,13 +141,13 @@ clean:
test-everything:
.PHONY: update-bison update-re2c
-update-bison: src/prebuilt/ast-parser-gen.cc
-update-re2c: src/prebuilt/ast-lexer-gen.cc
+update-bison: src/prebuilt/wast-parser-gen.cc
+update-re2c: src/prebuilt/wast-lexer-gen.cc
-src/prebuilt/ast-parser-gen.cc: src/ast-parser.y
- bison -o $@ $< --defines=src/prebuilt/ast-parser-gen.hh --report=state
+src/prebuilt/wast-parser-gen.cc: src/wast-parser.y
+ bison -o $@ $< --defines=src/prebuilt/wast-parser-gen.hh --report=state
-src/prebuilt/ast-lexer-gen.cc: src/ast-lexer.cc
+src/prebuilt/wast-lexer-gen.cc: src/wast-lexer.cc
re2c --no-generation-date -bc -o $@ $<
# running CMake