summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalUnixMakefileGenerator3.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2005-10-20 18:25:08 (GMT)
committerKen Martin <ken.martin@kitware.com>2005-10-20 18:25:08 (GMT)
commita2d4e15ed3cd7b98262b881f7c137a5d2fc41267 (patch)
tree43ece664578f23c5eee99a54589c761e445bad77 /Source/cmLocalUnixMakefileGenerator3.cxx
parent929553a02e97fc741368e316552cae068f58fbff (diff)
downloadCMake-a2d4e15ed3cd7b98262b881f7c137a5d2fc41267.zip
CMake-a2d4e15ed3cd7b98262b881f7c137a5d2fc41267.tar.gz
CMake-a2d4e15ed3cd7b98262b881f7c137a5d2fc41267.tar.bz2
ENH: missing check_build_system for all target
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.cxx')
-rw-r--r--Source/cmLocalUnixMakefileGenerator3.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx
index 339150f..c72cfa6 100644
--- a/Source/cmLocalUnixMakefileGenerator3.cxx
+++ b/Source/cmLocalUnixMakefileGenerator3.cxx
@@ -2835,6 +2835,7 @@ void cmLocalUnixMakefileGenerator3
if (!m_Parent)
{
dir = "all";
+ depends.push_back("cmake_check_build_system");
}
this->CreateJumpCommand(commands,"CMakeFiles/Makefile2",dir);
this->WriteMakeRule(ruleFileStream, "The main all target", "all", depends, commands);
@@ -2844,6 +2845,7 @@ void cmLocalUnixMakefileGenerator3
dir += "/clean";
dir = this->Convert(dir.c_str(),HOME_OUTPUT,MAKEFILE);
commands.clear();
+ depends.clear();
this->CreateJumpCommand(commands,"CMakeFiles/Makefile2",dir);
this->WriteMakeRule(ruleFileStream, "The main clean target", "clean", depends, commands);