summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBen Smith <binji@chromium.org>2015-09-18 19:15:42 -0700
committerBen Smith <binji@chromium.org>2015-09-18 19:15:42 -0700
commite06cab5301932d546769fd3873b401e742785175 (patch)
tree5b5a92e7a92c8b1b3c4dcad338280dead19d5f4a /Makefile
parent51567dfed3e52d406b74e1028bde1987e2980675 (diff)
downloadwabt-e06cab5301932d546769fd3873b401e742785175.tar.gz
wabt-e06cab5301932d546769fd3873b401e742785175.tar.bz2
wabt-e06cab5301932d546769fd3873b401e742785175.zip
fix Makefile dependencies
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 4cd6ce95..12b975f9 100644
--- a/Makefile
+++ b/Makefile
@@ -4,21 +4,22 @@ ALL = sexpr-wasm
CFLAGS = -Wall -Werror -g
OBJS = out/sexpr-wasm.o out/wasm-parse.o out/wasm-gen.o
-HEADERS = src/wasm.h src/wasm-parse.h src/hash.h
.PHONY: all
all: $(addprefix out/,$(ALL))
out/:
mkdir $@
-out/%.o: src/%.c $(HEADERS)
- $(CC) $(CFLAGS) -c -o $@ $<
+out/%.o: src/%.c
+ $(CC) $(CFLAGS) -c -o $@ -MMD -MP -MF $(patsubst %.o,%.d,$@) $<
out/sexpr-wasm: out $(OBJS)
$(CC) -o $@ $(OBJS)
src/hash.h: src/hash.txt
gperf --compare-strncmp --readonly-tables --struct-type $< --output-file $@
+-include $(OBJS:.o=.d)
+
#### TESTS ####
TEST_EXES=$(shell python test/run-tests.py --list-exes)