diff options
author | Derek Schuff <dschuff@chromium.org> | 2015-09-09 00:12:32 -0700 |
---|---|---|
committer | Derek Schuff <dschuff@chromium.org> | 2015-09-09 00:12:32 -0700 |
commit | 732c886f771cdf5bdfc435afcf340d1349f7c1bf (patch) | |
tree | 35643035d4659a68f2f7441c531fd450ef706a4e /Makefile | |
parent | 578f13dd81078d37a2a0203af7041b99da4af661 (diff) | |
download | wabt-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-- | Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -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 $@ |