2005-05-05 20:45:53 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
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"
|
2006-05-23 17:11:46 +04:00
|
|
|
#include "cmSourceFile.h"
|
|
|
|
#include "cmTarget.h"
|
2005-05-05 20:45:53 +04:00
|
|
|
|
|
|
|
cmGlobalUnixMakefileGenerator3::cmGlobalUnixMakefileGenerator3()
|
|
|
|
{
|
|
|
|
// This type of makefile always requires unix style paths
|
2006-03-15 19:02:08 +03:00
|
|
|
this->ForceUnixPaths = true;
|
|
|
|
this->FindMakeProgramFile = "CMakeUnixFindMake.cmake";
|
2006-04-27 05:31:39 +04:00
|
|
|
this->ToolSupportsColor = true;
|
2006-06-19 04:05:56 +04:00
|
|
|
#ifdef _WIN32
|
|
|
|
this->UseLinkScript = false;
|
|
|
|
#else
|
2006-06-16 00:17:11 +04:00
|
|
|
this->UseLinkScript = true;
|
2006-06-19 04:05:56 +04:00
|
|
|
#endif
|
2005-05-05 20:45:53 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void cmGlobalUnixMakefileGenerator3
|
|
|
|
::EnableLanguage(std::vector<std::string>const& languages, cmMakefile *mf)
|
|
|
|
{
|
|
|
|
this->cmGlobalGenerator::EnableLanguage(languages, mf);
|
|
|
|
std::string path;
|
|
|
|
for(std::vector<std::string>::const_iterator l = languages.begin();
|
|
|
|
l != languages.end(); ++l)
|
|
|
|
{
|
2005-09-02 01:14:56 +04:00
|
|
|
if(*l == "NONE")
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
2005-05-05 20:45:53 +04:00
|
|
|
const char* lang = l->c_str();
|
|
|
|
std::string langComp = "CMAKE_";
|
|
|
|
langComp += lang;
|
|
|
|
langComp += "_COMPILER";
|
|
|
|
|
|
|
|
if(!mf->GetDefinition(langComp.c_str()))
|
|
|
|
{
|
2006-05-11 18:40:28 +04:00
|
|
|
cmSystemTools::Error(langComp.c_str(),
|
|
|
|
" not set, after EnableLanguage");
|
2005-05-05 20:45:53 +04:00
|
|
|
continue;
|
|
|
|
}
|
2005-12-23 00:42:36 +03:00
|
|
|
const char* name = mf->GetRequiredDefinition(langComp.c_str());
|
|
|
|
if(!cmSystemTools::FileIsFullPath(name))
|
|
|
|
{
|
|
|
|
path = cmSystemTools::FindProgram(name);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
path = name;
|
|
|
|
}
|
|
|
|
if(path.size() == 0 || !cmSystemTools::FileExists(path.c_str()))
|
2005-05-05 20:45:53 +04:00
|
|
|
{
|
|
|
|
std::string message = "your ";
|
|
|
|
message += lang;
|
2005-12-23 00:42:36 +03:00
|
|
|
message += " compiler: \"";
|
|
|
|
message += name;
|
|
|
|
message += "\" was not found. Please set ";
|
|
|
|
message += langComp;
|
|
|
|
message += " to a valid compiler path or name.";
|
|
|
|
cmSystemTools::Error(message.c_str());
|
|
|
|
path = name;
|
2005-05-05 20:45:53 +04:00
|
|
|
}
|
2005-12-23 00:42:36 +03:00
|
|
|
std::string doc = lang;
|
|
|
|
doc += " compiler.";
|
|
|
|
mf->AddCacheDefinition(langComp.c_str(), path.c_str(),
|
|
|
|
doc.c_str(), cmCacheManager::FILEPATH);
|
2005-05-05 20:45:53 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
///! Create a local generator appropriate to this Global Generator
|
|
|
|
cmLocalGenerator *cmGlobalUnixMakefileGenerator3::CreateLocalGenerator()
|
|
|
|
{
|
|
|
|
cmLocalGenerator* lg = new cmLocalUnixMakefileGenerator3;
|
|
|
|
lg->SetGlobalGenerator(this);
|
|
|
|
return lg;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2006-05-11 18:40:28 +04:00
|
|
|
void cmGlobalUnixMakefileGenerator3
|
|
|
|
::GetDocumentation(cmDocumentationEntry& entry) const
|
2005-05-05 20:45:53 +04:00
|
|
|
{
|
|
|
|
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.";
|
|
|
|
}
|
|
|
|
|
2006-04-11 19:06:19 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
cmGlobalUnixMakefileGenerator3
|
|
|
|
::AddMultipleOutputPair(const char* depender, const char* dependee)
|
|
|
|
{
|
|
|
|
MultipleOutputPairsType::value_type p(depender, dependee);
|
|
|
|
this->MultipleOutputPairs.insert(p);
|
|
|
|
}
|
|
|
|
|
2006-05-23 17:11:46 +04:00
|
|
|
|
2005-05-06 22:49:38 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmGlobalUnixMakefileGenerator3::Generate()
|
|
|
|
{
|
2006-07-11 17:55:27 +04:00
|
|
|
// first do superclass method
|
|
|
|
this->cmGlobalGenerator::Generate();
|
|
|
|
|
2006-05-25 18:55:24 +04:00
|
|
|
// initialize progress
|
2006-05-23 17:11:46 +04:00
|
|
|
unsigned int i;
|
2006-07-11 17:55:27 +04:00
|
|
|
unsigned long total = 0;
|
2006-05-23 17:11:46 +04:00
|
|
|
for (i = 0; i < this->LocalGenerators.size(); ++i)
|
|
|
|
{
|
2006-07-11 17:55:27 +04:00
|
|
|
cmLocalUnixMakefileGenerator3 *lg =
|
|
|
|
static_cast<cmLocalUnixMakefileGenerator3 *>(this->LocalGenerators[i]);
|
|
|
|
total += lg->GetNumberOfProgressActions();
|
2006-05-23 17:11:46 +04:00
|
|
|
}
|
2005-05-06 22:49:38 +04:00
|
|
|
|
2006-07-12 21:11:27 +04:00
|
|
|
// write each target's progress.make this loop is done twice. Bascially the
|
|
|
|
// Generate pass counts all the actions, the first loop below determines
|
|
|
|
// how many actions have progress updates for each target and writes to
|
|
|
|
// corrrect variable values for everything except the all targets. The
|
|
|
|
// second loop actually writes out correct values for the all targets as
|
|
|
|
// well. This is because the all targets require more information that is
|
|
|
|
// computed in the first loop.
|
2006-07-11 17:55:27 +04:00
|
|
|
unsigned long current = 0;
|
2006-07-12 21:11:27 +04:00
|
|
|
for (i = 0; i < this->LocalGenerators.size(); ++i)
|
2006-07-11 17:55:27 +04:00
|
|
|
{
|
|
|
|
cmLocalUnixMakefileGenerator3 *lg =
|
|
|
|
static_cast<cmLocalUnixMakefileGenerator3 *>(this->LocalGenerators[i]);
|
|
|
|
lg->WriteProgressVariables(total,current);
|
|
|
|
}
|
2006-07-12 21:11:27 +04:00
|
|
|
for (i = 0; i < this->LocalGenerators.size(); ++i)
|
2006-07-11 17:55:27 +04:00
|
|
|
{
|
|
|
|
cmLocalUnixMakefileGenerator3 *lg =
|
2006-07-12 21:11:27 +04:00
|
|
|
static_cast<cmLocalUnixMakefileGenerator3 *>(this->LocalGenerators[i]);
|
|
|
|
lg->WriteAllProgressVariable();
|
2006-07-11 17:55:27 +04:00
|
|
|
}
|
|
|
|
|
2005-05-06 22:49:38 +04:00
|
|
|
// write the main makefile
|
2005-05-31 19:46:49 +04:00
|
|
|
this->WriteMainMakefile2();
|
2005-05-06 22:49:38 +04:00
|
|
|
this->WriteMainCMakefile();
|
|
|
|
}
|
|
|
|
|
2005-05-31 19:46:49 +04:00
|
|
|
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();
|
2006-06-14 20:28:32 +04:00
|
|
|
makefileName += cmake::GetCMakeFilesDirectory();
|
|
|
|
makefileName += "/Makefile2";
|
2005-05-31 19:46:49 +04:00
|
|
|
cmGeneratedFileStream makefileStream(makefileName.c_str());
|
|
|
|
if(!makefileStream)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// get a local generator for some useful methods
|
|
|
|
cmLocalUnixMakefileGenerator3 *lg =
|
2006-03-15 19:02:08 +03:00
|
|
|
static_cast<cmLocalUnixMakefileGenerator3 *>(this->LocalGenerators[0]);
|
2005-05-31 19:46:49 +04:00
|
|
|
|
|
|
|
// Write the do not edit header.
|
|
|
|
lg->WriteDisclaimer(makefileStream);
|
2006-02-15 18:34:11 +03:00
|
|
|
|
2005-05-31 19:46:49 +04:00
|
|
|
// 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,
|
2006-02-16 00:35:16 +03:00
|
|
|
no_commands, true);
|
2005-05-31 19:46:49 +04:00
|
|
|
|
2006-01-17 18:21:45 +03:00
|
|
|
depends.clear();
|
2006-02-16 00:35:16 +03:00
|
|
|
|
2006-02-17 02:50:16 +03:00
|
|
|
// The all and preinstall rules might never have any dependencies
|
|
|
|
// added to them.
|
2006-03-15 19:02:08 +03:00
|
|
|
if(this->EmptyRuleHackDepends != "")
|
2006-02-17 02:50:16 +03:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
depends.push_back(this->EmptyRuleHackDepends);
|
2006-02-17 02:50:16 +03:00
|
|
|
}
|
|
|
|
|
2005-05-31 19:46:49 +04:00
|
|
|
// Write and empty all:
|
|
|
|
lg->WriteMakeRule(makefileStream,
|
|
|
|
"The main recursive all target", "all",
|
2006-02-16 00:35:16 +03:00
|
|
|
depends, no_commands, true);
|
2005-05-31 19:46:49 +04:00
|
|
|
|
2006-02-16 23:19:00 +03:00
|
|
|
// Write an empty preinstall:
|
|
|
|
lg->WriteMakeRule(makefileStream,
|
|
|
|
"The main recursive preinstall target", "preinstall",
|
|
|
|
depends, no_commands, true);
|
|
|
|
|
2006-02-16 00:35:16 +03:00
|
|
|
// Write out the "special" stuff
|
|
|
|
lg->WriteSpecialTargetsTop(makefileStream);
|
2005-05-31 19:46:49 +04:00
|
|
|
|
|
|
|
// write the target convenience rules
|
|
|
|
unsigned int i;
|
2006-03-15 19:02:08 +03:00
|
|
|
for (i = 0; i < this->LocalGenerators.size(); ++i)
|
2005-05-31 19:46:49 +04:00
|
|
|
{
|
2006-05-11 18:40:28 +04:00
|
|
|
lg =
|
|
|
|
static_cast<cmLocalUnixMakefileGenerator3 *>(this->LocalGenerators[i]);
|
2005-05-31 19:46:49 +04:00
|
|
|
// 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);
|
|
|
|
}
|
|
|
|
|
2006-03-15 19:02:08 +03:00
|
|
|
lg = static_cast<cmLocalUnixMakefileGenerator3 *>(this->LocalGenerators[0]);
|
2005-05-31 19:46:49 +04:00
|
|
|
lg->WriteSpecialTargetsBottom(makefileStream);
|
|
|
|
}
|
|
|
|
|
2005-05-06 22:49:38 +04:00
|
|
|
|
2005-05-05 20:45:53 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
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.
|
2005-05-06 22:49:38 +04:00
|
|
|
std::string cmakefileName =
|
|
|
|
this->GetCMakeInstance()->GetHomeOutputDirectory();
|
2006-06-14 20:28:32 +04:00
|
|
|
cmakefileName += cmake::GetCMakeFilesDirectory();
|
|
|
|
cmakefileName += "/Makefile.cmake";
|
2005-05-05 20:45:53 +04:00
|
|
|
cmGeneratedFileStream cmakefileStream(cmakefileName.c_str());
|
|
|
|
if(!cmakefileStream)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2005-05-06 22:49:38 +04:00
|
|
|
|
|
|
|
std::string makefileName =
|
|
|
|
this->GetCMakeInstance()->GetHomeOutputDirectory();
|
|
|
|
makefileName += "/Makefile";
|
|
|
|
|
2005-05-05 20:45:53 +04:00
|
|
|
// get a local generator for some useful methods
|
|
|
|
cmLocalUnixMakefileGenerator3 *lg =
|
2006-03-15 19:02:08 +03:00
|
|
|
static_cast<cmLocalUnixMakefileGenerator3 *>(this->LocalGenerators[0]);
|
2005-05-05 20:45:53 +04:00
|
|
|
|
|
|
|
// Write the do not edit header.
|
|
|
|
lg->WriteDisclaimer(cmakefileStream);
|
|
|
|
|
2005-05-12 18:49:56 +04:00
|
|
|
// Save the generator name
|
|
|
|
cmakefileStream
|
|
|
|
<< "# The generator used is:\n"
|
|
|
|
<< "SET(CMAKE_DEPENDS_GENERATOR \"" << this->GetName() << "\")\n\n";
|
|
|
|
|
2005-05-05 20:45:53 +04:00
|
|
|
// for each cmMakefile get its list of dependencies
|
|
|
|
std::vector<std::string> lfiles;
|
2006-03-15 19:02:08 +03:00
|
|
|
for (unsigned int i = 0; i < this->LocalGenerators.size(); ++i)
|
2005-05-05 20:45:53 +04:00
|
|
|
{
|
2006-05-11 18:40:28 +04:00
|
|
|
lg =
|
|
|
|
static_cast<cmLocalUnixMakefileGenerator3 *>(this->LocalGenerators[i]);
|
2005-05-05 20:45:53 +04:00
|
|
|
|
|
|
|
// 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
|
2006-03-15 19:02:08 +03:00
|
|
|
lg = static_cast<cmLocalUnixMakefileGenerator3 *>(this->LocalGenerators[0]);
|
2005-05-05 20:45:53 +04:00
|
|
|
|
|
|
|
// 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"
|
2006-05-11 18:40:28 +04:00
|
|
|
<< " \""
|
|
|
|
<< lg->Convert(cache.c_str(),
|
|
|
|
cmLocalGenerator::START_OUTPUT).c_str() << "\"\n";
|
2005-05-05 20:45:53 +04:00
|
|
|
for(std::vector<std::string>::const_iterator i = lfiles.begin();
|
|
|
|
i != lfiles.end(); ++i)
|
|
|
|
{
|
|
|
|
cmakefileStream
|
2006-05-11 18:40:28 +04:00
|
|
|
<< " \""
|
|
|
|
<< lg->Convert(i->c_str(), cmLocalGenerator::START_OUTPUT).c_str()
|
2005-05-05 20:45:53 +04:00
|
|
|
<< "\"\n";
|
|
|
|
}
|
|
|
|
cmakefileStream
|
|
|
|
<< " )\n\n";
|
|
|
|
|
|
|
|
// Build the path to the cache check file.
|
|
|
|
std::string check = this->GetCMakeInstance()->GetHomeOutputDirectory();
|
2006-06-14 20:28:32 +04:00
|
|
|
check += cmake::GetCMakeFilesDirectory();
|
|
|
|
check += "/cmake.check_cache";
|
2005-05-05 20:45:53 +04:00
|
|
|
|
|
|
|
// Set the corresponding makefile in the cmake file.
|
|
|
|
cmakefileStream
|
|
|
|
<< "# The corresponding makefile is:\n"
|
|
|
|
<< "SET(CMAKE_MAKEFILE_OUTPUTS\n"
|
2006-05-11 18:40:28 +04:00
|
|
|
<< " \""
|
|
|
|
<< lg->Convert(makefileName.c_str(),
|
|
|
|
cmLocalGenerator::START_OUTPUT).c_str() << "\"\n"
|
|
|
|
<< " \""
|
|
|
|
<< lg->Convert(check.c_str(),
|
|
|
|
cmLocalGenerator::START_OUTPUT).c_str() << "\"\n";
|
2005-05-05 20:45:53 +04:00
|
|
|
|
|
|
|
// add in all the directory information files
|
|
|
|
std::string tmpStr;
|
2006-03-15 19:02:08 +03:00
|
|
|
for (unsigned int i = 0; i < this->LocalGenerators.size(); ++i)
|
2005-05-05 20:45:53 +04:00
|
|
|
{
|
2006-05-11 18:40:28 +04:00
|
|
|
lg =
|
|
|
|
static_cast<cmLocalUnixMakefileGenerator3 *>(this->LocalGenerators[i]);
|
2005-05-05 20:45:53 +04:00
|
|
|
tmpStr = lg->GetMakefile()->GetStartOutputDirectory();
|
2006-06-14 20:28:32 +04:00
|
|
|
tmpStr += cmake::GetCMakeFilesDirectory();
|
|
|
|
tmpStr += "/CMakeDirectoryInformation.cmake";
|
2005-05-13 17:54:30 +04:00
|
|
|
cmakefileStream << " \"" <<
|
2006-05-11 18:40:28 +04:00
|
|
|
lg->Convert(tmpStr.c_str(),cmLocalGenerator::HOME_OUTPUT).c_str()
|
|
|
|
<< "\"\n";
|
|
|
|
const std::vector<std::string>& outfiles =
|
|
|
|
lg->GetMakefile()->GetOutputFiles();
|
2006-04-10 21:53:00 +04:00
|
|
|
for(std::vector<std::string>::const_iterator k= outfiles.begin();
|
|
|
|
k != outfiles.end(); ++k)
|
|
|
|
{
|
|
|
|
cmakefileStream << " \"" <<
|
2006-05-11 18:40:28 +04:00
|
|
|
lg->Convert(k->c_str(),cmLocalGenerator::HOME_OUTPUT).c_str()
|
|
|
|
<< "\"\n";
|
2006-04-10 21:53:00 +04:00
|
|
|
}
|
2005-05-05 20:45:53 +04:00
|
|
|
}
|
|
|
|
cmakefileStream << " )\n\n";
|
2005-05-06 22:49:38 +04:00
|
|
|
|
2006-05-11 18:40:28 +04:00
|
|
|
this->WriteMainCMakefileLanguageRules(cmakefileStream,
|
|
|
|
this->LocalGenerators);
|
2006-04-11 19:06:19 +04:00
|
|
|
|
|
|
|
if(!this->MultipleOutputPairs.empty())
|
|
|
|
{
|
|
|
|
cmakefileStream
|
|
|
|
<< "\n"
|
|
|
|
<< "SET(CMAKE_MULTIPLE_OUTPUT_PAIRS\n";
|
|
|
|
for(MultipleOutputPairsType::const_iterator pi =
|
|
|
|
this->MultipleOutputPairs.begin();
|
|
|
|
pi != this->MultipleOutputPairs.end(); ++pi)
|
|
|
|
{
|
|
|
|
cmakefileStream << " \"" << pi->first << "\" \""
|
|
|
|
<< pi->second << "\"\n";
|
|
|
|
}
|
|
|
|
cmakefileStream << " )\n\n";
|
|
|
|
}
|
2005-05-06 22:49:38 +04:00
|
|
|
}
|
2006-04-11 19:06:19 +04:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmGlobalUnixMakefileGenerator3::CheckMultipleOutputs(cmMakefile* mf,
|
|
|
|
bool verbose)
|
|
|
|
{
|
|
|
|
// Get the string listing the multiple output pairs.
|
|
|
|
const char* pairs_string = mf->GetDefinition("CMAKE_MULTIPLE_OUTPUT_PAIRS");
|
|
|
|
if(!pairs_string)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert the string to a list and preserve empty entries.
|
|
|
|
std::vector<std::string> pairs;
|
|
|
|
cmSystemTools::ExpandListArgument(pairs_string, pairs, true);
|
|
|
|
for(std::vector<std::string>::const_iterator i = pairs.begin();
|
|
|
|
i != pairs.end(); ++i)
|
|
|
|
{
|
|
|
|
const std::string& depender = *i;
|
|
|
|
if(++i != pairs.end())
|
|
|
|
{
|
|
|
|
const std::string& dependee = *i;
|
|
|
|
|
|
|
|
// If the depender is missing then delete the dependee to make
|
|
|
|
// sure both will be regenerated.
|
|
|
|
if(cmSystemTools::FileExists(dependee.c_str()) &&
|
|
|
|
!cmSystemTools::FileExists(depender.c_str()))
|
|
|
|
{
|
|
|
|
if(verbose)
|
|
|
|
{
|
|
|
|
cmOStringStream msg;
|
|
|
|
msg << "Deleting primary custom command output \"" << dependee
|
|
|
|
<< "\" because another output \""
|
|
|
|
<< depender << "\" does not exist." << std::endl;
|
|
|
|
cmSystemTools::Stdout(msg.str().c_str());
|
|
|
|
}
|
|
|
|
cmSystemTools::RemoveFile(dependee.c_str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-05-06 22:49:38 +04:00
|
|
|
void cmGlobalUnixMakefileGenerator3
|
2005-07-27 17:49:37 +04:00
|
|
|
::WriteMainCMakefileLanguageRules(cmGeneratedFileStream& cmakefileStream,
|
2006-05-11 18:40:28 +04:00
|
|
|
std::vector<cmLocalGenerator *> &lGenerators
|
|
|
|
)
|
2005-05-06 22:49:38 +04:00
|
|
|
{
|
|
|
|
cmLocalUnixMakefileGenerator3 *lg;
|
|
|
|
|
2005-07-27 17:49:37 +04:00
|
|
|
// now list all the target info files
|
2005-05-05 20:45:53 +04:00
|
|
|
cmakefileStream
|
|
|
|
<< "# The set of files whose dependency integrity should be checked:\n";
|
|
|
|
cmakefileStream
|
2005-07-27 17:49:37 +04:00
|
|
|
<< "SET(CMAKE_DEPEND_INFO_FILES\n";
|
|
|
|
for (unsigned int i = 0; i < lGenerators.size(); ++i)
|
2005-05-05 20:45:53 +04:00
|
|
|
{
|
2005-07-27 17:49:37 +04:00
|
|
|
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++)
|
2005-05-05 20:45:53 +04:00
|
|
|
{
|
2005-08-02 19:06:16 +04:00
|
|
|
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";
|
|
|
|
}
|
2005-05-05 20:45:53 +04:00
|
|
|
}
|
|
|
|
}
|
2005-07-27 17:49:37 +04:00
|
|
|
cmakefileStream << " )\n";
|
2005-05-05 20:45:53 +04:00
|
|
|
}
|
|
|
|
|
2005-05-06 22:49:38 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
cmGlobalUnixMakefileGenerator3
|
2006-03-02 02:54:17 +03:00
|
|
|
::WriteDirectoryRule2(std::ostream& ruleFileStream,
|
|
|
|
cmLocalUnixMakefileGenerator3* lg,
|
|
|
|
const char* pass, bool check_all,
|
|
|
|
bool check_relink)
|
2005-05-06 22:49:38 +04:00
|
|
|
{
|
2006-03-02 02:54:17 +03:00
|
|
|
// Get the relative path to the subdirectory from the top.
|
|
|
|
std::string makeTarget = lg->GetMakefile()->GetStartOutputDirectory();
|
|
|
|
makeTarget += "/";
|
|
|
|
makeTarget += pass;
|
|
|
|
makeTarget = lg->Convert(makeTarget.c_str(),
|
|
|
|
cmLocalGenerator::HOME_OUTPUT,
|
|
|
|
cmLocalGenerator::MAKEFILE);
|
|
|
|
|
|
|
|
// The directory-level rule should depend on the target-level rules
|
|
|
|
// for all targets in the directory.
|
|
|
|
std::vector<std::string> depends;
|
|
|
|
for(cmTargets::iterator l = lg->GetMakefile()->GetTargets().begin();
|
|
|
|
l != lg->GetMakefile()->GetTargets().end(); ++l)
|
2005-05-13 22:13:00 +04:00
|
|
|
{
|
2006-03-02 02:54:17 +03:00
|
|
|
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))
|
2005-05-19 23:00:35 +04:00
|
|
|
{
|
2006-03-02 02:54:17 +03:00
|
|
|
// Add this to the list of depends rules in this directory.
|
|
|
|
if((!check_all || l->second.IsInAll()) &&
|
|
|
|
(!check_relink || l->second.NeedRelinkBeforeInstall()))
|
2005-05-19 23:00:35 +04:00
|
|
|
{
|
2006-03-02 02:54:17 +03:00
|
|
|
std::string tname = lg->GetRelativeTargetDirectory(l->second);
|
|
|
|
tname += "/";
|
|
|
|
tname += pass;
|
|
|
|
depends.push_back(tname);
|
2005-05-19 23:00:35 +04:00
|
|
|
}
|
|
|
|
}
|
2005-05-31 19:46:49 +04:00
|
|
|
}
|
|
|
|
|
2006-03-02 02:54:17 +03:00
|
|
|
// The directory-level rule should depend on the directory-level
|
|
|
|
// rules of the subdirectories.
|
2006-05-11 18:40:28 +04:00
|
|
|
for(std::vector<cmLocalGenerator*>::iterator sdi =
|
|
|
|
lg->GetChildren().begin(); sdi != lg->GetChildren().end(); ++sdi)
|
2005-05-31 19:46:49 +04:00
|
|
|
{
|
2006-03-02 02:54:17 +03:00
|
|
|
cmLocalUnixMakefileGenerator3* slg =
|
|
|
|
static_cast<cmLocalUnixMakefileGenerator3*>(*sdi);
|
|
|
|
std::string subdir = slg->GetMakefile()->GetStartOutputDirectory();
|
|
|
|
subdir += "/";
|
|
|
|
subdir += pass;
|
|
|
|
subdir = slg->Convert(subdir.c_str(),
|
|
|
|
cmLocalGenerator::HOME_OUTPUT,
|
|
|
|
cmLocalGenerator::MAKEFILE);
|
|
|
|
depends.push_back(subdir);
|
2005-05-31 19:46:49 +04:00
|
|
|
}
|
2006-03-02 02:54:17 +03:00
|
|
|
|
|
|
|
// Work-around for makes that drop rules that have no dependencies
|
|
|
|
// or commands.
|
2006-03-15 19:02:08 +03:00
|
|
|
if(depends.empty() && this->EmptyRuleHackDepends != "")
|
2006-03-02 02:54:17 +03:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
depends.push_back(this->EmptyRuleHackDepends);
|
2006-03-02 02:54:17 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Write the rule.
|
|
|
|
std::string doc = "Convenience name for \"";
|
|
|
|
doc += pass;
|
|
|
|
doc += "\" pass in the directory.";
|
|
|
|
std::vector<std::string> no_commands;
|
|
|
|
lg->WriteMakeRule(ruleFileStream, doc.c_str(),
|
|
|
|
makeTarget.c_str(), depends, no_commands, true);
|
2005-05-31 19:46:49 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
cmGlobalUnixMakefileGenerator3
|
2006-03-02 02:54:17 +03:00
|
|
|
::WriteDirectoryRules2(std::ostream& ruleFileStream,
|
|
|
|
cmLocalUnixMakefileGenerator3* lg)
|
2005-05-31 19:46:49 +04:00
|
|
|
{
|
2006-03-02 02:54:17 +03:00
|
|
|
// Only subdirectories need these rules.
|
|
|
|
if(!lg->GetParent())
|
2005-05-31 19:46:49 +04:00
|
|
|
{
|
2006-03-02 02:54:17 +03:00
|
|
|
return;
|
2005-05-13 22:13:00 +04:00
|
|
|
}
|
2005-05-25 23:09:06 +04:00
|
|
|
|
2006-03-02 02:54:17 +03:00
|
|
|
// Begin the directory-level rules section.
|
|
|
|
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";
|
|
|
|
|
|
|
|
// Write directory-level rules for "all".
|
|
|
|
this->WriteDirectoryRule2(ruleFileStream, lg, "all", true, false);
|
|
|
|
|
|
|
|
// Write directory-level rules for "clean".
|
|
|
|
this->WriteDirectoryRule2(ruleFileStream, lg, "clean", false, false);
|
|
|
|
|
|
|
|
// Write directory-level rules for "preinstall".
|
|
|
|
this->WriteDirectoryRule2(ruleFileStream, lg, "preinstall", false, true);
|
2005-05-31 18:16:28 +04:00
|
|
|
}
|
|
|
|
|
2006-05-02 17:56:42 +04:00
|
|
|
|
2006-05-11 18:40:28 +04:00
|
|
|
std::string cmGlobalUnixMakefileGenerator3
|
|
|
|
::GenerateBuildCommand(const char* makeProgram, const char *projectName,
|
|
|
|
const char* additionalOptions, const char *targetName,
|
2006-06-01 23:51:24 +04:00
|
|
|
const char* config, bool ignoreErrors, bool fast)
|
2006-05-02 17:56:42 +04:00
|
|
|
{
|
|
|
|
// Project name and config are not used yet.
|
|
|
|
(void)projectName;
|
|
|
|
(void)config;
|
|
|
|
|
2006-05-11 18:40:28 +04:00
|
|
|
std::string makeCommand =
|
|
|
|
cmSystemTools::ConvertToUnixOutputPath(makeProgram);
|
|
|
|
|
2006-05-02 17:56:42 +04:00
|
|
|
// Since we have full control over the invocation of nmake, let us
|
|
|
|
// make it quiet.
|
|
|
|
if ( strcmp(this->GetName(), "NMake Makefiles") == 0 )
|
|
|
|
{
|
|
|
|
makeCommand += " /NOLOGO ";
|
|
|
|
}
|
|
|
|
if ( ignoreErrors )
|
|
|
|
{
|
|
|
|
makeCommand += " -i";
|
|
|
|
}
|
|
|
|
if ( additionalOptions )
|
|
|
|
{
|
|
|
|
makeCommand += " ";
|
|
|
|
makeCommand += additionalOptions;
|
|
|
|
}
|
|
|
|
if ( targetName && strlen(targetName))
|
|
|
|
{
|
|
|
|
cmLocalUnixMakefileGenerator3 *lg;
|
|
|
|
if (this->LocalGenerators.size())
|
|
|
|
{
|
2006-05-11 18:40:28 +04:00
|
|
|
lg = static_cast<cmLocalUnixMakefileGenerator3 *>
|
|
|
|
(this->LocalGenerators[0]);
|
2006-05-02 17:56:42 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-05-11 18:40:28 +04:00
|
|
|
lg = static_cast<cmLocalUnixMakefileGenerator3 *>
|
|
|
|
(this->CreateLocalGenerator());
|
2006-05-02 17:56:42 +04:00
|
|
|
// set the Start directories
|
|
|
|
lg->GetMakefile()->SetStartDirectory
|
|
|
|
(this->CMakeInstance->GetStartDirectory());
|
|
|
|
lg->GetMakefile()->SetStartOutputDirectory
|
|
|
|
(this->CMakeInstance->GetStartOutputDirectory());
|
|
|
|
lg->GetMakefile()->MakeStartDirectoriesCurrent();
|
|
|
|
}
|
|
|
|
|
2006-05-02 20:44:09 +04:00
|
|
|
lg->SetupPathConversions();
|
2006-05-02 18:48:14 +04:00
|
|
|
makeCommand += " \"";
|
2006-05-02 17:56:42 +04:00
|
|
|
std::string tname = targetName;
|
2006-06-01 23:51:24 +04:00
|
|
|
if(fast)
|
|
|
|
{
|
|
|
|
tname += "/fast";
|
|
|
|
}
|
2006-05-02 17:56:42 +04:00
|
|
|
tname = lg->Convert(tname.c_str(),cmLocalGenerator::HOME_OUTPUT,
|
2006-05-03 23:17:55 +04:00
|
|
|
cmLocalGenerator::MAKEFILE);
|
2006-05-02 17:56:42 +04:00
|
|
|
tname = lg->ConvertToMakeTarget(tname.c_str());
|
|
|
|
makeCommand += tname.c_str();
|
|
|
|
makeCommand += "\"";
|
|
|
|
if (!this->LocalGenerators.size())
|
|
|
|
{
|
|
|
|
delete lg;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return makeCommand;
|
|
|
|
}
|
|
|
|
|
2005-05-31 18:16:28 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
cmGlobalUnixMakefileGenerator3
|
|
|
|
::WriteConvenienceRules(std::ostream& ruleFileStream,
|
2005-06-01 17:25:10 +04:00
|
|
|
std::set<cmStdString> &emitted)
|
2005-05-31 19:46:49 +04:00
|
|
|
{
|
|
|
|
std::vector<std::string> depends;
|
|
|
|
std::vector<std::string> commands;
|
|
|
|
|
|
|
|
depends.push_back("cmake_check_build_system");
|
2005-10-20 21:40:28 +04:00
|
|
|
|
|
|
|
// write the target convenience rules
|
|
|
|
unsigned int i;
|
|
|
|
cmLocalUnixMakefileGenerator3 *lg;
|
2006-03-15 19:02:08 +03:00
|
|
|
for (i = 0; i < this->LocalGenerators.size(); ++i)
|
2005-05-31 19:46:49 +04:00
|
|
|
{
|
2006-05-11 18:40:28 +04:00
|
|
|
lg = static_cast<cmLocalUnixMakefileGenerator3 *>
|
|
|
|
(this->LocalGenerators[i]);
|
2005-10-20 21:40:28 +04:00
|
|
|
// 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)
|
2005-05-31 19:46:49 +04:00
|
|
|
{
|
2006-06-01 22:09:21 +04:00
|
|
|
// 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)
|
2005-05-31 19:46:49 +04:00
|
|
|
{
|
2006-06-01 22:43:28 +04:00
|
|
|
// Handle user targets here. Global targets are handled in
|
|
|
|
// the local generator on a per-directory basis.
|
2006-06-01 22:09:21 +04:00
|
|
|
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))
|
2005-10-20 21:40:28 +04:00
|
|
|
{
|
|
|
|
// 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();
|
2006-06-14 20:28:32 +04:00
|
|
|
std::string tmp = cmake::GetCMakeFilesDirectoryPostSlash();
|
|
|
|
tmp += "Makefile2";
|
2006-02-15 18:34:11 +03:00
|
|
|
commands.push_back(lg->GetRecursiveMakeCall
|
2006-06-14 20:28:32 +04:00
|
|
|
(tmp.c_str(),t->second.GetName()));
|
2006-05-31 00:23:24 +04:00
|
|
|
depends.clear();
|
2005-10-20 21:40:28 +04:00
|
|
|
depends.push_back("cmake_check_build_system");
|
|
|
|
lg->WriteMakeRule(ruleFileStream,
|
|
|
|
"Build rule for target.",
|
2006-02-16 00:35:16 +03:00
|
|
|
t->second.GetName(), depends, commands,
|
|
|
|
true);
|
2006-05-02 17:56:42 +04:00
|
|
|
|
|
|
|
// Add a fast rule to build the target
|
|
|
|
std::string localName = lg->GetRelativeTargetDirectory(t->second);
|
|
|
|
std::string makefileName;
|
|
|
|
makefileName = localName;
|
|
|
|
makefileName += "/build.make";
|
|
|
|
depends.clear();
|
|
|
|
commands.clear();
|
|
|
|
std::string makeTargetName = localName;
|
|
|
|
makeTargetName += "/build";
|
|
|
|
localName = t->second.GetName();
|
|
|
|
localName += "/fast";
|
|
|
|
commands.push_back(lg->GetRecursiveMakeCall
|
|
|
|
(makefileName.c_str(), makeTargetName.c_str()));
|
2006-05-18 22:35:44 +04:00
|
|
|
lg->WriteMakeRule(ruleFileStream, "fast build rule for target.",
|
|
|
|
localName.c_str(), depends, commands, true);
|
|
|
|
}
|
2006-05-02 17:56:42 +04:00
|
|
|
}
|
2005-05-31 19:46:49 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
cmGlobalUnixMakefileGenerator3
|
|
|
|
::WriteConvenienceRules2(std::ostream& ruleFileStream,
|
|
|
|
cmLocalUnixMakefileGenerator3 *lg,
|
|
|
|
bool exclude)
|
2005-05-31 18:16:28 +04:00
|
|
|
{
|
|
|
|
std::vector<std::string> depends;
|
|
|
|
std::vector<std::string> commands;
|
|
|
|
std::string localName;
|
|
|
|
std::string makeTargetName;
|
|
|
|
|
2006-05-15 21:02:28 +04:00
|
|
|
|
2005-05-31 18:16:28 +04:00
|
|
|
// write the directory level rules for this local gen
|
2005-05-31 19:46:49 +04:00
|
|
|
this->WriteDirectoryRules2(ruleFileStream,lg);
|
2005-05-31 18:16:28 +04:00
|
|
|
|
|
|
|
depends.push_back("cmake_check_build_system");
|
2005-05-25 23:09:06 +04:00
|
|
|
|
2005-05-11 20:44:01 +04:00
|
|
|
// for each target Generate the rule files for each target.
|
2005-06-22 17:06:46 +04:00
|
|
|
cmTargets& targets = lg->GetMakefile()->GetTargets();
|
|
|
|
for(cmTargets::iterator t = targets.begin(); t != targets.end(); ++t)
|
2005-05-06 22:49:38 +04:00
|
|
|
{
|
2006-05-02 17:56:42 +04:00
|
|
|
if (t->second.GetName() && strlen(t->second.GetName()))
|
2005-05-06 22:49:38 +04:00
|
|
|
{
|
2006-05-02 17:56:42 +04:00
|
|
|
std::string makefileName;
|
2005-05-06 22:49:38 +04:00
|
|
|
// Add a rule to build the target by name.
|
|
|
|
localName = lg->GetRelativeTargetDirectory(t->second);
|
2006-05-02 17:56:42 +04:00
|
|
|
makefileName = localName;
|
2005-05-19 18:52:59 +04:00
|
|
|
makefileName += "/build.make";
|
2005-05-18 21:46:00 +04:00
|
|
|
|
2006-05-02 17:56:42 +04:00
|
|
|
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)))
|
2005-05-18 21:46:00 +04:00
|
|
|
{
|
2006-05-02 17:56:42 +04:00
|
|
|
bool needRequiresStep =
|
|
|
|
this->NeedRequiresStep(lg,t->second.GetName());
|
2005-05-24 19:17:30 +04:00
|
|
|
|
2006-05-02 17:56:42 +04:00
|
|
|
lg->WriteDivider(ruleFileStream);
|
|
|
|
ruleFileStream
|
|
|
|
<< "# Target rules for target "
|
|
|
|
<< localName << "\n\n";
|
|
|
|
|
2006-05-23 17:11:46 +04:00
|
|
|
commands.clear();
|
2006-05-02 17:56:42 +04:00
|
|
|
if (t->second.GetType() != cmTarget::UTILITY)
|
2005-05-24 19:17:30 +04:00
|
|
|
{
|
|
|
|
makeTargetName = localName;
|
2006-05-02 17:56:42 +04:00
|
|
|
makeTargetName += "/depend";
|
2006-02-15 18:34:11 +03:00
|
|
|
commands.push_back(lg->GetRecursiveMakeCall
|
|
|
|
(makefileName.c_str(),makeTargetName.c_str()));
|
2006-05-02 17:56:42 +04:00
|
|
|
|
|
|
|
// 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()));
|
|
|
|
}
|
2005-05-24 19:17:30 +04:00
|
|
|
}
|
2006-05-02 17:56:42 +04:00
|
|
|
makeTargetName = localName;
|
|
|
|
makeTargetName += "/build";
|
|
|
|
commands.push_back(lg->GetRecursiveMakeCall
|
|
|
|
(makefileName.c_str(),makeTargetName.c_str()));
|
|
|
|
|
|
|
|
// Write the rule.
|
|
|
|
localName += "/all";
|
2006-02-16 23:19:00 +03:00
|
|
|
depends.clear();
|
2006-05-15 21:02:28 +04:00
|
|
|
|
2006-05-23 17:58:10 +04:00
|
|
|
std::string progressDir =
|
|
|
|
lg->GetMakefile()->GetHomeOutputDirectory();
|
2006-06-14 20:28:32 +04:00
|
|
|
progressDir += cmake::GetCMakeFilesDirectory();
|
2006-05-23 17:11:46 +04:00
|
|
|
{
|
2006-06-17 00:29:08 +04:00
|
|
|
cmOStringStream progCmd;
|
|
|
|
progCmd << "$(CMAKE_COMMAND) -E cmake_progress_report ";
|
|
|
|
// all target counts
|
|
|
|
progCmd << lg->Convert(progressDir.c_str(),
|
|
|
|
cmLocalGenerator::FULL,
|
|
|
|
cmLocalGenerator::SHELL);
|
|
|
|
progCmd << " ";
|
|
|
|
std::vector<int> &progFiles = lg->ProgressFiles[t->first];
|
|
|
|
for (std::vector<int>::iterator i = progFiles.begin();
|
|
|
|
i != progFiles.end(); ++i)
|
|
|
|
{
|
|
|
|
progCmd << " " << *i;
|
|
|
|
}
|
|
|
|
commands.push_back(progCmd.str());
|
2006-05-23 17:11:46 +04:00
|
|
|
}
|
2006-07-26 22:46:29 +04:00
|
|
|
progressDir = "Built target ";
|
2006-06-12 19:40:31 +04:00
|
|
|
progressDir += t->first;
|
|
|
|
lg->AppendEcho(commands,progressDir.c_str());
|
|
|
|
|
2006-05-02 17:56:42 +04:00
|
|
|
this->AppendGlobalTargetDepends(depends,t->second);
|
|
|
|
lg->WriteMakeRule(ruleFileStream, "All Build rule for target.",
|
|
|
|
localName.c_str(), depends, commands, true);
|
|
|
|
|
|
|
|
// add the all/all dependency
|
|
|
|
if (!exclude && t->second.IsInAll())
|
|
|
|
{
|
|
|
|
depends.clear();
|
|
|
|
depends.push_back(localName);
|
|
|
|
commands.clear();
|
|
|
|
lg->WriteMakeRule(ruleFileStream, "Include target in all.",
|
|
|
|
"all", depends, commands, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Write the rule.
|
2006-02-16 23:19:00 +03:00
|
|
|
commands.clear();
|
2006-06-16 23:29:25 +04:00
|
|
|
progressDir = lg->GetMakefile()->GetHomeOutputDirectory();
|
|
|
|
progressDir += cmake::GetCMakeFilesDirectory();
|
|
|
|
|
|
|
|
{
|
|
|
|
// TODO: Convert the total progress count to a make variable.
|
|
|
|
cmOStringStream progCmd;
|
|
|
|
progCmd << "$(CMAKE_COMMAND) -E cmake_progress_start ";
|
|
|
|
// # in target
|
|
|
|
progCmd << lg->Convert(progressDir.c_str(),
|
|
|
|
cmLocalGenerator::FULL,
|
|
|
|
cmLocalGenerator::SHELL);
|
2006-06-19 19:34:50 +04:00
|
|
|
//
|
2006-08-29 20:55:11 +04:00
|
|
|
std::set<cmStdString> emitted;
|
2006-06-20 17:50:45 +04:00
|
|
|
progCmd << " "
|
2006-08-29 20:55:11 +04:00
|
|
|
<< this->GetTargetTotalNumberOfActions(t->second,
|
|
|
|
emitted);
|
2006-06-16 23:29:25 +04:00
|
|
|
commands.push_back(progCmd.str());
|
|
|
|
}
|
2006-06-14 20:28:32 +04:00
|
|
|
std::string tmp = cmake::GetCMakeFilesDirectoryPostSlash();
|
|
|
|
tmp += "Makefile2";
|
2006-02-16 23:19:00 +03:00
|
|
|
commands.push_back(lg->GetRecursiveMakeCall
|
2006-06-14 20:28:32 +04:00
|
|
|
(tmp.c_str(),localName.c_str()));
|
2006-06-16 23:29:25 +04:00
|
|
|
{
|
|
|
|
cmOStringStream progCmd;
|
|
|
|
progCmd << "$(CMAKE_COMMAND) -E cmake_progress_start "; // # 0
|
|
|
|
progCmd << lg->Convert(progressDir.c_str(),
|
|
|
|
cmLocalGenerator::FULL,
|
|
|
|
cmLocalGenerator::SHELL);
|
|
|
|
progCmd << " 0";
|
|
|
|
commands.push_back(progCmd.str());
|
|
|
|
}
|
2006-05-02 17:56:42 +04:00
|
|
|
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.",
|
2006-02-16 23:19:00 +03:00
|
|
|
localName.c_str(), depends, commands, true);
|
2006-05-02 17:56:42 +04:00
|
|
|
|
|
|
|
// Add a target with the canonical name (no prefix, suffix or path).
|
|
|
|
commands.clear();
|
2006-02-16 23:19:00 +03:00
|
|
|
depends.clear();
|
|
|
|
depends.push_back(localName);
|
2006-05-02 17:56:42 +04:00
|
|
|
lg->WriteMakeRule(ruleFileStream, "Convenience name for target.",
|
|
|
|
t->second.GetName(), depends, commands, true);
|
|
|
|
|
|
|
|
// Add rules to prepare the target for installation.
|
|
|
|
if(t->second.NeedRelinkBeforeInstall())
|
|
|
|
{
|
|
|
|
localName = lg->GetRelativeTargetDirectory(t->second);
|
|
|
|
localName += "/preinstall";
|
|
|
|
depends.clear();
|
|
|
|
commands.clear();
|
|
|
|
commands.push_back(lg->GetRecursiveMakeCall
|
|
|
|
(makefileName.c_str(), localName.c_str()));
|
2006-05-11 18:40:28 +04:00
|
|
|
lg->WriteMakeRule(ruleFileStream,
|
|
|
|
"Pre-install relink rule for target.",
|
2006-05-02 17:56:42 +04:00
|
|
|
localName.c_str(), depends, commands, true);
|
|
|
|
depends.clear();
|
|
|
|
depends.push_back(localName);
|
|
|
|
commands.clear();
|
|
|
|
lg->WriteMakeRule(ruleFileStream, "Prepare target for install.",
|
|
|
|
"preinstall", depends, commands, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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, true);
|
2006-02-16 23:19:00 +03:00
|
|
|
commands.clear();
|
2006-05-02 17:56:42 +04:00
|
|
|
depends.push_back(makeTargetName);
|
|
|
|
lg->WriteMakeRule(ruleFileStream, "clean rule for target.",
|
|
|
|
"clean", depends, commands, true);
|
2006-02-16 23:19:00 +03:00
|
|
|
}
|
2005-05-18 21:46:00 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-05-23 17:11:46 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
int cmGlobalUnixMakefileGenerator3
|
2006-08-29 20:55:11 +04:00
|
|
|
::GetTargetTotalNumberOfActions(cmTarget& target,
|
|
|
|
std::set<cmStdString> &emitted)
|
2006-05-23 17:11:46 +04:00
|
|
|
{
|
2006-08-29 20:55:11 +04:00
|
|
|
// do not double count
|
|
|
|
int result = 0;
|
2006-05-23 17:11:46 +04:00
|
|
|
|
2006-08-29 20:55:11 +04:00
|
|
|
if(emitted.insert(target.GetName()).second)
|
2006-05-23 17:11:46 +04:00
|
|
|
{
|
2006-08-29 20:55:11 +04:00
|
|
|
cmLocalUnixMakefileGenerator3 *lg =
|
|
|
|
static_cast<cmLocalUnixMakefileGenerator3 *>
|
|
|
|
(target.GetMakefile()->GetLocalGenerator());
|
|
|
|
result = static_cast<int>(lg->ProgressFiles[target.GetName()].size());
|
|
|
|
|
|
|
|
std::vector<cmTarget *>& depends = this->GetTargetDepends(target);
|
|
|
|
|
|
|
|
std::vector<cmTarget *>::iterator i;
|
|
|
|
for (i = depends.begin(); i != depends.end(); ++i)
|
|
|
|
{
|
|
|
|
result += this->GetTargetTotalNumberOfActions(**i, emitted);
|
|
|
|
}
|
2006-05-23 17:11:46 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2006-07-11 17:55:27 +04:00
|
|
|
unsigned long cmGlobalUnixMakefileGenerator3::
|
|
|
|
GetNumberOfProgressActionsInAll(cmLocalUnixMakefileGenerator3 *lg)
|
|
|
|
{
|
|
|
|
unsigned long result = 0;
|
|
|
|
|
|
|
|
// for every target in the top level all
|
|
|
|
if (!lg->GetParent())
|
|
|
|
{
|
|
|
|
// loop over the generators and targets
|
|
|
|
unsigned int i;
|
|
|
|
cmLocalUnixMakefileGenerator3 *lg3;
|
|
|
|
for (i = 0; i < this->LocalGenerators.size(); ++i)
|
|
|
|
{
|
|
|
|
lg3 = static_cast<cmLocalUnixMakefileGenerator3 *>
|
|
|
|
(this->LocalGenerators[i]);
|
|
|
|
// for each target Generate the rule files for each target.
|
|
|
|
cmTargets& targets = lg3->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 (t->second.IsInAll())
|
|
|
|
{
|
|
|
|
std::vector<int> &progFiles = lg3->ProgressFiles[t->first];
|
2006-07-12 21:11:27 +04:00
|
|
|
result += static_cast<unsigned long>(progFiles.size());
|
2006-07-11 17:55:27 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-07-12 21:11:27 +04:00
|
|
|
std::deque<cmLocalUnixMakefileGenerator3 *> lg3Stack;
|
|
|
|
lg3Stack.push_back(lg);
|
|
|
|
std::vector<cmStdString> targetsInAll;
|
|
|
|
std::set<cmTarget *> targets;
|
|
|
|
while (lg3Stack.size())
|
|
|
|
{
|
|
|
|
cmLocalUnixMakefileGenerator3 *lg3 = lg3Stack.front();
|
|
|
|
lg3Stack.pop_front();
|
|
|
|
for(cmTargets::iterator l = lg3->GetMakefile()->GetTargets().begin();
|
|
|
|
l != lg3->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() &&
|
|
|
|
targets.find(&l->second) == targets.end())
|
|
|
|
{
|
|
|
|
std::deque<cmTarget *> activeTgts;
|
|
|
|
activeTgts.push_back(&(l->second));
|
|
|
|
// trace depth of target dependencies
|
|
|
|
while (activeTgts.size())
|
|
|
|
{
|
|
|
|
if (targets.find(activeTgts.front()) == targets.end())
|
|
|
|
{
|
|
|
|
targets.insert(activeTgts.front());
|
|
|
|
cmLocalUnixMakefileGenerator3 *lg4 =
|
|
|
|
static_cast<cmLocalUnixMakefileGenerator3 *>
|
|
|
|
(activeTgts.front()->GetMakefile()->GetLocalGenerator());
|
|
|
|
std::vector<int> &progFiles2 =
|
|
|
|
lg4->ProgressFiles[activeTgts.front()->GetName()];
|
2006-07-17 19:07:44 +04:00
|
|
|
result += static_cast<unsigned long>(progFiles2.size());
|
2006-07-12 21:11:27 +04:00
|
|
|
std::vector<cmTarget *> deps2 =
|
|
|
|
this->GetTargetDepends(*activeTgts.front());
|
2006-07-12 22:41:55 +04:00
|
|
|
for (std::vector<cmTarget *>::const_iterator di =
|
|
|
|
deps2.begin(); di != deps2.end(); ++di)
|
|
|
|
{
|
|
|
|
activeTgts.push_back(*di);
|
|
|
|
}
|
2006-07-12 21:11:27 +04:00
|
|
|
}
|
|
|
|
activeTgts.pop_front();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// The directory-level rule depends on the directory-level
|
|
|
|
// rules of the subdirectories.
|
|
|
|
for(std::vector<cmLocalGenerator*>::iterator sdi =
|
2006-07-18 17:32:45 +04:00
|
|
|
lg3->GetChildren().begin();
|
|
|
|
sdi != lg3->GetChildren().end(); ++sdi)
|
2006-07-12 21:11:27 +04:00
|
|
|
{
|
|
|
|
cmLocalUnixMakefileGenerator3* slg =
|
|
|
|
static_cast<cmLocalUnixMakefileGenerator3*>(*sdi);
|
|
|
|
lg3Stack.push_back(slg);
|
|
|
|
}
|
|
|
|
}
|
2006-07-11 17:55:27 +04:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2006-05-23 17:11:46 +04:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
std::vector<cmTarget *>& cmGlobalUnixMakefileGenerator3
|
|
|
|
::GetTargetDepends(cmTarget& target)
|
|
|
|
{
|
|
|
|
// if the depends are already in the map then return
|
|
|
|
std::map<cmStdString, std::vector<cmTarget *> >::iterator tgtI =
|
|
|
|
this->TargetDependencies.find(target.GetName());
|
|
|
|
if (tgtI != this->TargetDependencies.end())
|
|
|
|
{
|
|
|
|
return tgtI->second;
|
|
|
|
}
|
|
|
|
|
|
|
|
// A target should not depend on itself.
|
|
|
|
std::set<cmStdString> emitted;
|
|
|
|
emitted.insert(target.GetName());
|
|
|
|
|
|
|
|
// the vector of results
|
|
|
|
std::vector<cmTarget *>& result =
|
|
|
|
this->TargetDependencies[target.GetName()];
|
|
|
|
|
|
|
|
// Loop over all library dependencies but not for static libs
|
|
|
|
if (target.GetType() != cmTarget::STATIC_LIBRARY)
|
|
|
|
{
|
|
|
|
const cmTarget::LinkLibraryVectorType& tlibs = target.GetLinkLibraries();
|
|
|
|
for(cmTarget::LinkLibraryVectorType::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)
|
|
|
|
{
|
|
|
|
cmTarget *target2 =
|
|
|
|
target.GetMakefile()->FindTarget(lib->first.c_str());
|
|
|
|
|
|
|
|
// search each local generator until a match is found
|
|
|
|
if (!target2)
|
|
|
|
{
|
|
|
|
target2 = this->FindTarget(0,lib->first.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
// if a match was found then ...
|
|
|
|
if (target2)
|
|
|
|
{
|
|
|
|
// Add this dependency.
|
|
|
|
result.push_back(target2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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)
|
|
|
|
{
|
|
|
|
cmTarget *target2 = target.GetMakefile()->FindTarget(util->c_str());
|
|
|
|
|
|
|
|
// search each local generator until a match is found
|
|
|
|
if (!target2)
|
|
|
|
{
|
|
|
|
target2 = this->FindTarget(0,util->c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
// if a match was found then ...
|
|
|
|
if (target2)
|
|
|
|
{
|
|
|
|
// Add this dependency.
|
|
|
|
result.push_back(target2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
2005-05-18 21:46:00 +04:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
cmGlobalUnixMakefileGenerator3
|
|
|
|
::AppendGlobalTargetDepends(std::vector<std::string>& depends,
|
2005-06-22 17:06:46 +04:00
|
|
|
cmTarget& target)
|
2005-05-18 21:46:00 +04:00
|
|
|
{
|
|
|
|
// 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)
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
const cmTarget::LinkLibraryVectorType& tlibs = target.GetLinkLibraries();
|
|
|
|
for(cmTarget::LinkLibraryVectorType::const_iterator lib = tlibs.begin();
|
2005-05-18 21:46:00 +04:00
|
|
|
lib != tlibs.end(); ++lib)
|
|
|
|
{
|
|
|
|
// Don't emit the same library twice for this target.
|
|
|
|
if(emitted.insert(lib->first).second)
|
2005-05-06 22:49:38 +04:00
|
|
|
{
|
2005-05-18 21:46:00 +04:00
|
|
|
// Add this dependency.
|
2005-10-10 19:49:17 +04:00
|
|
|
this->AppendAnyGlobalDepend(depends, lib->first.c_str(),
|
|
|
|
emitted, target);
|
2005-05-06 22:49:38 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2005-05-18 21:46:00 +04:00
|
|
|
|
|
|
|
// 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.
|
2005-10-10 19:49:17 +04:00
|
|
|
this->AppendAnyGlobalDepend(depends, util->c_str(), emitted, target);
|
2005-05-18 21:46:00 +04:00
|
|
|
}
|
|
|
|
}
|
2005-05-06 22:49:38 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-05-18 21:46:00 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
cmGlobalUnixMakefileGenerator3
|
2005-07-15 19:38:19 +04:00
|
|
|
::AppendAnyGlobalDepend(std::vector<std::string>& depends, const char* name,
|
2005-10-10 19:49:17 +04:00
|
|
|
std::set<cmStdString>& emitted, cmTarget &target)
|
2005-05-18 21:46:00 +04:00
|
|
|
{
|
2005-05-20 16:45:33 +04:00
|
|
|
cmTarget *result;
|
2005-10-10 19:49:17 +04:00
|
|
|
cmLocalUnixMakefileGenerator3 *lg3;
|
|
|
|
|
|
|
|
// first check the same dir as the current target
|
|
|
|
lg3 = static_cast<cmLocalUnixMakefileGenerator3 *>
|
|
|
|
(target.GetMakefile()->GetLocalGenerator());
|
|
|
|
result = target.GetMakefile()->FindTarget(name);
|
2005-05-18 21:46:00 +04:00
|
|
|
|
|
|
|
// search each local generator until a match is found
|
2005-10-10 19:49:17 +04:00
|
|
|
if (!result)
|
|
|
|
{
|
2006-05-15 21:47:13 +04:00
|
|
|
result = this->FindTarget(0,name);
|
|
|
|
if (result)
|
2005-10-10 19:49:17 +04:00
|
|
|
{
|
2006-05-15 21:47:13 +04:00
|
|
|
lg3 = static_cast<cmLocalUnixMakefileGenerator3 *>
|
|
|
|
(result->GetMakefile()->GetLocalGenerator());
|
2005-10-10 19:49:17 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// if a match was found then ...
|
|
|
|
if (result)
|
2005-05-18 21:46:00 +04:00
|
|
|
{
|
2005-10-10 19:49:17 +04:00
|
|
|
std::string tgtName = lg3->GetRelativeTargetDirectory(*result);
|
|
|
|
tgtName += "/all";
|
|
|
|
depends.push_back(tgtName);
|
|
|
|
if(result->GetType() == cmTarget::STATIC_LIBRARY)
|
2005-05-18 21:46:00 +04:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
const cmTarget::LinkLibraryVectorType& tlibs
|
|
|
|
= result->GetLinkLibraries();
|
|
|
|
for(cmTarget::LinkLibraryVectorType::const_iterator lib = tlibs.begin();
|
2005-10-10 19:49:17 +04:00
|
|
|
lib != tlibs.end(); ++lib)
|
2005-07-15 19:38:19 +04:00
|
|
|
{
|
2005-10-10 19:49:17 +04:00
|
|
|
// Don't emit the same library twice for this target.
|
|
|
|
if(emitted.insert(lib->first).second)
|
2005-07-15 19:38:19 +04:00
|
|
|
{
|
2005-10-10 19:49:17 +04:00
|
|
|
// Add this dependency.
|
|
|
|
this->AppendAnyGlobalDepend(depends, lib->first.c_str(),
|
|
|
|
emitted, *result);
|
2005-07-15 19:38:19 +04:00
|
|
|
}
|
|
|
|
}
|
2005-05-18 21:46:00 +04:00
|
|
|
}
|
2005-10-10 19:49:17 +04:00
|
|
|
return;
|
2005-05-18 21:46:00 +04:00
|
|
|
}
|
|
|
|
}
|
2005-05-20 19:01:21 +04:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2005-10-20 21:40:28 +04:00
|
|
|
void cmGlobalUnixMakefileGenerator3::WriteHelpRule
|
|
|
|
(std::ostream& ruleFileStream, cmLocalUnixMakefileGenerator3 *lg)
|
2005-05-20 19:01:21 +04:00
|
|
|
{
|
|
|
|
// add the help target
|
|
|
|
std::string path;
|
|
|
|
std::vector<std::string> no_depends;
|
|
|
|
std::vector<std::string> commands;
|
2006-05-11 18:40:28 +04:00
|
|
|
lg->AppendEcho(commands,"The following are some of the valid targets "
|
|
|
|
"for this Makefile:");
|
2005-05-20 19:01:21 +04:00
|
|
|
lg->AppendEcho(commands,"... all (the default if no target is provided)");
|
|
|
|
lg->AppendEcho(commands,"... clean");
|
|
|
|
lg->AppendEcho(commands,"... depend");
|
|
|
|
|
2005-06-01 17:25:10 +04:00
|
|
|
// Keep track of targets already listed.
|
|
|
|
std::set<cmStdString> emittedTargets;
|
|
|
|
|
2005-05-20 19:01:21 +04:00
|
|
|
// for each local generator
|
|
|
|
unsigned int i;
|
2005-10-20 21:40:28 +04:00
|
|
|
cmLocalUnixMakefileGenerator3 *lg2;
|
2006-03-15 19:02:08 +03:00
|
|
|
for (i = 0; i < this->LocalGenerators.size(); ++i)
|
2005-05-20 19:01:21 +04:00
|
|
|
{
|
2006-05-11 18:40:28 +04:00
|
|
|
lg2 =
|
|
|
|
static_cast<cmLocalUnixMakefileGenerator3 *>(this->LocalGenerators[i]);
|
2005-10-20 21:40:28 +04:00
|
|
|
// for the passed in makefile or if this is the top Makefile wripte out
|
|
|
|
// the targets
|
|
|
|
if (lg2 == lg || !lg->GetParent())
|
2005-05-20 19:01:21 +04:00
|
|
|
{
|
2005-10-20 21:40:28 +04:00
|
|
|
// for each target Generate the rule files for each target.
|
2006-04-26 00:31:21 +04:00
|
|
|
cmTargets& targets = lg2->GetMakefile()->GetTargets();
|
2005-10-20 21:40:28 +04:00
|
|
|
for(cmTargets::iterator t = targets.begin(); t != targets.end(); ++t)
|
2005-05-20 19:01:21 +04:00
|
|
|
{
|
2005-10-20 21:40:28 +04:00
|
|
|
if((t->second.GetType() == cmTarget::EXECUTABLE) ||
|
|
|
|
(t->second.GetType() == cmTarget::STATIC_LIBRARY) ||
|
|
|
|
(t->second.GetType() == cmTarget::SHARED_LIBRARY) ||
|
|
|
|
(t->second.GetType() == cmTarget::MODULE_LIBRARY) ||
|
2006-04-20 18:51:16 +04:00
|
|
|
(t->second.GetType() == cmTarget::GLOBAL_TARGET) ||
|
2005-10-20 21:40:28 +04:00
|
|
|
(t->second.GetType() == cmTarget::UTILITY))
|
2005-06-01 17:25:10 +04:00
|
|
|
{
|
2005-10-20 21:40:28 +04:00
|
|
|
if(emittedTargets.insert(t->second.GetName()).second)
|
|
|
|
{
|
|
|
|
path = "... ";
|
|
|
|
path += t->second.GetName();
|
|
|
|
lg->AppendEcho(commands,path.c_str());
|
|
|
|
}
|
2005-06-01 17:25:10 +04:00
|
|
|
}
|
2005-05-20 19:01:21 +04:00
|
|
|
}
|
2006-08-23 17:45:24 +04:00
|
|
|
std::vector<cmStdString> const& localHelp = lg->GetLocalHelp();
|
|
|
|
for(std::vector<cmStdString>::const_iterator o = localHelp.begin();
|
|
|
|
o != localHelp.end(); ++o)
|
2006-01-02 20:36:54 +03:00
|
|
|
{
|
2006-08-23 17:45:24 +04:00
|
|
|
path = "... ";
|
|
|
|
path += *o;
|
|
|
|
lg->AppendEcho(commands, path.c_str());
|
2006-01-02 20:36:54 +03:00
|
|
|
}
|
2005-05-20 19:01:21 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
lg->WriteMakeRule(ruleFileStream, "Help Target",
|
|
|
|
"help:",
|
2006-02-16 00:35:16 +03:00
|
|
|
no_depends, commands, true);
|
2005-05-20 19:01:21 +04:00
|
|
|
ruleFileStream << "\n\n";
|
|
|
|
}
|
|
|
|
|
2005-05-24 19:17:30 +04:00
|
|
|
|
|
|
|
bool cmGlobalUnixMakefileGenerator3
|
2005-07-27 17:49:37 +04:00
|
|
|
::NeedRequiresStep(cmLocalUnixMakefileGenerator3 *lg,const char *name)
|
2005-05-24 19:17:30 +04:00
|
|
|
{
|
|
|
|
std::map<cmStdString,cmLocalUnixMakefileGenerator3::IntegrityCheckSet>&
|
2005-07-27 17:49:37 +04:00
|
|
|
checkSet = lg->GetIntegrityCheckSet()[name];
|
2005-05-24 19:17:30 +04:00
|
|
|
for(std::map<cmStdString,
|
|
|
|
cmLocalUnixMakefileGenerator3::IntegrityCheckSet>::const_iterator
|
|
|
|
l = checkSet.begin(); l != checkSet.end(); ++l)
|
|
|
|
{
|
2005-07-27 19:31:17 +04:00
|
|
|
std::string name2 = "CMAKE_NEEDS_REQUIRES_STEP_";
|
|
|
|
name2 += l->first;
|
|
|
|
name2 += "_FLAG";
|
|
|
|
if(lg->GetMakefile()->GetDefinition(name2.c_str()))
|
2005-05-24 19:17:30 +04:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|