diff options
author | Ben Smith <binji@chromium.org> | 2015-11-23 17:14:35 -0800 |
---|---|---|
committer | Ben Smith <binji@chromium.org> | 2015-12-03 17:08:03 -0800 |
commit | 37ee626dbeacd62193dd913dddaff5894f7da251 (patch) | |
tree | 6072ae1f5c55444b721de623e36c3caa7d5f9e21 /Makefile | |
parent | 4a7cd6deb3c3b9213ac5eef70c1ea10f1f826fc0 (diff) | |
download | wabt-37ee626dbeacd62193dd913dddaff5894f7da251.tar.gz wabt-37ee626dbeacd62193dd913dddaff5894f7da251.tar.bz2 wabt-37ee626dbeacd62193dd913dddaff5894f7da251.zip |
WIP code for writing v8-native binary
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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))) |