summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalUnixMakefileGenerator3.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmGlobalUnixMakefileGenerator3.cxx')
-rw-r--r--Source/cmGlobalUnixMakefileGenerator3.cxx7
1 files changed, 7 insertions, 0 deletions
diff --git a/Source/cmGlobalUnixMakefileGenerator3.cxx b/Source/cmGlobalUnixMakefileGenerator3.cxx
index 70c0ed4..f16d9a1 100644
--- a/Source/cmGlobalUnixMakefileGenerator3.cxx
+++ b/Source/cmGlobalUnixMakefileGenerator3.cxx
@@ -147,6 +147,13 @@ void cmGlobalUnixMakefileGenerator3::WriteMainMakefile2()
depends.clear();
+ // The all and preinstall rules might never have any dependencies
+ // added to them.
+ if(m_EmptyRuleHackDepends != "")
+ {
+ depends.push_back(m_EmptyRuleHackDepends);
+ }
+
// Write and empty all:
lg->WriteMakeRule(makefileStream,
"The main recursive all target", "all",