summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBen Smith <binji@chromium.org>2015-11-23 17:14:35 -0800
committerBen Smith <binji@chromium.org>2015-12-03 17:08:03 -0800
commit37ee626dbeacd62193dd913dddaff5894f7da251 (patch)
tree6072ae1f5c55444b721de623e36c3caa7d5f9e21 /Makefile
parent4a7cd6deb3c3b9213ac5eef70c1ea10f1f826fc0 (diff)
downloadwabt-37ee626dbeacd62193dd913dddaff5894f7da251.tar.gz
wabt-37ee626dbeacd62193dd913dddaff5894f7da251.tar.bz2
wabt-37ee626dbeacd62193dd913dddaff5894f7da251.zip
WIP code for writing v8-native binary
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 9190af0f..a1dfa6e7 100644
--- a/Makefile
+++ b/Makefile
@@ -9,7 +9,8 @@ ASAN_FLAGS = -fsanitize=address
MSAN_FLAGS = -fsanitize=memory
LSAN_FLAGS = -fsanitize=leak
-SRCS = sexpr-wasm.c wasm-parser.c wasm-lexer.c wasm-vector.c wasm-check.c
+SRCS = sexpr-wasm.c wasm-parser.c wasm-lexer.c wasm-vector.c wasm-check.c \
+ wasm-binary-writer.c
OBJS = $(addprefix out/,$(patsubst %.c,%.o,$(SRCS)))
ASAN_OBJS = $(addprefix out/,$(patsubst %.c,%.asan.o,$(SRCS)))
MSAN_OBJS = $(addprefix out/,$(patsubst %.c,%.msan.o,$(SRCS)))