diff options
author | Ben Smith <binji@chromium.org> | 2015-09-18 19:15:42 -0700 |
---|---|---|
committer | Ben Smith <binji@chromium.org> | 2015-09-18 19:15:42 -0700 |
commit | e06cab5301932d546769fd3873b401e742785175 (patch) | |
tree | 5b5a92e7a92c8b1b3c4dcad338280dead19d5f4a /Makefile | |
parent | 51567dfed3e52d406b74e1028bde1987e2980675 (diff) | |
download | wabt-e06cab5301932d546769fd3873b401e742785175.tar.gz wabt-e06cab5301932d546769fd3873b401e742785175.tar.bz2 wabt-e06cab5301932d546769fd3873b401e742785175.zip |
fix Makefile dependencies
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -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) |