diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2006-04-20 14:51:16 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2006-04-20 14:51:16 (GMT) |
commit | 31875743e99f0e10c2a4c5e9c446bd46984dac90 (patch) | |
tree | ca150c0d922a5fd53793dd5392a96c65f02cfc9e /Source | |
parent | b9947a91d4bd84b28ddd89f7f8a5b57eac010d39 (diff) | |
download | CMake-31875743e99f0e10c2a4c5e9c446bd46984dac90.zip CMake-31875743e99f0e10c2a4c5e9c446bd46984dac90.tar.gz CMake-31875743e99f0e10c2a4c5e9c446bd46984dac90.tar.bz2 |
ENH: fix help for global targets
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmGlobalUnixMakefileGenerator3.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Source/cmGlobalUnixMakefileGenerator3.cxx b/Source/cmGlobalUnixMakefileGenerator3.cxx index f62b7cb..ee5279e 100644 --- a/Source/cmGlobalUnixMakefileGenerator3.cxx +++ b/Source/cmGlobalUnixMakefileGenerator3.cxx @@ -808,8 +808,6 @@ void cmGlobalUnixMakefileGenerator3::WriteHelpRule lg->AppendEcho(commands,"... all (the default if no target is provided)"); lg->AppendEcho(commands,"... clean"); lg->AppendEcho(commands,"... depend"); - lg->AppendEcho(commands,"... install"); - lg->AppendEcho(commands,"... rebuild_cache"); // Keep track of targets already listed. std::set<cmStdString> emittedTargets; @@ -831,8 +829,8 @@ void cmGlobalUnixMakefileGenerator3::WriteHelpRule if((t->second.GetType() == cmTarget::EXECUTABLE) || (t->second.GetType() == cmTarget::STATIC_LIBRARY) || (t->second.GetType() == cmTarget::SHARED_LIBRARY) || - (t->second.GetType() == cmTarget::GLOBAL_TARGET) || (t->second.GetType() == cmTarget::MODULE_LIBRARY) || + (t->second.GetType() == cmTarget::GLOBAL_TARGET) || (t->second.GetType() == cmTarget::UTILITY)) { if(emittedTargets.insert(t->second.GetName()).second) |