summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBen Smith <binji@chromium.org>2016-02-22 23:46:57 -0800
committerBen Smith <binji@chromium.org>2016-02-24 10:35:05 -0800
commitec4731b6f9607d9e0545693b0a5586a138278b10 (patch)
treebd7bd579a76f795085010b192d98d3ab16638cc1 /Makefile
parent255ba24b78f878b2f37f63f2dd0650baf5d883c3 (diff)
downloadwabt-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--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 92dc732c..3dc37801 100644
--- a/Makefile
+++ b/Makefile
@@ -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