From: Andy Spencer Date: Sun, 16 Jun 2013 07:21:38 +0000 (+0000) Subject: Add build dependency on config.mk X-Git-Url: http://pileus.org/git/?p=lackey;a=commitdiff_plain;h=128ce297a901284690dfb4f5d74b9a19ce9d3294 Add build dependency on config.mk --- diff --git a/makefile b/makefile index 8d76a50..5dde712 100644 --- a/makefile +++ b/makefile @@ -57,7 +57,7 @@ $(PROG): $(PROG_SRC:%=src/%.o) $(VIEWS:%=views/%.o) $(CALS:%=cals/%.o) $(TEST): $(TEST_SRC:%=src/%.o) $(CALS:%=cals/%.o) $(GCC) $(CFLAGS) -o $@ $+ $(LDFLAGS) -%.o: %.c $(wildcard src/*.h) makefile +%.o: %.c $(wildcard src/*.h makefile config.mk) $(GCC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $< .PHONY: all clean dist install uninstall