| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006 |
- /*=========================================================================
- Program: CMake - Cross-Platform Makefile Generator3
- Module: $RCSfile$
- Language: C++
- Date: $Date$
- Version: $Revision$
- Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
- See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
- This software is distributed WITHOUT ANY WARRANTY; without even
- the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
- PURPOSE. See the above copyright notices for more information.
- =========================================================================*/
- #include "cmGlobalUnixMakefileGenerator3.h"
- #include "cmLocalUnixMakefileGenerator3.h"
- #include "cmMakefile.h"
- #include "cmake.h"
- #include "cmGeneratedFileStream.h"
- cmGlobalUnixMakefileGenerator3::cmGlobalUnixMakefileGenerator3()
- {
- // This type of makefile always requires unix style paths
- m_ForceUnixPaths = true;
- m_FindMakeProgramFile = "CMakeUnixFindMake.cmake";
- }
- void cmGlobalUnixMakefileGenerator3
- ::EnableLanguage(std::vector<std::string>const& languages, cmMakefile *mf)
- {
- mf->AddDefinition("CMAKE_CFG_INTDIR",".");
- this->cmGlobalGenerator::EnableLanguage(languages, mf);
- std::string path;
- for(std::vector<std::string>::const_iterator l = languages.begin();
- l != languages.end(); ++l)
- {
- if(*l == "NONE")
- {
- continue;
- }
- const char* lang = l->c_str();
- std::string langComp = "CMAKE_";
- langComp += lang;
- langComp += "_COMPILER";
-
- if(!mf->GetDefinition(langComp.c_str()))
- {
- cmSystemTools::Error(langComp.c_str(), " not set, after EnableLanguage");
- continue;
- }
- const char* cc = mf->GetRequiredDefinition(langComp.c_str());
- path = cmSystemTools::FindProgram(cc);
- if(path.size() == 0)
- {
- std::string message = "your ";
- message += lang;
- message += " compiler: ";
- if(cc)
- {
- message += cc;
- }
- else
- {
- message += "(NULL)";
- }
- message += " was not found in your path. "
- "For CMake to correctly use try compile commands, the compiler must "
- "be in your path. Please add the compiler to your PATH environment,"
- " and re-run CMake.";
- cmSystemTools::Error(message.c_str());
- }
- }
- }
- ///! Create a local generator appropriate to this Global Generator
- cmLocalGenerator *cmGlobalUnixMakefileGenerator3::CreateLocalGenerator()
- {
- cmLocalGenerator* lg = new cmLocalUnixMakefileGenerator3;
- lg->SetGlobalGenerator(this);
- return lg;
- }
- //----------------------------------------------------------------------------
- void cmGlobalUnixMakefileGenerator3::GetDocumentation(cmDocumentationEntry& entry) const
- {
- entry.name = this->GetName();
- entry.brief = "Generates standard UNIX makefiles.";
- entry.full =
- "A hierarchy of UNIX makefiles is generated into the build tree. Any "
- "standard UNIX-style make program can build the project through the "
- "default make target. A \"make install\" target is also provided.";
- }
- //----------------------------------------------------------------------------
- void cmGlobalUnixMakefileGenerator3::Generate()
- {
- // first do superclass method
- this->cmGlobalGenerator::Generate();
- // write the main makefile
- this->WriteMainMakefile();
- this->WriteMainMakefile2();
- this->WriteMainCMakefile();
- }
- void cmGlobalUnixMakefileGenerator3::WriteMainMakefile()
- {
- // Open the output file. This should not be copy-if-different
- // because the check-build-system step compares the makefile time to
- // see if the build system must be regenerated.
- std::string makefileName =
- this->GetCMakeInstance()->GetHomeOutputDirectory();
- makefileName += "/Makefile";
- cmGeneratedFileStream makefileStream(makefileName.c_str());
- if(!makefileStream)
- {
- return;
- }
-
- // get a local generator for some useful methods
- cmLocalUnixMakefileGenerator3 *lg =
- static_cast<cmLocalUnixMakefileGenerator3 *>(m_LocalGenerators[0]);
-
- // Write the do not edit header.
- lg->WriteDisclaimer(makefileStream);
-
- // Write the main entry point target. This must be the VERY first
- // target so that make with no arguments will run it.
- // Just depend on the all target to drive the build.
- std::vector<std::string> depends;
- std::vector<std::string> no_commands;
- depends.push_back("all");
- // Write the rule.
- lg->WriteMakeRule(makefileStream,
- "Default target executed when no arguments are "
- "given to make.",
- "default_target",
- depends,
- no_commands);
- lg->WriteMakeVariables(makefileStream);
-
- lg->WriteSpecialTargetsTop(makefileStream);
- this->WriteAllRules(lg,makefileStream);
-
- // Keep track of targets already listed.
- std::set<cmStdString> emittedTargets;
- // write the target convenience rules
- unsigned int i;
- for (i = 0; i < m_LocalGenerators.size(); ++i)
- {
- lg = static_cast<cmLocalUnixMakefileGenerator3 *>(m_LocalGenerators[i]);
- this->WriteConvenienceRules(makefileStream,lg,emittedTargets);
- }
- // add a help target as long as there isn;t a real target named help
- if(emittedTargets.insert("help").second)
- {
- this->WriteHelpRule(makefileStream);
- }
- lg = static_cast<cmLocalUnixMakefileGenerator3 *>(m_LocalGenerators[0]);
- lg->WriteSpecialTargetsBottom(makefileStream);
- }
- void cmGlobalUnixMakefileGenerator3::WriteMainMakefile2()
- {
- // Open the output file. This should not be copy-if-different
- // because the check-build-system step compares the makefile time to
- // see if the build system must be regenerated.
- std::string makefileName =
- this->GetCMakeInstance()->GetHomeOutputDirectory();
- makefileName += "/CMakeFiles/Makefile2";
- cmGeneratedFileStream makefileStream(makefileName.c_str());
- if(!makefileStream)
- {
- return;
- }
-
- // get a local generator for some useful methods
- cmLocalUnixMakefileGenerator3 *lg =
- static_cast<cmLocalUnixMakefileGenerator3 *>(m_LocalGenerators[0]);
-
- // Write the do not edit header.
- lg->WriteDisclaimer(makefileStream);
-
- // Write the main entry point target. This must be the VERY first
- // target so that make with no arguments will run it.
- // Just depend on the all target to drive the build.
- std::vector<std::string> depends;
- std::vector<std::string> no_commands;
- depends.push_back("all");
- // Write the rule.
- lg->WriteMakeRule(makefileStream,
- "Default target executed when no arguments are "
- "given to make.",
- "default_target",
- depends,
- no_commands);
- // Write and empty all:
- lg->WriteMakeRule(makefileStream,
- "The main recursive all target", "all",
- no_commands, no_commands);
- lg->WriteMakeVariables(makefileStream);
-
- // write the target convenience rules
- unsigned int i;
- for (i = 0; i < m_LocalGenerators.size(); ++i)
- {
- lg = static_cast<cmLocalUnixMakefileGenerator3 *>(m_LocalGenerators[i]);
- // are any parents excluded
- bool exclude = false;
- cmLocalGenerator *lg3 = lg;
- while (lg3)
- {
- if (lg3->GetExcludeAll())
- {
- exclude = true;
- break;
- }
- lg3 = lg3->GetParent();
- }
- this->WriteConvenienceRules2(makefileStream,lg,exclude);
- }
- lg = static_cast<cmLocalUnixMakefileGenerator3 *>(m_LocalGenerators[0]);
- lg->WriteSpecialTargetsBottom(makefileStream);
- }
- //----------------------------------------------------------------------------
- void cmGlobalUnixMakefileGenerator3::WriteMainCMakefile()
- {
- // Open the output file. This should not be copy-if-different
- // because the check-build-system step compares the makefile time to
- // see if the build system must be regenerated.
- std::string cmakefileName =
- this->GetCMakeInstance()->GetHomeOutputDirectory();
- cmakefileName += "/CMakeFiles/Makefile.cmake";
- cmGeneratedFileStream cmakefileStream(cmakefileName.c_str());
- if(!cmakefileStream)
- {
- return;
- }
- std::string makefileName =
- this->GetCMakeInstance()->GetHomeOutputDirectory();
- makefileName += "/Makefile";
-
- // get a local generator for some useful methods
- cmLocalUnixMakefileGenerator3 *lg =
- static_cast<cmLocalUnixMakefileGenerator3 *>(m_LocalGenerators[0]);
-
- // Write the do not edit header.
- lg->WriteDisclaimer(cmakefileStream);
- // Save the generator name
- cmakefileStream
- << "# The generator used is:\n"
- << "SET(CMAKE_DEPENDS_GENERATOR \"" << this->GetName() << "\")\n\n";
- // for each cmMakefile get its list of dependencies
- std::vector<std::string> lfiles;
- for (unsigned int i = 0; i < m_LocalGenerators.size(); ++i)
- {
- lg = static_cast<cmLocalUnixMakefileGenerator3 *>(m_LocalGenerators[i]);
-
- // Get the list of files contributing to this generation step.
- lfiles.insert(lfiles.end(),lg->GetMakefile()->GetListFiles().begin(),
- lg->GetMakefile()->GetListFiles().end());
- }
- // Sort the list and remove duplicates.
- std::sort(lfiles.begin(), lfiles.end(), std::less<std::string>());
- std::vector<std::string>::iterator new_end =
- std::unique(lfiles.begin(),lfiles.end());
- lfiles.erase(new_end, lfiles.end());
- // reset lg to the first makefile
- lg = static_cast<cmLocalUnixMakefileGenerator3 *>(m_LocalGenerators[0]);
- // Build the path to the cache file.
- std::string cache = this->GetCMakeInstance()->GetHomeOutputDirectory();
- cache += "/CMakeCache.txt";
- // Save the list to the cmake file.
- cmakefileStream
- << "# The top level Makefile was generated from the following files:\n"
- << "SET(CMAKE_MAKEFILE_DEPENDS\n"
- << " \"" << lg->Convert(cache.c_str(),
- cmLocalGenerator::START_OUTPUT).c_str() << "\"\n";
- for(std::vector<std::string>::const_iterator i = lfiles.begin();
- i != lfiles.end(); ++i)
- {
- cmakefileStream
- << " \"" << lg->Convert(i->c_str(),
- cmLocalGenerator::START_OUTPUT).c_str()
- << "\"\n";
- }
- cmakefileStream
- << " )\n\n";
- // Build the path to the cache check file.
- std::string check = this->GetCMakeInstance()->GetHomeOutputDirectory();
- check += "/CMakeFiles/cmake.check_cache";
- // Set the corresponding makefile in the cmake file.
- cmakefileStream
- << "# The corresponding makefile is:\n"
- << "SET(CMAKE_MAKEFILE_OUTPUTS\n"
- << " \"" << lg->Convert(makefileName.c_str(),
- cmLocalGenerator::START_OUTPUT).c_str() << "\"\n"
- << " \"" << lg->Convert(check.c_str(),
- cmLocalGenerator::START_OUTPUT).c_str() << "\"\n";
- // add in all the directory information files
- std::string tmpStr;
- for (unsigned int i = 0; i < m_LocalGenerators.size(); ++i)
- {
- lg = static_cast<cmLocalUnixMakefileGenerator3 *>(m_LocalGenerators[i]);
- tmpStr = lg->GetMakefile()->GetStartOutputDirectory();
- tmpStr += "/CMakeFiles/CMakeDirectoryInformation.cmake";
- cmakefileStream << " \"" <<
- lg->Convert(tmpStr.c_str(),cmLocalGenerator::HOME_OUTPUT).c_str() << "\"\n";
- }
- cmakefileStream << " )\n\n";
- this->WriteMainCMakefileLanguageRules(cmakefileStream, m_LocalGenerators);
- }
-
- void cmGlobalUnixMakefileGenerator3
- ::WriteMainCMakefileLanguageRules(cmGeneratedFileStream& cmakefileStream,
- std::vector<cmLocalGenerator *> &lGenerators)
- {
- cmLocalUnixMakefileGenerator3 *lg;
- // now list all the target info files
- cmakefileStream
- << "# The set of files whose dependency integrity should be checked:\n";
- cmakefileStream
- << "SET(CMAKE_DEPEND_INFO_FILES\n";
- for (unsigned int i = 0; i < lGenerators.size(); ++i)
- {
- lg = static_cast<cmLocalUnixMakefileGenerator3 *>(lGenerators[i]);
- // for all of out targets
- for (cmTargets::iterator l = lg->GetMakefile()->GetTargets().begin();
- l != lg->GetMakefile()->GetTargets().end(); l++)
- {
- if((l->second.GetType() == cmTarget::EXECUTABLE) ||
- (l->second.GetType() == cmTarget::STATIC_LIBRARY) ||
- (l->second.GetType() == cmTarget::SHARED_LIBRARY) ||
- (l->second.GetType() == cmTarget::MODULE_LIBRARY) )
- {
- std::string tname = lg->GetRelativeTargetDirectory(l->second);
- tname += "/DependInfo.cmake";
- cmSystemTools::ConvertToUnixSlashes(tname);
- cmakefileStream << " \"" << tname.c_str() << "\"\n";
- }
- }
- }
- cmakefileStream << " )\n";
- }
- //----------------------------------------------------------------------------
- void cmGlobalUnixMakefileGenerator3
- ::WriteAllRules(cmLocalUnixMakefileGenerator3 *lg,
- std::ostream& makefileStream)
- {
- // Write section header.
- lg->WriteDivider(makefileStream);
- makefileStream
- << "# Rules to build dependencies and targets.\n"
- << "\n";
- std::vector<std::string> depends;
- std::vector<std::string> commands;
- // Check the build system in this directory.
- depends.push_back("cmake_check_build_system");
- commands.push_back(lg->GetRecursiveMakeCall("CMakeFiles/Makefile2","all"));
- // Write the rule.
- lg->WriteMakeRule(makefileStream, "The main all target", "all", depends, commands);
- // write the clean
- depends.clear();
- commands.clear();
- commands.push_back(lg->GetRecursiveMakeCall("CMakeFiles/Makefile2","clean"));
- lg->WriteMakeRule(makefileStream, "The main clean target", "clean",
- depends, commands);
- // write the depend rule, really a recompute depends rule
- depends.clear();
- commands.clear();
- std::string cmakefileName = "CMakeFiles/Makefile.cmake";
- std::string runRule =
- "$(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)";
- runRule += " --check-build-system ";
- runRule += lg->Convert(cmakefileName.c_str(),cmLocalGenerator::NONE,
- cmLocalGenerator::SHELL);
- runRule += " 1";
-
- commands.push_back(runRule);
- lg->WriteMakeRule(makefileStream, "clear depends",
- "depend",
- depends, commands);
- }
- //----------------------------------------------------------------------------
- void
- cmGlobalUnixMakefileGenerator3
- ::WriteDirectoryRules(std::ostream& ruleFileStream,
- cmLocalUnixMakefileGenerator3 *lg)
- {
- std::vector<std::string> depends;
- std::vector<std::string> commands;
- std::string localName;
- std::string makeTargetName;
- depends.push_back("cmake_check_build_system");
- if (lg->GetParent())
- {
- std::string dir = lg->GetMakefile()->GetStartOutputDirectory();
- dir = lg->Convert(dir.c_str(),cmLocalGenerator::HOME_OUTPUT,cmLocalGenerator::MAKEFILE);
- lg->WriteDivider(ruleFileStream);
- ruleFileStream
- << "# Directory level rules for directory "
- << dir << "\n\n";
-
- localName = dir;
- localName += "/directorystart";
- makeTargetName = dir;
- makeTargetName += "/directory";
-
- std::vector<std::string> all_tgts;
-
- // for all of out targets
- for (cmTargets::iterator l = lg->GetMakefile()->GetTargets().begin();
- l != lg->GetMakefile()->GetTargets().end(); l++)
- {
- if((l->second.GetType() == cmTarget::EXECUTABLE) ||
- (l->second.GetType() == cmTarget::STATIC_LIBRARY) ||
- (l->second.GetType() == cmTarget::SHARED_LIBRARY) ||
- (l->second.GetType() == cmTarget::MODULE_LIBRARY) ||
- (l->second.GetType() == cmTarget::UTILITY))
- {
- // Add this to the list of depends rules in this directory.
- if(l->second.IsInAll())
- {
- std::string tname = lg->GetRelativeTargetDirectory(l->second);
- tname += "/all";
- all_tgts.push_back(tname);
- }
- }
- }
-
- // write the directory rule add in the subdirs
- std::vector<cmLocalGenerator *> subdirs = lg->GetChildren();
-
- // for each subdir add the directory depend
- std::vector<cmLocalGenerator *>::iterator sdi = subdirs.begin();
- for (; sdi != subdirs.end(); ++sdi)
- {
- cmLocalUnixMakefileGenerator3 * lg2 =
- static_cast<cmLocalUnixMakefileGenerator3 *>(*sdi);
- dir = lg2->GetMakefile()->GetStartOutputDirectory();
- dir += "/directory";
- dir = lg2->Convert(dir.c_str(),cmLocalGenerator::HOME_OUTPUT,
- cmLocalGenerator::MAKEFILE);
- all_tgts.push_back(dir);
- }
-
- // write the directory rule
- commands.clear();
- commands.push_back
- (lg->GetRecursiveMakeCall("CMakeFiles/Makefile2",
- makeTargetName.c_str()));
-
- // Write the rule.
- lg->WriteMakeRule(ruleFileStream, "Convenience name for directory.",
- localName.c_str(), depends, commands);
- // Write the rule.
- commands.clear();
- lg->WriteMakeRule(ruleFileStream, "Convenience name for directory.",
- makeTargetName.c_str(), all_tgts, commands);
- }
- // now do the clean targets
- if (lg->GetParent())
- {
- std::string dir = lg->GetMakefile()->GetStartOutputDirectory();
- dir = lg->Convert(dir.c_str(),cmLocalGenerator::HOME_OUTPUT,cmLocalGenerator::MAKEFILE);
- makeTargetName = dir;
- makeTargetName += "/clean";
-
- std::vector<std::string> all_tgts;
-
- // for all of out targets
- for (cmTargets::iterator l = lg->GetMakefile()->GetTargets().begin();
- l != lg->GetMakefile()->GetTargets().end(); l++)
- {
- if((l->second.GetType() == cmTarget::EXECUTABLE) ||
- (l->second.GetType() == cmTarget::STATIC_LIBRARY) ||
- (l->second.GetType() == cmTarget::SHARED_LIBRARY) ||
- (l->second.GetType() == cmTarget::MODULE_LIBRARY) ||
- (l->second.GetType() == cmTarget::UTILITY))
- {
- // Add this to the list of depends rules in this directory.
- std::string tname = lg->GetRelativeTargetDirectory(l->second);
- tname += "/clean";
- all_tgts.push_back(tname);
- }
- }
-
- // write the directory rule add in the subdirs
- std::vector<cmLocalGenerator *> subdirs = lg->GetChildren();
-
- // for each subdir add the directory depend
- std::vector<cmLocalGenerator *>::iterator sdi = subdirs.begin();
- for (; sdi != subdirs.end(); ++sdi)
- {
- cmLocalUnixMakefileGenerator3 * lg2 =
- static_cast<cmLocalUnixMakefileGenerator3 *>(*sdi);
- dir = lg2->GetMakefile()->GetStartOutputDirectory();
- dir += "/clean";
- dir = lg2->Convert(dir.c_str(),cmLocalGenerator::HOME_OUTPUT,
- cmLocalGenerator::MAKEFILE);
- all_tgts.push_back(dir);
- }
-
- // write the directory clean rule
- commands.clear();
- lg->WriteMakeRule(ruleFileStream, "Convenience name for directory clean.",
- makeTargetName.c_str(), all_tgts, commands);
- }
- }
- //----------------------------------------------------------------------------
- void
- cmGlobalUnixMakefileGenerator3
- ::WriteDirectoryRules2(std::ostream& ruleFileStream,
- cmLocalUnixMakefileGenerator3 *lg)
- {
- std::vector<std::string> depends;
- std::vector<std::string> commands;
- std::string localName;
- std::string makeTargetName;
- depends.push_back("cmake_check_build_system");
- if (lg->GetParent())
- {
- std::string dir = lg->GetMakefile()->GetStartOutputDirectory();
- dir = lg->Convert(dir.c_str(),cmLocalGenerator::HOME_OUTPUT,cmLocalGenerator::MAKEFILE);
- lg->WriteDivider(ruleFileStream);
- ruleFileStream
- << "# Directory level rules for directory "
- << dir << "\n\n";
-
- localName = dir;
- localName += "/directorystart";
- makeTargetName = dir;
- makeTargetName += "/directory";
-
- std::vector<std::string> all_tgts;
-
- // for all of out targets
- for (cmTargets::iterator l = lg->GetMakefile()->GetTargets().begin();
- l != lg->GetMakefile()->GetTargets().end(); l++)
- {
- if((l->second.GetType() == cmTarget::EXECUTABLE) ||
- (l->second.GetType() == cmTarget::STATIC_LIBRARY) ||
- (l->second.GetType() == cmTarget::SHARED_LIBRARY) ||
- (l->second.GetType() == cmTarget::MODULE_LIBRARY) ||
- (l->second.GetType() == cmTarget::UTILITY))
- {
- // Add this to the list of depends rules in this directory.
- if(l->second.IsInAll())
- {
- std::string tname = lg->GetRelativeTargetDirectory(l->second);
- tname += "/all";
- all_tgts.push_back(tname);
- }
- }
- }
-
- // write the directory rule add in the subdirs
- std::vector<cmLocalGenerator *> subdirs = lg->GetChildren();
-
- // for each subdir add the directory depend
- std::vector<cmLocalGenerator *>::iterator sdi = subdirs.begin();
- for (; sdi != subdirs.end(); ++sdi)
- {
- cmLocalUnixMakefileGenerator3 * lg2 =
- static_cast<cmLocalUnixMakefileGenerator3 *>(*sdi);
- dir = lg2->GetMakefile()->GetStartOutputDirectory();
- dir += "/directory";
- dir = lg2->Convert(dir.c_str(),cmLocalGenerator::HOME_OUTPUT,
- cmLocalGenerator::MAKEFILE);
- all_tgts.push_back(dir);
- }
-
- // write the directory rule
- commands.clear();
- commands.push_back
- (lg->GetRecursiveMakeCall("CMakeFiles/Makefile2",
- makeTargetName.c_str()));
-
- // Write the rule.
- lg->WriteMakeRule(ruleFileStream, "Convenience name for directory.",
- localName.c_str(), depends, commands);
- // Write the rule.
- commands.clear();
- lg->WriteMakeRule(ruleFileStream, "Convenience name for directory.",
- makeTargetName.c_str(), all_tgts, commands);
- }
- // now do the clean targets
- if (lg->GetParent())
- {
- std::string dir = lg->GetMakefile()->GetStartOutputDirectory();
- dir = lg->Convert(dir.c_str(),cmLocalGenerator::HOME_OUTPUT,cmLocalGenerator::MAKEFILE);
- makeTargetName = dir;
- makeTargetName += "/clean";
-
- std::vector<std::string> all_tgts;
-
- // for all of out targets
- for (cmTargets::iterator l = lg->GetMakefile()->GetTargets().begin();
- l != lg->GetMakefile()->GetTargets().end(); l++)
- {
- if((l->second.GetType() == cmTarget::EXECUTABLE) ||
- (l->second.GetType() == cmTarget::STATIC_LIBRARY) ||
- (l->second.GetType() == cmTarget::SHARED_LIBRARY) ||
- (l->second.GetType() == cmTarget::MODULE_LIBRARY) ||
- (l->second.GetType() == cmTarget::UTILITY))
- {
- // Add this to the list of depends rules in this directory.
- std::string tname = lg->GetRelativeTargetDirectory(l->second);
- tname += "/clean";
- all_tgts.push_back(tname);
- }
- }
-
- // write the directory rule add in the subdirs
- std::vector<cmLocalGenerator *> subdirs = lg->GetChildren();
-
- // for each subdir add the directory depend
- std::vector<cmLocalGenerator *>::iterator sdi = subdirs.begin();
- for (; sdi != subdirs.end(); ++sdi)
- {
- cmLocalUnixMakefileGenerator3 * lg2 =
- static_cast<cmLocalUnixMakefileGenerator3 *>(*sdi);
- dir = lg2->GetMakefile()->GetStartOutputDirectory();
- dir += "/clean";
- dir = lg2->Convert(dir.c_str(),cmLocalGenerator::HOME_OUTPUT,
- cmLocalGenerator::MAKEFILE);
- all_tgts.push_back(dir);
- }
-
- // write the directory clean rule
- commands.clear();
- lg->WriteMakeRule(ruleFileStream, "Convenience name for directory clean.",
- makeTargetName.c_str(), all_tgts, commands);
- }
- }
- //----------------------------------------------------------------------------
- void
- cmGlobalUnixMakefileGenerator3
- ::WriteConvenienceRules(std::ostream& ruleFileStream,
- cmLocalUnixMakefileGenerator3 *lg,
- std::set<cmStdString> &emitted)
- {
- std::vector<std::string> depends;
- std::vector<std::string> commands;
- // write the directory level rules for this local gen
- //this->WriteDirectoryRules(ruleFileStream,lg);
-
- depends.push_back("cmake_check_build_system");
- // for each target Generate the rule files for each target.
- cmTargets& targets = lg->GetMakefile()->GetTargets();
- for(cmTargets::iterator t = targets.begin(); t != targets.end(); ++t)
- {
- if((t->second.GetType() == cmTarget::EXECUTABLE) ||
- (t->second.GetType() == cmTarget::STATIC_LIBRARY) ||
- (t->second.GetType() == cmTarget::SHARED_LIBRARY) ||
- (t->second.GetType() == cmTarget::MODULE_LIBRARY) ||
- (t->second.GetType() == cmTarget::UTILITY))
- {
- // Don't emit the same rule twice (e.g. two targets with the same
- // simple name)
- if(t->second.GetName() &&
- strlen(t->second.GetName()) &&
- emitted.insert(t->second.GetName()).second)
- {
- // Add a rule to build the target by name.
- lg->WriteDivider(ruleFileStream);
- ruleFileStream
- << "# Target rules for targets named "
- << t->second.GetName() << "\n\n";
-
- // Write the rule.
- commands.clear();
- commands.push_back(lg->GetRecursiveMakeCall("CMakeFiles/Makefile2",
- t->second.GetName()));
- depends.clear();
- depends.push_back("cmake_check_build_system");
- lg->WriteMakeRule(ruleFileStream,
- "Build rule for target.",
- t->second.GetName(), depends, commands);
- }
- }
- }
- }
- //----------------------------------------------------------------------------
- void
- cmGlobalUnixMakefileGenerator3
- ::WriteConvenienceRules2(std::ostream& ruleFileStream,
- cmLocalUnixMakefileGenerator3 *lg,
- bool exclude)
- {
- std::vector<std::string> depends;
- std::vector<std::string> commands;
- std::string localName;
- std::string makeTargetName;
- // write the directory level rules for this local gen
- this->WriteDirectoryRules2(ruleFileStream,lg);
-
- depends.push_back("cmake_check_build_system");
- // for each target Generate the rule files for each target.
- cmTargets& targets = lg->GetMakefile()->GetTargets();
- for(cmTargets::iterator t = targets.begin(); t != targets.end(); ++t)
- {
- if (((t->second.GetType() == cmTarget::EXECUTABLE) ||
- (t->second.GetType() == cmTarget::STATIC_LIBRARY) ||
- (t->second.GetType() == cmTarget::SHARED_LIBRARY) ||
- (t->second.GetType() == cmTarget::MODULE_LIBRARY) ||
- (t->second.GetType() == cmTarget::UTILITY)) &&
- t->second.GetName() &&
- strlen(t->second.GetName()))
- {
- bool needRequiresStep =
- this->NeedRequiresStep(lg,t->second.GetName());
- // Add a rule to build the target by name.
- localName = lg->GetRelativeTargetDirectory(t->second);
- std::string makefileName = localName;
- makefileName += "/build.make";
-
- lg->WriteDivider(ruleFileStream);
- ruleFileStream
- << "# Target rules for target "
- << localName << "\n\n";
-
- commands.clear();
- if (t->second.GetType() != cmTarget::UTILITY)
- {
- makeTargetName = localName;
- makeTargetName += "/depend";
- commands.push_back(lg->GetRecursiveMakeCall(makefileName.c_str(),
- makeTargetName.c_str()));
-
- // add requires if we need it for this generator
- if (needRequiresStep)
- {
- makeTargetName = localName;
- makeTargetName += "/requires";
- commands.push_back(lg->GetRecursiveMakeCall(makefileName.c_str(),
- makeTargetName.c_str()));
- }
- }
- makeTargetName = localName;
- makeTargetName += "/build";
- commands.push_back(lg->GetRecursiveMakeCall(makefileName.c_str(),
- makeTargetName.c_str()));
- // Write the rule.
- localName += "/all";
- depends.clear();
- this->AppendGlobalTargetDepends(depends,t->second);
- lg->WriteMakeRule(ruleFileStream, "All Build rule for target.",
- localName.c_str(), depends, commands);
- // add the all/all dependency
- if (!exclude && t->second.IsInAll())
- {
- depends.clear();
- depends.push_back(localName);
- commands.clear();
- lg->WriteMakeRule(ruleFileStream, "All Build rule for target.",
- "all", depends, commands);
- }
- // Write the rule.
- commands.clear();
- commands.push_back(lg->GetRecursiveMakeCall("CMakeFiles/Makefile2",
- localName.c_str()));
- depends.clear();
- depends.push_back("cmake_check_build_system");
- localName = lg->GetRelativeTargetDirectory(t->second);
- localName += "/rule";
- lg->WriteMakeRule(ruleFileStream,
- "Build rule for subdir invocation for target.",
- localName.c_str(), depends, commands);
- // Add a target with the canonical name (no prefix, suffix or path).
- commands.clear();
- depends.clear();
- depends.push_back(localName);
- lg->WriteMakeRule(ruleFileStream, "Convenience name for target.",
- t->second.GetName(), depends, commands);
- // add the clean rule
- localName = lg->GetRelativeTargetDirectory(t->second);
- makeTargetName = localName;
- makeTargetName += "/clean";
- depends.clear();
- commands.clear();
- commands.push_back(lg->GetRecursiveMakeCall(makefileName.c_str(),
- makeTargetName.c_str()));
- lg->WriteMakeRule(ruleFileStream, "clean rule for target.",
- makeTargetName.c_str(), depends, commands);
- commands.clear();
- depends.push_back(makeTargetName);
- lg->WriteMakeRule(ruleFileStream, "clean rule for target.",
- "clean", depends, commands);
- }
- }
- }
- //----------------------------------------------------------------------------
- void
- cmGlobalUnixMakefileGenerator3
- ::AppendGlobalTargetDepends(std::vector<std::string>& depends,
- cmTarget& target)
- {
- // Keep track of dependencies already listed.
- std::set<cmStdString> emitted;
- // A target should not depend on itself.
- emitted.insert(target.GetName());
-
- // Loop over all library dependencies but not for static libs
- if (target.GetType() != cmTarget::STATIC_LIBRARY)
- {
- const cmTarget::LinkLibraries& tlibs = target.GetLinkLibraries();
- for(cmTarget::LinkLibraries::const_iterator lib = tlibs.begin();
- lib != tlibs.end(); ++lib)
- {
- // Don't emit the same library twice for this target.
- if(emitted.insert(lib->first).second)
- {
- // Add this dependency.
- this->AppendAnyGlobalDepend(depends, lib->first.c_str(), emitted);
- }
- }
- }
-
- // Loop over all utility dependencies.
- const std::set<cmStdString>& tutils = target.GetUtilities();
- for(std::set<cmStdString>::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->AppendAnyGlobalDepend(depends, util->c_str(), emitted);
- }
- }
- }
- //----------------------------------------------------------------------------
- void
- cmGlobalUnixMakefileGenerator3
- ::AppendAnyGlobalDepend(std::vector<std::string>& depends, const char* name,
- std::set<cmStdString>& emitted)
- {
- cmTarget *result;
-
- // search each local generator until a match is found
- unsigned int i;
- for (i = 0; i < m_LocalGenerators.size(); ++i)
- {
- // search all targets
- result = m_LocalGenerators[i]->GetMakefile()->FindTarget(name);
- // if a match was found then ...
- if (result)
- {
- cmLocalUnixMakefileGenerator3 *lg3 =
- static_cast<cmLocalUnixMakefileGenerator3 *>(m_LocalGenerators[i]);
- std::string tgtName = lg3->GetRelativeTargetDirectory(*result);
- tgtName += "/all";
- depends.push_back(tgtName);
- if(result->GetType() == cmTarget::STATIC_LIBRARY)
- {
- const cmTarget::LinkLibraries& tlibs = result->GetLinkLibraries();
- for(cmTarget::LinkLibraries::const_iterator lib = tlibs.begin();
- lib != tlibs.end(); ++lib)
- {
- // Don't emit the same library twice for this target.
- if(emitted.insert(lib->first).second)
- {
- // Add this dependency.
- this->AppendAnyGlobalDepend(depends, lib->first.c_str(),
- emitted);
- }
- }
- }
- return;
- }
- }
- }
- //----------------------------------------------------------------------------
- void
- cmGlobalUnixMakefileGenerator3::WriteHelpRule(std::ostream& ruleFileStream)
- {
- cmLocalUnixMakefileGenerator3 *lg =
- static_cast<cmLocalUnixMakefileGenerator3 *>(m_LocalGenerators[0]);
- // add the help target
- std::string path;
- std::vector<std::string> no_depends;
- std::vector<std::string> commands;
- lg->AppendEcho(commands,
- "The following are some of the valid targets for this Makefile:");
- 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;
- // for each local generator
- unsigned int i;
- for (i = 0; i < m_LocalGenerators.size(); ++i)
- {
- lg = static_cast<cmLocalUnixMakefileGenerator3 *>(m_LocalGenerators[i]);
-
- // for each target Generate the rule files for each target.
- cmTargets& targets = lg->GetMakefile()->GetTargets();
- for(cmTargets::iterator t = targets.begin(); t != targets.end(); ++t)
- {
- if((t->second.GetType() == cmTarget::EXECUTABLE) ||
- (t->second.GetType() == cmTarget::STATIC_LIBRARY) ||
- (t->second.GetType() == cmTarget::SHARED_LIBRARY) ||
- (t->second.GetType() == cmTarget::MODULE_LIBRARY) ||
- (t->second.GetType() == cmTarget::UTILITY))
- {
- if(emittedTargets.insert(t->second.GetName()).second)
- {
- path = "... ";
- path += t->second.GetName();
- lg->AppendEcho(commands,path.c_str());
- }
- }
- }
- }
- lg->WriteMakeRule(ruleFileStream, "Help Target",
- "help:",
- no_depends, commands);
- ruleFileStream << "\n\n";
- }
- bool cmGlobalUnixMakefileGenerator3
- ::NeedRequiresStep(cmLocalUnixMakefileGenerator3 *lg,const char *name)
- {
- std::map<cmStdString,cmLocalUnixMakefileGenerator3::IntegrityCheckSet>&
- checkSet = lg->GetIntegrityCheckSet()[name];
- for(std::map<cmStdString,
- cmLocalUnixMakefileGenerator3::IntegrityCheckSet>::const_iterator
- l = checkSet.begin(); l != checkSet.end(); ++l)
- {
- std::string name2 = "CMAKE_NEEDS_REQUIRES_STEP_";
- name2 += l->first;
- name2 += "_FLAG";
- if(lg->GetMakefile()->GetDefinition(name2.c_str()))
- {
- return true;
- }
- }
- return false;
- }
|