summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDerek Schuff <dschuff@chromium.org>2015-09-09 00:12:32 -0700
committerDerek Schuff <dschuff@chromium.org>2015-09-09 00:12:32 -0700
commit732c886f771cdf5bdfc435afcf340d1349f7c1bf (patch)
tree35643035d4659a68f2f7441c531fd450ef706a4e /Makefile
parent578f13dd81078d37a2a0203af7041b99da4af661 (diff)
downloadwabt-732c886f771cdf5bdfc435afcf340d1349f7c1bf.tar.gz
wabt-732c886f771cdf5bdfc435afcf340d1349f7c1bf.tar.bz2
wabt-732c886f771cdf5bdfc435afcf340d1349f7c1bf.zip
Factor out wasm types and parser declarations into their own files
First refactoring toward making the parser usable for things other than the sexpr-to-wasm encoder. It moves the wasm types into their own header, the parser types and declarations into their own header, and the parser code into its own source file separate from main and the CLI option parsing. Makes no attempt to actually change the interface yet.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 7 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index aa2eab40..db1301ae 100644
--- a/Makefile
+++ b/Makefile
@@ -3,14 +3,18 @@
ALL = sexpr-wasm
CFLAGS = -Wall -Werror -g
+OBJS = out/sexpr-wasm.o out/parse.o
+HEADERS = src/wasm.h src/wasm-parse.h
+
.PHONY: all
all: $(addprefix out/,$(ALL))
out/:
mkdir $@
-
-out/sexpr-wasm: src/sexpr-wasm.c src/hash.h | out
- $(CC) $(CFLAGS) -o $@ $<
+out/%.o: src/%.c $(HEADERS)
+ $(CC) $(CFLAGS) -c -o $@ $<
+out/sexpr-wasm: out $(OBJS)
+ $(CC) -o $@ $(OBJS)
hash.h: hash.txt
gperf --compare-strncmp --readonly-tables --struct-type $< --output-file $@