2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2006-02-14 18:36:04 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2006-02-14 18:36:04 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2006-02-14 18:36:04 +03:00
|
|
|
#include "cmMakefileUtilityTargetGenerator.h"
|
|
|
|
|
|
|
|
#include "cmGeneratedFileStream.h"
|
2006-12-14 22:30:41 +03:00
|
|
|
#include "cmGlobalUnixMakefileGenerator3.h"
|
2006-02-14 18:36:04 +03:00
|
|
|
#include "cmLocalUnixMakefileGenerator3.h"
|
|
|
|
#include "cmMakefile.h"
|
|
|
|
#include "cmSourceFile.h"
|
|
|
|
#include "cmTarget.h"
|
|
|
|
|
2007-03-02 22:31:04 +03:00
|
|
|
//----------------------------------------------------------------------------
|
2008-02-19 00:38:34 +03:00
|
|
|
cmMakefileUtilityTargetGenerator
|
2012-10-10 23:32:37 +04:00
|
|
|
::cmMakefileUtilityTargetGenerator(cmGeneratorTarget* target):
|
|
|
|
cmMakefileTargetGenerator(target->Target)
|
2007-03-02 22:31:04 +03:00
|
|
|
{
|
2007-05-01 21:51:25 +04:00
|
|
|
this->CustomCommandDriver = OnUtility;
|
2012-10-10 23:32:37 +04:00
|
|
|
this->OSXBundleGenerator = new cmOSXBundleGenerator(target,
|
2012-07-16 19:34:22 +04:00
|
|
|
this->ConfigName);
|
|
|
|
this->OSXBundleGenerator->SetMacContentFolders(&this->MacContentFolders);
|
2007-03-02 22:31:04 +03:00
|
|
|
}
|
|
|
|
|
2012-07-21 21:51:55 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
cmMakefileUtilityTargetGenerator
|
|
|
|
::~cmMakefileUtilityTargetGenerator()
|
|
|
|
{
|
|
|
|
delete this->OSXBundleGenerator;
|
|
|
|
}
|
|
|
|
|
2006-02-14 18:36:04 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmMakefileUtilityTargetGenerator::WriteRuleFiles()
|
|
|
|
{
|
|
|
|
this->CreateRuleFile();
|
|
|
|
|
|
|
|
*this->BuildFileStream
|
|
|
|
<< "# Utility rule file for " << this->Target->GetName() << ".\n\n";
|
|
|
|
|
2011-09-13 13:24:55 +04:00
|
|
|
if(!this->NoRuleMessages)
|
|
|
|
{
|
|
|
|
const char* root = (this->Makefile->IsOn("CMAKE_MAKE_INCLUDE_FROM_ROOT")?
|
|
|
|
"$(CMAKE_BINARY_DIR)/" : "");
|
|
|
|
// Include the progress variables for the target.
|
|
|
|
*this->BuildFileStream
|
|
|
|
<< "# Include the progress variables for this target.\n"
|
|
|
|
<< this->LocalGenerator->IncludeDirective << " " << root
|
2014-03-11 03:04:11 +04:00
|
|
|
<< this->Convert(this->ProgressFileNameFull,
|
2011-09-13 13:24:55 +04:00
|
|
|
cmLocalGenerator::HOME_OUTPUT,
|
|
|
|
cmLocalGenerator::MAKEFILE)
|
|
|
|
<< "\n\n";
|
|
|
|
}
|
|
|
|
|
2006-02-14 18:36:04 +03:00
|
|
|
// write the custom commands for this target
|
2006-06-01 19:45:51 +04:00
|
|
|
this->WriteTargetBuildRules();
|
2006-02-14 18:36:04 +03:00
|
|
|
|
|
|
|
// Collect the commands and dependencies.
|
|
|
|
std::vector<std::string> commands;
|
|
|
|
std::vector<std::string> depends;
|
|
|
|
|
|
|
|
// Utility targets store their rules in pre- and post-build commands.
|
|
|
|
this->LocalGenerator->AppendCustomDepends
|
|
|
|
(depends, this->Target->GetPreBuildCommands());
|
2007-03-02 22:31:04 +03:00
|
|
|
|
2006-02-14 18:36:04 +03:00
|
|
|
this->LocalGenerator->AppendCustomDepends
|
|
|
|
(depends, this->Target->GetPostBuildCommands());
|
2007-03-02 22:31:04 +03:00
|
|
|
|
2006-02-14 18:36:04 +03:00
|
|
|
this->LocalGenerator->AppendCustomCommands
|
2009-02-10 16:50:33 +03:00
|
|
|
(commands, this->Target->GetPreBuildCommands(), this->Target);
|
2007-05-01 21:51:25 +04:00
|
|
|
|
2007-03-02 22:31:04 +03:00
|
|
|
// Depend on all custom command outputs for sources
|
2007-05-01 21:51:25 +04:00
|
|
|
this->DriveCustomCommands(depends);
|
2007-03-02 22:31:04 +03:00
|
|
|
|
2006-02-14 18:36:04 +03:00
|
|
|
this->LocalGenerator->AppendCustomCommands
|
2009-02-10 16:50:33 +03:00
|
|
|
(commands, this->Target->GetPostBuildCommands(), this->Target);
|
2006-02-14 18:36:04 +03:00
|
|
|
|
|
|
|
// Add dependencies on targets that must be built first.
|
|
|
|
this->AppendTargetDepends(depends);
|
2007-05-01 21:51:25 +04:00
|
|
|
|
2006-02-14 18:36:04 +03:00
|
|
|
// Add a dependency on the rule file itself.
|
2007-05-01 21:51:25 +04:00
|
|
|
this->LocalGenerator->AppendRuleDepend(depends,
|
|
|
|
this->BuildFileNameFull.c_str());
|
2006-02-14 18:36:04 +03:00
|
|
|
|
2006-12-14 22:30:41 +03:00
|
|
|
// If the rule is empty add the special empty rule dependency needed
|
|
|
|
// by some make tools.
|
|
|
|
if(depends.empty() && commands.empty())
|
|
|
|
{
|
|
|
|
std::string hack = this->GlobalGenerator->GetEmptyRuleHackDepends();
|
|
|
|
if(!hack.empty())
|
|
|
|
{
|
|
|
|
depends.push_back(hack);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-02-14 18:36:04 +03:00
|
|
|
// Write the rule.
|
|
|
|
this->LocalGenerator->WriteMakeRule(*this->BuildFileStream, 0,
|
2006-02-16 00:35:16 +03:00
|
|
|
this->Target->GetName(),
|
|
|
|
depends, commands, true);
|
2006-02-14 18:36:04 +03:00
|
|
|
|
2006-06-01 19:45:51 +04:00
|
|
|
// Write the main driver rule to build everything in this target.
|
2014-03-11 03:04:11 +04:00
|
|
|
this->WriteTargetDriverRule(this->Target->GetName(), false);
|
2006-02-14 18:36:04 +03:00
|
|
|
|
|
|
|
// Write clean target
|
|
|
|
this->WriteTargetCleanRules();
|
|
|
|
|
2007-12-21 20:22:12 +03:00
|
|
|
// Write the dependency generation rule. This must be done last so
|
|
|
|
// that multiple output pair information is available.
|
|
|
|
this->WriteTargetDependRules();
|
|
|
|
|
2006-02-14 18:36:04 +03:00
|
|
|
// close the streams
|
|
|
|
this->CloseFileStreams();
|
|
|
|
}
|
|
|
|
|