diff options
author | Ben Smith <binji@chromium.org> | 2016-02-22 23:46:57 -0800 |
---|---|---|
committer | Ben Smith <binji@chromium.org> | 2016-02-24 10:35:05 -0800 |
commit | ec4731b6f9607d9e0545693b0a5586a138278b10 (patch) | |
tree | bd7bd579a76f795085010b192d98d3ab16638cc1 /Makefile | |
parent | 255ba24b78f878b2f37f63f2dd0650baf5d883c3 (diff) | |
download | wabt-ec4731b6f9607d9e0545693b0a5586a138278b10.tar.gz wabt-ec4731b6f9607d9e0545693b0a5586a138278b10.tar.bz2 wabt-ec4731b6f9607d9e0545693b0a5586a138278b10.zip |
move AST stuff to wasm-ast.{c,h}
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -29,7 +29,8 @@ SEXPR_WASM_CC := $(CC) SEXPR_WASM_CFLAGS := $(CFLAGS) SEXPR_WASM_SRCS := \ wasm.c sexpr-wasm.c wasm-parser.c wasm-lexer.c wasm-vector.c wasm-check.c \ - wasm-writer.c wasm-binary-writer.c wasm-allocator.c wasm-stack-allocator.c + wasm-writer.c wasm-binary-writer.c wasm-allocator.c wasm-stack-allocator.c \ + wasm-ast.c ASAN_FLAGS := -fsanitize=address SEXPR_WASM_ASAN_CC := clang |