diff options
author | Ken Martin <ken.martin@kitware.com> | 2005-10-20 18:25:08 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2005-10-20 18:25:08 (GMT) |
commit | a2d4e15ed3cd7b98262b881f7c137a5d2fc41267 (patch) | |
tree | 43ece664578f23c5eee99a54589c761e445bad77 /Source/cmLocalUnixMakefileGenerator3.cxx | |
parent | 929553a02e97fc741368e316552cae068f58fbff (diff) | |
download | CMake-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.cxx | 2 |
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); |