summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBen Smith <binji@chromium.org>2015-09-10 03:12:02 -0700
committerBen Smith <binji@chromium.org>2015-09-10 03:12:02 -0700
commit9f0cb0efc93a98740529561360aa696e5e148481 (patch)
tree4954cddc35111d17b91bb9c981d60b71a94dac8a /Makefile
parent8bde9d740d952c8bfa2c8c304f53ec96ba4eb598 (diff)
downloadwabt-9f0cb0efc93a98740529561360aa696e5e148481.tar.gz
wabt-9f0cb0efc93a98740529561360aa696e5e148481.tar.bz2
wabt-9f0cb0efc93a98740529561360aa696e5e148481.zip
starting to move generation out of parser
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index db1301ae..47d082b3 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@
ALL = sexpr-wasm
CFLAGS = -Wall -Werror -g
-OBJS = out/sexpr-wasm.o out/parse.o
+OBJS = out/sexpr-wasm.o out/parse.o out/wasm-gen.o
HEADERS = src/wasm.h src/wasm-parse.h
.PHONY: all