summaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2017-12-11 16:21:55 +1100
committerDarren Tucker <dtucker@zip.com.au>2017-12-12 11:17:22 +1100
commit2d96f28246938e0ca474a939d8ac82ecd0de27e3 (patch)
treef9e14c912951fd91125acfe6db617e3abaf7bae2 /Makefile.in
parentac4987a55ee5d4dcc8e87f7ae7c1f87be7257d71 (diff)
Ensure config.h is always in dependencies.
Put an empty config.h into the dependency list to ensure that it's always listed and consistent.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in
index b679e4f6..25b57987 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -302,7 +302,10 @@ depend: depend-rebuild
rm -f .depend.bak
depend-rebuild:
+ rm -f config.h
+ touch config.h
makedepend -w1000 -Y. -f .depend *.c 2>/dev/null
+ rm -f config.h
depend-check: depend-rebuild
cmp .depend .depend.bak || (echo .depend stale && exit 1)