summaryrefslogtreecommitdiff
path: root/Makerules.in
diff options
context:
space:
mode:
authorThomas Schwinge <tschwinge@gnu.org>2006-02-03 15:53:55 +0000
committerThomas Schwinge <tschwinge@gnu.org>2009-06-18 00:26:32 +0200
commit958602c5b7fd983198a09951bdfd45bf2664fc99 (patch)
tree2cf4bb95f01ddcf331cb6d11f23a3a2a0af7550d /Makerules.in
parent3875df2fac045e70864c29ef014dff605ca06228 (diff)
2006-02-03 Thomas Schwinge <tschwinge@gnu.org>
* Makerules.in: Set no_deps to true if we don't need the dependency files. * i386/linux/Makefile.in: Do care about linux-flags if no_deps is true; reverting the change from 2006-01-31.
Diffstat (limited to 'Makerules.in')
-rw-r--r--Makerules.in5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makerules.in b/Makerules.in
index 864bdf3..b0dfc35 100644
--- a/Makerules.in
+++ b/Makerules.in
@@ -103,6 +103,11 @@ ASFLAGS += -DASSEMBLER
# Dependency generation
#
+# Don't build and include dependency files if they're not needed.
+ifeq ($(strip $(filter-out %clean, $(MAKECMDGOALS))),)
+no_deps = t
+endif
+
# Include dependency files
ifneq ($(no_deps),t)