summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBen Smith <binji@chromium.org>2015-11-20 09:58:57 -0800
committerBen Smith <binji@chromium.org>2015-12-03 17:08:03 -0800
commitb30d732a20f2d30a4c0579eadf4a9d79e5d3b128 (patch)
treeb3db7872702354e8566862d67855a21089aa83a6 /Makefile
parentb521ec614d3830f26a2c1917aacd3a2b308683ac (diff)
downloadwabt-b30d732a20f2d30a4c0579eadf4a9d79e5d3b128.tar.gz
wabt-b30d732a20f2d30a4c0579eadf4a9d79e5d3b128.tar.bz2
wabt-b30d732a20f2d30a4c0579eadf4a9d79e5d3b128.zip
move vector stuff to wasm-vector.{c,h}
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 81f6efc2..9b96ba13 100644
--- a/Makefile
+++ b/Makefile
@@ -9,7 +9,7 @@ ASAN_FLAGS = -fsanitize=address
MSAN_FLAGS = -fsanitize=memory
LSAN_FLAGS = -fsanitize=leak
-SRCS = sexpr-wasm.c wasm-parser.c wasm-lexer.c
+SRCS = sexpr-wasm.c wasm-parser.c wasm-lexer.c wasm-vector.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)))