From 95e2b6070f6e5fed061071b7a00a2cdd706cdf50 Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Fri, 15 Jul 2005 11:37:25 -0400 Subject: ENH: remove commented code --- Source/cmLocalUnixMakefileGenerator3.cxx | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx index 3adca7f..4559904 100644 --- a/Source/cmLocalUnixMakefileGenerator3.cxx +++ b/Source/cmLocalUnixMakefileGenerator3.cxx @@ -2133,7 +2133,6 @@ cmLocalUnixMakefileGenerator3 ::AppendTargetDepends(std::vector& depends, cmTarget& target) { - // Do not bother with dependencies for static libraries. if(target.GetType() == cmTarget::STATIC_LIBRARY) { return; @@ -2157,26 +2156,6 @@ cmLocalUnixMakefileGenerator3 this->AppendAnyDepend(depends, lib->first.c_str()); } } - - // Loop over all utility dependencies. - - // Ken --- we trust that the parent build system handled the utility - // targets, really we trust that it also handled the libs but there is no - // harm in listing the libs as depends, if the libs are not present they - // cannot be built (the rules are not there) but at least it will squak -#if 0 - const std::set& tutils = target.GetUtilities(); - for(std::set::const_iterator util = tutils.begin(); - util != tutils.end(); ++util) - { - // Don't emit the same utility twice for this target. - if(emitted.insert(*util).second) - { - // Add this dependency. - this->AppendAnyDepend(depends, util->c_str()); - } - } -#endif } //---------------------------------------------------------------------------- -- cgit v0.12