diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2006-03-09 19:30:35 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2006-03-09 19:30:35 (GMT) |
commit | 4c5ba06fa13a2bc07f7e0a26bf455dc0b09d5e9c (patch) | |
tree | 36dd3cbb29d7773e102a0c58dee4ef3a5063c7c9 /Source/cmMakefileLibraryTargetGenerator.cxx | |
parent | d253baab99663f531d91d406faf6fe2b822f5cb8 (diff) | |
download | CMake-4c5ba06fa13a2bc07f7e0a26bf455dc0b09d5e9c.zip CMake-4c5ba06fa13a2bc07f7e0a26bf455dc0b09d5e9c.tar.gz CMake-4c5ba06fa13a2bc07f7e0a26bf455dc0b09d5e9c.tar.bz2 |
ENH: use a cmake script to do the clean step, this allows for large numbers of files to be removed without making the command line too long
Diffstat (limited to 'Source/cmMakefileLibraryTargetGenerator.cxx')
-rw-r--r-- | Source/cmMakefileLibraryTargetGenerator.cxx | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/Source/cmMakefileLibraryTargetGenerator.cxx b/Source/cmMakefileLibraryTargetGenerator.cxx index ade1696..60303ea 100644 --- a/Source/cmMakefileLibraryTargetGenerator.cxx +++ b/Source/cmMakefileLibraryTargetGenerator.cxx @@ -283,19 +283,19 @@ void cmMakefileLibraryTargetGenerator::WriteLibraryRules std::string cleanFullImportName = outpath + cleanImportName; libCleanFiles.push_back (this->Convert(cleanFullStaticName.c_str(),cmLocalGenerator::START_OUTPUT, - cmLocalGenerator::MAKEFILE)); + cmLocalGenerator::UNCHANGED)); if(cleanSharedRealName != cleanStaticName) { libCleanFiles.push_back(this->Convert(cleanFullSharedRealName.c_str(), cmLocalGenerator::START_OUTPUT, - cmLocalGenerator::MAKEFILE)); + cmLocalGenerator::UNCHANGED)); } if(cleanSharedSOName != cleanStaticName && cleanSharedSOName != cleanSharedRealName) { libCleanFiles.push_back(this->Convert(cleanFullSharedSOName.c_str(), cmLocalGenerator::START_OUTPUT, - cmLocalGenerator::MAKEFILE)); + cmLocalGenerator::UNCHANGED)); } if(cleanSharedName != cleanStaticName && cleanSharedName != cleanSharedSOName && @@ -303,7 +303,7 @@ void cmMakefileLibraryTargetGenerator::WriteLibraryRules { libCleanFiles.push_back(this->Convert(cleanFullSharedName.c_str(), cmLocalGenerator::START_OUTPUT, - cmLocalGenerator::MAKEFILE)); + cmLocalGenerator::UNCHANGED)); } if(!cleanImportName.empty() && cleanImportName != cleanStaticName && @@ -313,12 +313,13 @@ void cmMakefileLibraryTargetGenerator::WriteLibraryRules { libCleanFiles.push_back(this->Convert(cleanFullImportName.c_str(), cmLocalGenerator::START_OUTPUT, - cmLocalGenerator::MAKEFILE)); + cmLocalGenerator::UNCHANGED)); } } // Add a command to remove any existing files for this library. std::vector<std::string> commands1; - this->LocalGenerator->AppendCleanCommand(commands1, libCleanFiles); + this->LocalGenerator->AppendCleanCommand(commands1, libCleanFiles, + *this->Target, "target"); this->LocalGenerator->CreateCDCommand(commands1, this->Makefile->GetStartOutputDirectory(), this->Makefile->GetHomeOutputDirectory()); @@ -487,7 +488,9 @@ void cmMakefileLibraryTargetGenerator::WriteLibraryRules // Clean all the possible library names and symlinks and object files. this->CleanFiles.insert(this->CleanFiles.end(), - libCleanFiles.begin(),libCleanFiles.end()); - this->CleanFiles.push_back(cleanObjs); + libCleanFiles.begin(),libCleanFiles.end()); + this->CleanFiles.insert(this->CleanFiles.end(), + this->Objects.begin(), + this->Objects.end()); } |