summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBen Smith <binji@chromium.org>2015-09-10 11:08:56 -0700
committerBen Smith <binji@chromium.org>2015-09-10 11:14:30 -0700
commitbcd811c369b6baa569364547ae7a4aca8d02b77e (patch)
treee14b8cb8839599ca2be4cb54e73d380ceeb48cfe /Makefile
parent285a81d8b1807fca81786030ad3a6612cf89b7a0 (diff)
downloadwabt-bcd811c369b6baa569364547ae7a4aca8d02b77e.tar.gz
wabt-bcd811c369b6baa569364547ae7a4aca8d02b77e.tar.bz2
wabt-bcd811c369b6baa569364547ae7a4aca8d02b77e.zip
rename parse.c -> wasm-parse.c
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 47d082b3..47b19073 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@
ALL = sexpr-wasm
CFLAGS = -Wall -Werror -g
-OBJS = out/sexpr-wasm.o out/parse.o out/wasm-gen.o
+OBJS = out/sexpr-wasm.o out/wasm-parse.o out/wasm-gen.o
HEADERS = src/wasm.h src/wasm-parse.h
.PHONY: all