diff options
author | Ben Smith <binji@chromium.org> | 2015-09-10 03:12:02 -0700 |
---|---|---|
committer | Ben Smith <binji@chromium.org> | 2015-09-10 03:12:02 -0700 |
commit | 9f0cb0efc93a98740529561360aa696e5e148481 (patch) | |
tree | 4954cddc35111d17b91bb9c981d60b71a94dac8a /Makefile | |
parent | 8bde9d740d952c8bfa2c8c304f53ec96ba4eb598 (diff) | |
download | wabt-9f0cb0efc93a98740529561360aa696e5e148481.tar.gz wabt-9f0cb0efc93a98740529561360aa696e5e148481.tar.bz2 wabt-9f0cb0efc93a98740529561360aa696e5e148481.zip |
starting to move generation out of parser
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |