summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBen Smith <binji@chromium.org>2015-11-28 15:26:01 -0800
committerBen Smith <binji@chromium.org>2015-12-03 17:08:03 -0800
commitffe33de182f63cd860df82e4bc861f59accf8186 (patch)
tree0d3b68fc667a3b31fa8cbbc2c881529fb3a347b6 /Makefile
parentfd0f0afcd5e3d5b288535b07097d6340d849d79a (diff)
downloadwabt-ffe33de182f63cd860df82e4bc861f59accf8186.tar.gz
wabt-ffe33de182f63cd860df82e4bc861f59accf8186.tar.bz2
wabt-ffe33de182f63cd860df82e4bc861f59accf8186.zip
rename WasmBinaryWriter -> WasmWriter, and move
Now we have a WasmWriter, WasmFileWriter and WasmMemoryWriter.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index a1dfa6e7..b5b1d9e6 100644
--- a/Makefile
+++ b/Makefile
@@ -10,7 +10,7 @@ MSAN_FLAGS = -fsanitize=memory
LSAN_FLAGS = -fsanitize=leak
SRCS = sexpr-wasm.c wasm-parser.c wasm-lexer.c wasm-vector.c wasm-check.c \
- wasm-binary-writer.c
+ wasm-writer.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)))