2005-05-05 20:45:53 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
|
|
|
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 "cmLocalUnixMakefileGenerator3.h"
|
|
|
|
|
|
|
|
#include "cmDepends.h"
|
|
|
|
#include "cmGeneratedFileStream.h"
|
2005-07-27 17:49:37 +04:00
|
|
|
#include "cmGlobalUnixMakefileGenerator3.h"
|
2005-05-05 20:45:53 +04:00
|
|
|
#include "cmMakefile.h"
|
|
|
|
#include "cmSourceFile.h"
|
|
|
|
#include "cmake.h"
|
|
|
|
|
|
|
|
// Include dependency scanners for supported languages. Only the
|
|
|
|
// C/C++ scanner is needed for bootstrapping CMake.
|
|
|
|
#include "cmDependsC.h"
|
|
|
|
#ifdef CMAKE_BUILD_WITH_CMAKE
|
|
|
|
# include "cmDependsFortran.h"
|
|
|
|
# include "cmDependsJava.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <memory> // auto_ptr
|
|
|
|
#include <queue>
|
|
|
|
|
|
|
|
// TODO: Add "help" target.
|
|
|
|
// TODO: Identify remaining relative path violations.
|
|
|
|
// TODO: Need test for separate executable/library output path.
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
cmLocalUnixMakefileGenerator3::cmLocalUnixMakefileGenerator3()
|
|
|
|
{
|
2006-01-17 18:21:45 +03:00
|
|
|
m_SilentNoColon = false;
|
2005-05-05 20:45:53 +04:00
|
|
|
m_WindowsShell = false;
|
|
|
|
m_IncludeDirective = "include";
|
|
|
|
m_MakefileVariableSize = 0;
|
|
|
|
m_IgnoreLibPrefix = false;
|
|
|
|
m_PassMakeflags = false;
|
|
|
|
m_EchoNeedsQuote = true;
|
2005-12-23 00:42:36 +03:00
|
|
|
m_DefineWindowsNULL = false;
|
|
|
|
m_UnixCD = true;
|
2005-05-05 20:45:53 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
cmLocalUnixMakefileGenerator3::~cmLocalUnixMakefileGenerator3()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2005-06-01 21:37:49 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmLocalUnixMakefileGenerator3::Configure()
|
|
|
|
{
|
2006-01-30 22:25:07 +03:00
|
|
|
// Include the rule file for each object.
|
|
|
|
m_HomeRelativeOutputPath =
|
|
|
|
cmSystemTools::RelativePath(m_Makefile->GetHomeOutputDirectory(),
|
|
|
|
m_Makefile->GetStartOutputDirectory());
|
|
|
|
if (m_HomeRelativeOutputPath.size())
|
|
|
|
{
|
|
|
|
m_HomeRelativeOutputPath += "/";
|
|
|
|
}
|
2005-06-01 21:37:49 +04:00
|
|
|
this->cmLocalGenerator::Configure();
|
|
|
|
}
|
|
|
|
|
2005-05-05 20:45:53 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmLocalUnixMakefileGenerator3::Generate()
|
|
|
|
{
|
|
|
|
// Setup our configuration variables for this directory.
|
|
|
|
this->ConfigureOutputPaths();
|
|
|
|
|
|
|
|
// Generate the rule files for each target.
|
2005-05-18 21:46:00 +04:00
|
|
|
cmTargets& targets = m_Makefile->GetTargets();
|
|
|
|
std::string empty;
|
|
|
|
for(cmTargets::iterator t = targets.begin(); t != targets.end(); ++t)
|
2005-05-05 20:45:53 +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))
|
|
|
|
{
|
2005-05-18 21:46:00 +04:00
|
|
|
t->second.TraceVSDependencies(empty, m_Makefile);
|
2005-05-06 22:49:38 +04:00
|
|
|
this->WriteTargetRuleFiles(t->second);
|
2005-05-05 20:45:53 +04:00
|
|
|
}
|
|
|
|
else if(t->second.GetType() == cmTarget::UTILITY)
|
|
|
|
{
|
2005-05-18 21:46:00 +04:00
|
|
|
t->second.TraceVSDependencies(empty, m_Makefile);
|
2005-05-06 22:49:38 +04:00
|
|
|
this->WriteUtilityRuleFiles(t->second);
|
2005-05-05 20:45:53 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-05-11 16:45:16 +04:00
|
|
|
// write the local Makefile
|
|
|
|
this->WriteLocalMakefile();
|
|
|
|
|
2005-05-06 22:49:38 +04:00
|
|
|
// Write the cmake file with information for this directory.
|
|
|
|
this->WriteDirectoryInformationFile();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmLocalUnixMakefileGenerator3::ConfigureOutputPaths()
|
|
|
|
{
|
|
|
|
// Format the library and executable output paths.
|
|
|
|
if(const char* libOut = m_Makefile->GetDefinition("LIBRARY_OUTPUT_PATH"))
|
|
|
|
{
|
|
|
|
m_LibraryOutputPath = libOut;
|
|
|
|
this->FormatOutputPath(m_LibraryOutputPath, "LIBRARY");
|
|
|
|
}
|
|
|
|
if(const char* exeOut = m_Makefile->GetDefinition("EXECUTABLE_OUTPUT_PATH"))
|
|
|
|
{
|
|
|
|
m_ExecutableOutputPath = exeOut;
|
|
|
|
this->FormatOutputPath(m_ExecutableOutputPath, "EXECUTABLE");
|
|
|
|
}
|
2006-01-14 02:18:32 +03:00
|
|
|
|
|
|
|
// Store the configuration name that will be generated.
|
|
|
|
if(const char* config = m_Makefile->GetDefinition("CMAKE_BUILD_TYPE"))
|
|
|
|
{
|
|
|
|
// Use the build type given by the user.
|
|
|
|
m_ConfigurationName = config;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// No configuration type given.
|
|
|
|
m_ConfigurationName = "";
|
|
|
|
}
|
2005-05-05 20:45:53 +04:00
|
|
|
}
|
|
|
|
|
2005-05-06 22:49:38 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmLocalUnixMakefileGenerator3::FormatOutputPath(std::string& path,
|
|
|
|
const char* name)
|
|
|
|
{
|
|
|
|
if(!path.empty())
|
|
|
|
{
|
|
|
|
// Convert the output path to a full path in case it is
|
|
|
|
// specified as a relative path. Treat a relative path as
|
|
|
|
// relative to the current output directory for this makefile.
|
|
|
|
path =
|
|
|
|
cmSystemTools::CollapseFullPath(path.c_str(),
|
|
|
|
m_Makefile->GetStartOutputDirectory());
|
|
|
|
|
|
|
|
// Add a trailing slash for easy appending later.
|
|
|
|
if(path.empty() || path[path.size()-1] != '/')
|
|
|
|
{
|
|
|
|
path += "/";
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure the output path exists on disk.
|
|
|
|
if(!cmSystemTools::MakeDirectory(path.c_str()))
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("Error failed to create ",
|
|
|
|
name, "_OUTPUT_PATH directory:", path.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add this as a link directory automatically.
|
|
|
|
m_Makefile->AddLinkDirectory(path.c_str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-05-24 22:42:23 +04:00
|
|
|
void cmLocalUnixMakefileGenerator3
|
2005-07-28 23:24:31 +04:00
|
|
|
::WriteCustomCommands(std::ostream& ruleFileStream,
|
2005-05-24 22:42:23 +04:00
|
|
|
std::vector<std::string>& cleanFiles)
|
2005-05-05 20:45:53 +04:00
|
|
|
{
|
2005-05-24 22:42:23 +04:00
|
|
|
// add custom commands to the clean rules?
|
|
|
|
const char* clean_no_custom = m_Makefile->GetProperty("CLEAN_NO_CUSTOM");
|
|
|
|
bool clean = cmSystemTools::IsOff(clean_no_custom);
|
2005-05-05 20:45:53 +04:00
|
|
|
|
2005-05-24 22:42:23 +04:00
|
|
|
// Generate the rule files for each custom command.
|
2005-07-28 17:14:42 +04:00
|
|
|
const std::vector<cmSourceFile*> &classes = m_Makefile->GetSourceFiles();
|
2005-05-24 22:42:23 +04:00
|
|
|
for(std::vector<cmSourceFile*>::const_iterator i = classes.begin();
|
|
|
|
i != classes.end(); i++)
|
2005-05-05 20:45:53 +04:00
|
|
|
{
|
2005-06-21 17:34:47 +04:00
|
|
|
if(cmCustomCommand* cc = (*i)->GetCustomCommand())
|
2005-05-05 20:45:53 +04:00
|
|
|
{
|
2005-07-27 20:41:08 +04:00
|
|
|
this->GenerateCustomRuleFile(*cc,ruleFileStream);
|
2005-05-24 22:42:23 +04:00
|
|
|
if (clean)
|
|
|
|
{
|
|
|
|
cleanFiles.push_back
|
2005-10-28 19:02:29 +04:00
|
|
|
(this->Convert(cc->GetOutput(),START_OUTPUT,SHELL));
|
2005-05-24 22:42:23 +04:00
|
|
|
}
|
2005-05-05 20:45:53 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2005-05-06 22:49:38 +04:00
|
|
|
void cmLocalUnixMakefileGenerator3::WriteDirectoryInformationFile()
|
2005-05-05 20:45:53 +04:00
|
|
|
{
|
|
|
|
std::string infoFileName = m_Makefile->GetStartOutputDirectory();
|
2005-07-29 17:19:25 +04:00
|
|
|
infoFileName += "/CMakeFiles/CMakeDirectoryInformation.cmake";
|
2005-05-05 20:45:53 +04:00
|
|
|
|
|
|
|
// Open the output file.
|
|
|
|
cmGeneratedFileStream infoFileStream(infoFileName.c_str());
|
|
|
|
if(!infoFileStream)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Write the do not edit header.
|
|
|
|
this->WriteDisclaimer(infoFileStream);
|
|
|
|
|
|
|
|
// Tell the dependency scanner to use unix paths if necessary.
|
|
|
|
if(cmSystemTools::GetForceUnixPaths())
|
|
|
|
{
|
|
|
|
infoFileStream
|
|
|
|
<< "# Force unix paths in dependencies.\n"
|
|
|
|
<< "SET(CMAKE_FORCE_UNIX_PATHS 1)\n"
|
|
|
|
<< "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
// Store the include search path for this directory.
|
|
|
|
infoFileStream
|
|
|
|
<< "# The C and CXX include file search paths:\n";
|
|
|
|
infoFileStream
|
|
|
|
<< "SET(CMAKE_C_INCLUDE_PATH\n";
|
|
|
|
std::vector<std::string> includeDirs;
|
|
|
|
this->GetIncludeDirectories(includeDirs);
|
|
|
|
for(std::vector<std::string>::iterator i = includeDirs.begin();
|
|
|
|
i != includeDirs.end(); ++i)
|
|
|
|
{
|
2005-08-17 19:43:58 +04:00
|
|
|
// Note: This path conversion must match that used for
|
|
|
|
// CMAKE_GENERATED_FILES so that the file names match.
|
2005-05-05 20:45:53 +04:00
|
|
|
infoFileStream
|
2005-06-07 18:47:28 +04:00
|
|
|
<< " \"" << this->Convert(i->c_str(),HOME_OUTPUT).c_str() << "\"\n";
|
2005-05-05 20:45:53 +04:00
|
|
|
}
|
|
|
|
infoFileStream
|
|
|
|
<< " )\n";
|
|
|
|
infoFileStream
|
|
|
|
<< "SET(CMAKE_CXX_INCLUDE_PATH ${CMAKE_C_INCLUDE_PATH})\n";
|
|
|
|
|
|
|
|
// Store the include regular expressions for this directory.
|
|
|
|
infoFileStream
|
|
|
|
<< "\n"
|
|
|
|
<< "# The C and CXX include file regular expressions for this directory.\n";
|
|
|
|
infoFileStream
|
|
|
|
<< "SET(CMAKE_C_INCLUDE_REGEX_SCAN ";
|
|
|
|
this->WriteCMakeArgument(infoFileStream,
|
|
|
|
m_Makefile->GetIncludeRegularExpression());
|
|
|
|
infoFileStream
|
|
|
|
<< ")\n";
|
|
|
|
infoFileStream
|
|
|
|
<< "SET(CMAKE_C_INCLUDE_REGEX_COMPLAIN ";
|
|
|
|
this->WriteCMakeArgument(infoFileStream,
|
|
|
|
m_Makefile->GetComplainRegularExpression());
|
|
|
|
infoFileStream
|
|
|
|
<< ")\n";
|
|
|
|
infoFileStream
|
|
|
|
<< "SET(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN})\n";
|
|
|
|
infoFileStream
|
|
|
|
<< "SET(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN})\n";
|
2005-08-17 19:43:58 +04:00
|
|
|
|
|
|
|
// Store the set of available generated files.
|
|
|
|
infoFileStream
|
|
|
|
<< "\n"
|
|
|
|
<< "# The set of files generated by rules in this directory:\n";
|
|
|
|
infoFileStream
|
|
|
|
<< "SET(CMAKE_GENERATED_FILES\n";
|
|
|
|
for(std::vector<cmSourceFile*>::const_iterator
|
|
|
|
i = m_Makefile->GetSourceFiles().begin();
|
|
|
|
i != m_Makefile->GetSourceFiles().end(); ++i)
|
|
|
|
{
|
|
|
|
cmSourceFile* src = *i;
|
|
|
|
if(src->GetPropertyAsBool("GENERATED"))
|
|
|
|
{
|
|
|
|
// Note: This path conversion must match that used for
|
|
|
|
// CMAKE_C_INCLUDE_PATH so that the file names match.
|
|
|
|
infoFileStream
|
|
|
|
<< " \""
|
|
|
|
<< this->Convert(src->GetFullPath().c_str(), HOME_OUTPUT)
|
|
|
|
<< "\"\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
infoFileStream
|
|
|
|
<< ")\n";
|
2005-05-05 20:45:53 +04:00
|
|
|
}
|
|
|
|
|
2005-05-06 22:49:38 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
std::string
|
|
|
|
cmLocalUnixMakefileGenerator3
|
|
|
|
::ConvertToFullPath(const std::string& localPath)
|
|
|
|
{
|
|
|
|
std::string dir = m_Makefile->GetStartOutputDirectory();
|
|
|
|
dir += "/";
|
|
|
|
dir += localPath;
|
|
|
|
return dir;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmLocalUnixMakefileGenerator3::WriteDisclaimer(std::ostream& os)
|
|
|
|
{
|
|
|
|
os
|
|
|
|
<< "# CMAKE generated file: DO NOT EDIT!\n"
|
|
|
|
<< "# Generated by \"" << m_GlobalGenerator->GetName() << "\""
|
|
|
|
<< " Generator, CMake Version "
|
|
|
|
<< cmMakefile::GetMajorVersion() << "."
|
|
|
|
<< cmMakefile::GetMinorVersion() << "\n\n";
|
|
|
|
}
|
|
|
|
|
2005-06-01 21:37:49 +04:00
|
|
|
const std::string &cmLocalUnixMakefileGenerator3::GetHomeRelativeOutputPath()
|
|
|
|
{
|
|
|
|
return m_HomeRelativeOutputPath;
|
2005-05-05 20:45:53 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
cmLocalUnixMakefileGenerator3
|
2005-06-22 17:06:46 +04:00
|
|
|
::WriteTargetRuleFiles(cmTarget& target)
|
2005-05-05 20:45:53 +04:00
|
|
|
{
|
|
|
|
// Create a directory for this target.
|
2005-08-05 22:19:18 +04:00
|
|
|
std::string dir = m_Makefile->GetStartOutputDirectory();
|
|
|
|
dir += "/";
|
|
|
|
dir += this->GetTargetDirectory(target);
|
|
|
|
cmSystemTools::MakeDirectory(dir.c_str());
|
2005-05-05 20:45:53 +04:00
|
|
|
|
2005-07-27 17:49:37 +04:00
|
|
|
// Generate the build-time dependencies file for this target.
|
|
|
|
std::string depBase = dir;
|
|
|
|
depBase += "/";
|
|
|
|
depBase += target.GetName();
|
|
|
|
|
|
|
|
// Construct the rule file name.
|
|
|
|
std::string ruleFileName = dir;
|
|
|
|
ruleFileName += "/build.make";
|
|
|
|
|
|
|
|
// Open the rule file. This should be copy-if-different because the
|
|
|
|
// rules may depend on this file itself.
|
2005-08-05 22:19:18 +04:00
|
|
|
std::string ruleFileNameFull = ruleFileName;
|
2005-07-27 17:49:37 +04:00
|
|
|
cmGeneratedFileStream ruleFileStream(ruleFileNameFull.c_str());
|
|
|
|
ruleFileStream.SetCopyIfDifferent(true);
|
|
|
|
if(!ruleFileStream)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this->WriteDisclaimer(ruleFileStream);
|
2005-12-23 00:42:36 +03:00
|
|
|
this->WriteSpecialTargetsTop(ruleFileStream);
|
2005-08-06 01:07:07 +04:00
|
|
|
this->WriteMakeVariables(ruleFileStream);
|
2005-07-27 17:49:37 +04:00
|
|
|
|
2005-08-01 18:19:35 +04:00
|
|
|
// Open the flags file. This should be copy-if-different because the
|
|
|
|
// rules may depend on this file itself.
|
|
|
|
std::string flagFileName = dir;
|
|
|
|
flagFileName += "/flags.make";
|
2005-08-05 22:19:18 +04:00
|
|
|
std::string flagFileNameFull = flagFileName;
|
2005-08-01 18:19:35 +04:00
|
|
|
cmGeneratedFileStream flagFileStream(flagFileNameFull.c_str());
|
|
|
|
flagFileStream.SetCopyIfDifferent(true);
|
|
|
|
if(!flagFileStream)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this->WriteDisclaimer(flagFileStream);
|
|
|
|
|
2005-07-27 17:49:37 +04:00
|
|
|
// Include the dependencies for the target.
|
|
|
|
std::string depPath = dir;
|
|
|
|
depPath += "/depend.make";
|
2005-08-09 18:35:23 +04:00
|
|
|
depPath = this->Convert(depPath.c_str(),HOME_OUTPUT,MAKEFILE);
|
2005-07-27 17:49:37 +04:00
|
|
|
ruleFileStream
|
|
|
|
<< "# Include any dependencies generated for this target.\n"
|
|
|
|
<< m_IncludeDirective << " "
|
|
|
|
<< depPath
|
|
|
|
<< "\n\n";
|
|
|
|
|
2005-08-08 23:23:45 +04:00
|
|
|
// Include the flags for the target.
|
2005-08-09 18:35:23 +04:00
|
|
|
flagFileName = this->Convert(flagFileName.c_str(), HOME_OUTPUT, MAKEFILE);
|
2005-08-08 23:23:45 +04:00
|
|
|
ruleFileStream
|
|
|
|
<< "# Include the compile flags for this target's objects.\n"
|
|
|
|
<< m_IncludeDirective << " "
|
|
|
|
<< flagFileName
|
|
|
|
<< "\n\n";
|
|
|
|
|
2005-07-27 17:49:37 +04:00
|
|
|
// make sure the depend file exists
|
2005-08-08 19:02:40 +04:00
|
|
|
depPath = dir;
|
|
|
|
depPath += "/depend.make";
|
|
|
|
depPath = this->Convert(depPath.c_str(),FULL,UNCHANGED);
|
2005-07-27 17:49:37 +04:00
|
|
|
if (!cmSystemTools::FileExists(depPath.c_str()))
|
|
|
|
{
|
|
|
|
// Write an empty dependency file.
|
|
|
|
cmGeneratedFileStream depFileStream(depPath.c_str());
|
|
|
|
depFileStream
|
|
|
|
<< "# Empty dependencies file for " << target.GetName() << ".\n"
|
|
|
|
<< "# This may be replaced when dependencies are built." << std::endl;
|
|
|
|
}
|
|
|
|
|
2005-05-05 20:45:53 +04:00
|
|
|
// First generate the object rule files. Save a list of all object
|
|
|
|
// files for this target.
|
|
|
|
std::vector<std::string> objects;
|
|
|
|
std::vector<std::string> external_objects;
|
|
|
|
const std::vector<cmSourceFile*>& sources = target.GetSourceFiles();
|
|
|
|
for(std::vector<cmSourceFile*>::const_iterator source = sources.begin();
|
|
|
|
source != sources.end(); ++source)
|
|
|
|
{
|
|
|
|
if(!(*source)->GetPropertyAsBool("HEADER_FILE_ONLY") &&
|
|
|
|
!(*source)->GetCustomCommand())
|
|
|
|
{
|
|
|
|
if(!m_GlobalGenerator->IgnoreFile((*source)->GetSourceExtension().c_str()))
|
|
|
|
{
|
|
|
|
// Generate this object file's rule file.
|
2005-07-27 17:49:37 +04:00
|
|
|
this->WriteObjectRuleFiles(target, *(*source), objects,
|
2005-08-01 18:19:35 +04:00
|
|
|
ruleFileStream, flagFileStream);
|
2005-05-05 20:45:53 +04:00
|
|
|
}
|
|
|
|
else if((*source)->GetPropertyAsBool("EXTERNAL_OBJECT"))
|
|
|
|
{
|
|
|
|
// This is an external object file. Just add it.
|
|
|
|
external_objects.push_back((*source)->GetFullPath());
|
|
|
|
}
|
2005-11-17 21:49:10 +03:00
|
|
|
else
|
|
|
|
{
|
|
|
|
// We only get here if a source file is not an external object
|
|
|
|
// and has an extension that is listed as an ignored file type
|
|
|
|
// for this language. No message or diagnosis should be
|
|
|
|
// given.
|
|
|
|
}
|
2005-05-05 20:45:53 +04:00
|
|
|
}
|
|
|
|
}
|
2005-05-19 18:52:59 +04:00
|
|
|
|
2005-08-01 18:19:35 +04:00
|
|
|
// write language flags for target
|
|
|
|
std::map<cmStdString,cmLocalUnixMakefileGenerator3::IntegrityCheckSet>&
|
|
|
|
checkSet = this->GetIntegrityCheckSet()[target.GetName()];
|
|
|
|
for(std::map<cmStdString,
|
|
|
|
cmLocalUnixMakefileGenerator3::IntegrityCheckSet>::const_iterator
|
|
|
|
l = checkSet.begin(); l != checkSet.end(); ++l)
|
|
|
|
{
|
|
|
|
const char *lang = l->first.c_str();
|
|
|
|
std::string flags;
|
|
|
|
// Add the export symbol definition for shared library objects.
|
|
|
|
bool shared = ((target.GetType() == cmTarget::SHARED_LIBRARY) ||
|
|
|
|
(target.GetType() == cmTarget::MODULE_LIBRARY));
|
|
|
|
if(shared)
|
|
|
|
{
|
|
|
|
flags += "-D";
|
|
|
|
if(const char* custom_export_name = target.GetProperty("DEFINE_SYMBOL"))
|
|
|
|
{
|
|
|
|
flags += custom_export_name;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
std::string in = target.GetName();
|
|
|
|
in += "_EXPORTS";
|
|
|
|
flags += cmSystemTools::MakeCindentifier(in.c_str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add language-specific flags.
|
|
|
|
this->AddLanguageFlags(flags, lang);
|
|
|
|
|
|
|
|
// Add shared-library flags if needed.
|
|
|
|
this->AddSharedFlags(flags, lang, shared);
|
|
|
|
|
|
|
|
// Add include directory flags.
|
|
|
|
this->AppendFlags(flags, this->GetIncludeFlags(lang));
|
2005-12-26 21:14:19 +03:00
|
|
|
// Add include directory flags.
|
|
|
|
this->AppendFlags(flags, this->GetFrameworkFlags(target).c_str());
|
|
|
|
|
2005-08-01 18:19:35 +04:00
|
|
|
flagFileStream << lang << "_FLAGS = " << flags
|
|
|
|
<< "\n"
|
|
|
|
<< "\n";
|
|
|
|
}
|
|
|
|
|
2005-05-24 22:42:23 +04:00
|
|
|
// write the custom commands for this target
|
|
|
|
std::vector<std::string> cleanFiles;
|
|
|
|
// Look for files registered for cleaning in this directory.
|
|
|
|
if(const char* additional_clean_files =
|
|
|
|
m_Makefile->GetProperty("ADDITIONAL_MAKE_CLEAN_FILES"))
|
2005-05-19 18:52:59 +04:00
|
|
|
{
|
2005-05-24 22:42:23 +04:00
|
|
|
cmSystemTools::ExpandListArgument(additional_clean_files, cleanFiles);
|
|
|
|
}
|
2005-07-28 23:24:31 +04:00
|
|
|
this->WriteCustomCommands(ruleFileStream,cleanFiles);
|
2005-05-19 18:52:59 +04:00
|
|
|
|
2005-05-05 20:45:53 +04:00
|
|
|
// Include the rule file for each object.
|
|
|
|
std::string relPath = this->GetHomeRelativeOutputPath();
|
|
|
|
std::string objTarget;
|
|
|
|
|
|
|
|
// Write the rule for this target type.
|
|
|
|
switch(target.GetType())
|
|
|
|
{
|
|
|
|
case cmTarget::STATIC_LIBRARY:
|
|
|
|
this->WriteStaticLibraryRule(ruleFileStream, ruleFileName.c_str(),
|
2005-05-24 22:42:23 +04:00
|
|
|
target, objects, external_objects,
|
|
|
|
cleanFiles);
|
2005-05-05 20:45:53 +04:00
|
|
|
break;
|
|
|
|
case cmTarget::SHARED_LIBRARY:
|
|
|
|
this->WriteSharedLibraryRule(ruleFileStream, ruleFileName.c_str(),
|
2005-05-24 22:42:23 +04:00
|
|
|
target, objects, external_objects,
|
|
|
|
cleanFiles);
|
2005-05-05 20:45:53 +04:00
|
|
|
break;
|
|
|
|
case cmTarget::MODULE_LIBRARY:
|
|
|
|
this->WriteModuleLibraryRule(ruleFileStream, ruleFileName.c_str(),
|
2005-05-24 22:42:23 +04:00
|
|
|
target, objects, external_objects,
|
|
|
|
cleanFiles);
|
2005-05-05 20:45:53 +04:00
|
|
|
break;
|
|
|
|
case cmTarget::EXECUTABLE:
|
|
|
|
this->WriteExecutableRule(ruleFileStream, ruleFileName.c_str(),
|
2005-05-24 22:42:23 +04:00
|
|
|
target, objects, external_objects,
|
|
|
|
cleanFiles);
|
2005-05-05 20:45:53 +04:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2005-05-24 22:42:23 +04:00
|
|
|
|
|
|
|
// Write the requires target.
|
|
|
|
this->WriteTargetRequiresRule(ruleFileStream, target, objects);
|
|
|
|
|
|
|
|
// Write clean target
|
|
|
|
this->WriteTargetCleanRule(ruleFileStream, target, cleanFiles);
|
2005-05-05 20:45:53 +04:00
|
|
|
}
|
|
|
|
|
2005-12-26 21:14:19 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
std::string
|
|
|
|
cmLocalUnixMakefileGenerator3
|
2005-12-27 21:03:01 +03:00
|
|
|
::GetFrameworkFlags(cmTarget&
|
|
|
|
#ifdef __APPLE__
|
|
|
|
target
|
|
|
|
#endif
|
|
|
|
)
|
2005-12-26 21:14:19 +03:00
|
|
|
{
|
|
|
|
#ifndef __APPLE__
|
|
|
|
return std::string();
|
|
|
|
#else
|
2005-12-27 23:33:47 +03:00
|
|
|
std::set<cmStdString> emitted;
|
|
|
|
std::vector<std::string> includes;
|
|
|
|
this->GetIncludeDirectories(includes);
|
|
|
|
std::vector<std::string>::iterator i;
|
|
|
|
// check all include directories for frameworks as this
|
|
|
|
// will already have added a -F for the framework
|
|
|
|
for(i = includes.begin(); i != includes.end(); ++i)
|
|
|
|
{
|
|
|
|
if(cmSystemTools::IsPathToFramework(i->c_str()))
|
|
|
|
{
|
|
|
|
std::string frameworkDir = *i;
|
|
|
|
frameworkDir += "/../";
|
|
|
|
frameworkDir = cmSystemTools::CollapseFullPath(frameworkDir.c_str());
|
|
|
|
emitted.insert(frameworkDir);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-12-26 21:14:19 +03:00
|
|
|
std::string flags;
|
|
|
|
std::vector<std::string>& frameworks = target.GetFrameworks();
|
2005-12-27 23:33:47 +03:00
|
|
|
for(i = frameworks.begin();
|
2005-12-26 21:14:19 +03:00
|
|
|
i != frameworks.end(); ++i)
|
|
|
|
{
|
2005-12-27 23:33:47 +03:00
|
|
|
if(emitted.insert(*i).second)
|
|
|
|
{
|
|
|
|
flags += "-F";
|
|
|
|
flags += this->ConvertToOutputForExisting(i->c_str());
|
|
|
|
flags += " ";
|
|
|
|
}
|
2005-12-26 21:14:19 +03:00
|
|
|
}
|
|
|
|
return flags;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2005-05-05 20:45:53 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
cmLocalUnixMakefileGenerator3
|
2005-07-27 19:33:39 +04:00
|
|
|
::WriteObjectDependRules(cmSourceFile& source,
|
2005-07-27 19:31:17 +04:00
|
|
|
std::vector<std::string>& depends)
|
2005-05-05 20:45:53 +04:00
|
|
|
{
|
|
|
|
// Create the list of dependencies known at cmake time. These are
|
|
|
|
// shared between the object file and dependency scanning rule.
|
|
|
|
depends.push_back(source.GetFullPath());
|
|
|
|
if(const char* objectDeps = source.GetProperty("OBJECT_DEPENDS"))
|
|
|
|
{
|
|
|
|
std::vector<std::string> deps;
|
|
|
|
cmSystemTools::ExpandListArgument(objectDeps, deps);
|
|
|
|
for(std::vector<std::string>::iterator i = deps.begin();
|
|
|
|
i != deps.end(); ++i)
|
|
|
|
{
|
|
|
|
depends.push_back(i->c_str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
cmLocalUnixMakefileGenerator3
|
2005-05-06 22:49:38 +04:00
|
|
|
::WriteObjectBuildFile(std::string &obj,
|
|
|
|
const char *lang,
|
2005-06-22 17:06:46 +04:00
|
|
|
cmTarget& target,
|
2005-07-27 17:49:37 +04:00
|
|
|
cmSourceFile& source,
|
2005-05-06 22:49:38 +04:00
|
|
|
std::vector<std::string>& depends,
|
2005-08-01 18:19:35 +04:00
|
|
|
std::ostream &ruleFileStream,
|
|
|
|
std::ostream &flagFileStream)
|
2005-05-05 20:45:53 +04:00
|
|
|
{
|
|
|
|
// Open the rule file for writing. This should be copy-if-different
|
|
|
|
// because the rules may depend on this file itself.
|
2005-08-05 22:19:18 +04:00
|
|
|
std::string ruleFileName = m_Makefile->GetStartOutputDirectory();
|
|
|
|
ruleFileName += "/";
|
|
|
|
ruleFileName += this->GetTargetDirectory(target);
|
2005-07-27 17:49:37 +04:00
|
|
|
ruleFileName += "/build.make";
|
2005-05-05 20:45:53 +04:00
|
|
|
std::string ruleFileNameFull = this->ConvertToFullPath(ruleFileName);
|
|
|
|
|
2005-08-01 18:19:35 +04:00
|
|
|
std::string flagFileName = this->GetTargetDirectory(target);
|
|
|
|
flagFileName += "/flags.make";
|
|
|
|
std::string flagFileNameFull = this->ConvertToFullPath(flagFileName);
|
|
|
|
this->AppendRuleDepend(depends, flagFileNameFull.c_str());
|
|
|
|
|
2005-05-17 19:15:09 +04:00
|
|
|
// generate the depend scanning rule
|
2005-07-27 19:33:39 +04:00
|
|
|
this->WriteObjectDependRules(source, depends);
|
2005-05-17 19:15:09 +04:00
|
|
|
|
2005-08-01 18:19:35 +04:00
|
|
|
std::string relativeObj = this->GetHomeRelativeOutputPath();
|
|
|
|
relativeObj += obj;
|
2006-01-17 18:21:45 +03:00
|
|
|
if(m_Makefile->GetDefinition("CMAKE_WINDOWS_OBJECT_PATH"))
|
|
|
|
{
|
|
|
|
relativeObj = cmSystemTools::ConvertToOutputPath(relativeObj.c_str());
|
|
|
|
}
|
2005-05-05 20:45:53 +04:00
|
|
|
// Write the build rule.
|
|
|
|
// Build the set of compiler flags.
|
|
|
|
std::string flags;
|
2006-01-25 16:38:06 +03:00
|
|
|
if(target.GetProperty("COMPILE_FLAGS"))
|
|
|
|
{
|
|
|
|
this->AppendFlags(flags, target.GetProperty("COMPILE_FLAGS"));
|
|
|
|
}
|
2005-05-05 20:45:53 +04:00
|
|
|
|
2005-08-01 18:19:35 +04:00
|
|
|
// Add flags from source file properties.
|
|
|
|
if (source.GetProperty("COMPILE_FLAGS"))
|
|
|
|
{
|
|
|
|
this->AppendFlags(flags, source.GetProperty("COMPILE_FLAGS"));
|
2005-08-08 23:23:45 +04:00
|
|
|
flagFileStream << "# Custom flags: "
|
2005-08-01 18:19:35 +04:00
|
|
|
<< relativeObj << "_FLAGS = "
|
|
|
|
<< source.GetProperty("COMPILE_FLAGS")
|
|
|
|
<< "\n"
|
|
|
|
<< "\n";
|
|
|
|
}
|
|
|
|
|
2005-05-05 20:45:53 +04:00
|
|
|
// Add language-specific flags.
|
2005-08-08 23:23:45 +04:00
|
|
|
std::string langFlags = "$(";
|
|
|
|
langFlags += lang;
|
|
|
|
langFlags += "_FLAGS)";
|
|
|
|
this->AppendFlags(flags, langFlags.c_str());
|
2005-08-01 18:19:35 +04:00
|
|
|
|
2005-05-05 20:45:53 +04:00
|
|
|
// Get the output paths for source and object files.
|
2005-05-12 18:49:56 +04:00
|
|
|
std::string sourceFile = source.GetFullPath();
|
|
|
|
if(m_UseRelativePaths)
|
|
|
|
{
|
2005-05-13 17:54:30 +04:00
|
|
|
sourceFile = this->Convert(sourceFile.c_str(),HOME_OUTPUT);
|
2005-05-12 18:49:56 +04:00
|
|
|
}
|
2005-05-13 17:54:30 +04:00
|
|
|
sourceFile = this->Convert(sourceFile.c_str(),NONE,SHELL);
|
|
|
|
std::string objectFile = this->Convert(obj.c_str(),START_OUTPUT,SHELL);
|
2005-05-05 20:45:53 +04:00
|
|
|
|
|
|
|
// Construct the build message.
|
2005-08-17 19:43:58 +04:00
|
|
|
std::vector<std::string> no_commands;
|
2005-05-05 20:45:53 +04:00
|
|
|
std::vector<std::string> commands;
|
|
|
|
std::string buildEcho = "Building ";
|
|
|
|
buildEcho += lang;
|
|
|
|
buildEcho += " object ";
|
|
|
|
buildEcho += relativeObj;
|
|
|
|
this->AppendEcho(commands, buildEcho.c_str());
|
|
|
|
|
|
|
|
// Construct the compile rules.
|
|
|
|
std::string compileRuleVar = "CMAKE_";
|
|
|
|
compileRuleVar += lang;
|
|
|
|
compileRuleVar += "_COMPILE_OBJECT";
|
|
|
|
std::string compileRule =
|
|
|
|
m_Makefile->GetRequiredDefinition(compileRuleVar.c_str());
|
|
|
|
cmSystemTools::ExpandListArgument(compileRule, commands);
|
|
|
|
|
|
|
|
// Expand placeholders in the commands.
|
|
|
|
for(std::vector<std::string>::iterator i = commands.begin();
|
|
|
|
i != commands.end(); ++i)
|
|
|
|
{
|
|
|
|
this->ExpandRuleVariables(*i,
|
|
|
|
lang,
|
|
|
|
0, // no objects
|
|
|
|
0, // no target
|
|
|
|
0, // no link libs
|
|
|
|
sourceFile.c_str(),
|
|
|
|
relativeObj.c_str(),
|
|
|
|
flags.c_str());
|
|
|
|
}
|
|
|
|
|
2005-08-17 19:43:58 +04:00
|
|
|
// Make the target dependency scanning rule include cmake-time-known
|
|
|
|
// dependencies. The others are handled by the check-build-system
|
|
|
|
// path.
|
|
|
|
std::string depMark = this->GetRelativeTargetDirectory(target);
|
|
|
|
depMark += "/depend.make.mark";
|
|
|
|
this->WriteMakeRule(ruleFileStream, 0,
|
|
|
|
depMark.c_str(), depends, no_commands);
|
|
|
|
|
2005-05-05 20:45:53 +04:00
|
|
|
// Write the rule.
|
|
|
|
this->WriteMakeRule(ruleFileStream, 0,
|
|
|
|
relativeObj.c_str(), depends, commands);
|
|
|
|
|
|
|
|
// If the language needs provides-requires mode, create the
|
|
|
|
// corresponding targets.
|
2005-05-17 19:15:09 +04:00
|
|
|
std::string objectRequires = relativeObj;
|
2005-05-16 18:53:02 +04:00
|
|
|
objectRequires += ".requires";
|
2005-05-19 00:10:49 +04:00
|
|
|
std::vector<std::string> p_depends;
|
2005-05-16 18:53:02 +04:00
|
|
|
// always provide an empty requires target
|
|
|
|
this->WriteMakeRule(ruleFileStream, 0,
|
2005-05-19 00:10:49 +04:00
|
|
|
objectRequires.c_str(), p_depends, no_commands);
|
2005-05-17 22:22:59 +04:00
|
|
|
|
|
|
|
// write a build rule to recursively build what this obj provides
|
|
|
|
std::string objectProvides = relativeObj;
|
|
|
|
objectProvides += ".provides";
|
2005-07-27 19:42:46 +04:00
|
|
|
std::string temp = relativeObj;
|
2005-05-17 22:22:59 +04:00
|
|
|
temp += ".provides.build";
|
|
|
|
std::vector<std::string> r_commands;
|
2005-05-20 19:01:21 +04:00
|
|
|
std::string tgtMakefileName = this->GetRelativeTargetDirectory(target);
|
|
|
|
tgtMakefileName += "/build.make";
|
|
|
|
r_commands.push_back(this->GetRecursiveMakeCall(tgtMakefileName.c_str(),
|
|
|
|
temp.c_str()));
|
2005-05-19 00:10:49 +04:00
|
|
|
p_depends.clear();
|
2005-05-17 22:22:59 +04:00
|
|
|
p_depends.push_back(objectRequires);
|
|
|
|
this->WriteMakeRule(ruleFileStream, 0,
|
|
|
|
objectProvides.c_str(), p_depends, r_commands);
|
|
|
|
|
|
|
|
// write the provides.build rule dependency on the obj file
|
|
|
|
p_depends.clear();
|
|
|
|
p_depends.push_back(relativeObj);
|
|
|
|
this->WriteMakeRule(ruleFileStream, 0,
|
|
|
|
temp.c_str(), p_depends, no_commands);
|
2005-05-05 20:45:53 +04:00
|
|
|
}
|
|
|
|
|
2005-05-06 22:49:38 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
cmLocalUnixMakefileGenerator3
|
2005-07-27 17:49:37 +04:00
|
|
|
::WriteObjectRuleFiles(cmTarget& target, cmSourceFile& source,
|
|
|
|
std::vector<std::string>& objects,
|
2005-08-01 18:19:35 +04:00
|
|
|
std::ostream &ruleFileStream,
|
|
|
|
std::ostream &flagFileStream)
|
2005-05-06 22:49:38 +04:00
|
|
|
{
|
|
|
|
// Identify the language of the source file.
|
|
|
|
const char* lang = this->GetSourceFileLanguage(source);
|
|
|
|
if(!lang)
|
|
|
|
{
|
|
|
|
// If language is not known, this is an error.
|
|
|
|
cmSystemTools::Error("Source file \"", source.GetFullPath().c_str(),
|
|
|
|
"\" has unknown type.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the full path name of the object file.
|
2006-01-02 20:36:54 +03:00
|
|
|
std::string objNoTargetDir;
|
|
|
|
std::string obj = this->GetObjectFileName(target, source, &objNoTargetDir);
|
2005-05-06 22:49:38 +04:00
|
|
|
// Avoid generating duplicate rules.
|
|
|
|
if(m_ObjectFiles.find(obj) == m_ObjectFiles.end())
|
|
|
|
{
|
|
|
|
m_ObjectFiles.insert(obj);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cmOStringStream err;
|
|
|
|
err << "Warning: Source file \""
|
|
|
|
<< source.GetSourceName().c_str() << "."
|
|
|
|
<< source.GetSourceExtension().c_str()
|
|
|
|
<< "\" is listed multiple times for target \"" << target.GetName()
|
|
|
|
<< "\".";
|
|
|
|
cmSystemTools::Message(err.str().c_str(), "Warning");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create the directory containing the object file. This may be a
|
|
|
|
// subdirectory under the target's directory.
|
|
|
|
std::string dir = cmSystemTools::GetFilenamePath(obj.c_str());
|
|
|
|
cmSystemTools::MakeDirectory(this->ConvertToFullPath(dir).c_str());
|
|
|
|
|
|
|
|
// Save this in the target's list of object files.
|
|
|
|
objects.push_back(obj);
|
|
|
|
std::string relativeObj = this->GetHomeRelativeOutputPath();
|
|
|
|
relativeObj += obj;
|
|
|
|
// we compute some depends when writing the depend.make that we will also
|
|
|
|
// use in the build.make, same with depMakeFile
|
|
|
|
std::vector<std::string> depends;
|
|
|
|
std::string depMakeFile;
|
|
|
|
|
|
|
|
// generate the build rule file
|
2005-07-27 19:31:17 +04:00
|
|
|
this->WriteObjectBuildFile(obj, lang, target, source, depends,
|
2005-08-01 18:19:35 +04:00
|
|
|
ruleFileStream, flagFileStream);
|
2005-05-06 22:49:38 +04:00
|
|
|
|
|
|
|
// The object file should be checked for dependency integrity.
|
2005-07-27 17:49:37 +04:00
|
|
|
m_CheckDependFiles[target.GetName()][lang].insert(&source);
|
2005-06-02 21:41:34 +04:00
|
|
|
// add this to the list of objects for this local generator
|
2006-01-02 20:36:54 +03:00
|
|
|
if(cmSystemTools::FileIsFullPath(objNoTargetDir.c_str()))
|
|
|
|
{
|
|
|
|
objNoTargetDir = cmSystemTools::GetFilenameName(objNoTargetDir);
|
|
|
|
}
|
|
|
|
m_LocalObjectFiles[objNoTargetDir].push_back(&target);
|
2005-05-06 22:49:38 +04:00
|
|
|
}
|
|
|
|
|
2005-05-05 20:45:53 +04:00
|
|
|
//----------------------------------------------------------------------------
|
2005-07-27 17:49:37 +04:00
|
|
|
void
|
2005-05-05 20:45:53 +04:00
|
|
|
cmLocalUnixMakefileGenerator3
|
2005-07-27 20:41:08 +04:00
|
|
|
::GenerateCustomRuleFile(const cmCustomCommand& cc,
|
2005-07-27 17:49:37 +04:00
|
|
|
std::ostream &ruleFileStream)
|
2005-05-05 20:45:53 +04:00
|
|
|
{
|
|
|
|
// Convert the output name to a relative path if possible.
|
2005-05-13 17:54:30 +04:00
|
|
|
std::string output = this->Convert(cc.GetOutput(),START_OUTPUT);
|
2005-05-05 20:45:53 +04:00
|
|
|
|
|
|
|
// Collect the commands.
|
|
|
|
std::vector<std::string> commands;
|
|
|
|
std::string preEcho = "Generating ";
|
|
|
|
preEcho += output;
|
|
|
|
this->AppendEcho(commands, preEcho.c_str());
|
|
|
|
this->AppendCustomCommand(commands, cc);
|
2005-05-24 22:42:23 +04:00
|
|
|
|
2005-05-05 20:45:53 +04:00
|
|
|
// Collect the dependencies.
|
|
|
|
std::vector<std::string> depends;
|
|
|
|
this->AppendCustomDepend(depends, cc);
|
|
|
|
|
|
|
|
// Write the rule.
|
|
|
|
const char* comment = 0;
|
|
|
|
if(cc.GetComment() && *cc.GetComment())
|
|
|
|
{
|
|
|
|
comment = cc.GetComment();
|
|
|
|
}
|
|
|
|
this->WriteMakeRule(ruleFileStream, comment,
|
|
|
|
cc.GetOutput(), depends, commands);
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
cmLocalUnixMakefileGenerator3
|
2005-06-22 17:06:46 +04:00
|
|
|
::WriteUtilityRuleFiles(cmTarget& target)
|
2005-05-05 20:45:53 +04:00
|
|
|
{
|
|
|
|
// Create a directory for this target.
|
|
|
|
std::string dir = this->GetTargetDirectory(target);
|
|
|
|
cmSystemTools::MakeDirectory(this->ConvertToFullPath(dir).c_str());
|
|
|
|
|
|
|
|
// Construct the name of the rule file.
|
|
|
|
std::string ruleFileName = dir;
|
|
|
|
ruleFileName += "/build.make";
|
|
|
|
|
|
|
|
// Open the rule file. This should be copy-if-different because the
|
|
|
|
// rules may depend on this file itself.
|
|
|
|
std::string ruleFileNameFull = this->ConvertToFullPath(ruleFileName);
|
|
|
|
cmGeneratedFileStream ruleFileStream(ruleFileNameFull.c_str());
|
|
|
|
ruleFileStream.SetCopyIfDifferent(true);
|
|
|
|
if(!ruleFileStream)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this->WriteDisclaimer(ruleFileStream);
|
2005-08-06 01:07:07 +04:00
|
|
|
this->WriteMakeVariables(ruleFileStream);
|
2005-05-05 20:45:53 +04:00
|
|
|
ruleFileStream
|
|
|
|
<< "# Utility rule file for " << target.GetName() << ".\n\n";
|
|
|
|
|
2005-05-24 22:42:23 +04:00
|
|
|
// write the custom commands for this target
|
|
|
|
std::vector<std::string> cleanFiles;
|
|
|
|
if(const char* additional_clean_files =
|
|
|
|
m_Makefile->GetProperty("ADDITIONAL_MAKE_CLEAN_FILES"))
|
2005-05-19 18:52:59 +04:00
|
|
|
{
|
2005-05-24 22:42:23 +04:00
|
|
|
cmSystemTools::ExpandListArgument(additional_clean_files, cleanFiles);
|
|
|
|
}
|
2005-07-28 23:24:31 +04:00
|
|
|
this->WriteCustomCommands(ruleFileStream, cleanFiles);
|
2005-05-19 18:52:59 +04:00
|
|
|
|
2005-05-05 20:45:53 +04:00
|
|
|
// Collect the commands and dependencies.
|
|
|
|
std::vector<std::string> commands;
|
|
|
|
std::vector<std::string> depends;
|
2006-01-17 18:21:45 +03:00
|
|
|
const char* sym = m_Makefile->GetDefinition("CMAKE_MAKE_SYMBOLIC_RULE");
|
|
|
|
if(sym)
|
|
|
|
{
|
|
|
|
depends.push_back(sym);
|
|
|
|
}
|
2005-05-05 20:45:53 +04:00
|
|
|
|
|
|
|
// Utility targets store their rules in pre- and post-build commands.
|
|
|
|
this->AppendCustomDepends(depends, target.GetPreBuildCommands());
|
|
|
|
this->AppendCustomDepends(depends, target.GetPostBuildCommands());
|
|
|
|
this->AppendCustomCommands(commands, target.GetPreBuildCommands());
|
|
|
|
this->AppendCustomCommands(commands, target.GetPostBuildCommands());
|
|
|
|
|
|
|
|
// Add dependencies on targets that must be built first.
|
|
|
|
this->AppendTargetDepends(depends, target);
|
|
|
|
|
|
|
|
// Add a dependency on the rule file itself.
|
|
|
|
std::string relPath = this->GetHomeRelativeOutputPath();
|
|
|
|
std::string objTarget = relPath;
|
|
|
|
objTarget += ruleFileName;
|
|
|
|
this->AppendRuleDepend(depends, objTarget.c_str());
|
|
|
|
|
|
|
|
// Write the rule.
|
|
|
|
this->WriteMakeRule(ruleFileStream, 0,
|
|
|
|
target.GetName(), depends, commands);
|
|
|
|
|
|
|
|
// Write convenience targets.
|
|
|
|
dir = m_Makefile->GetStartOutputDirectory();
|
|
|
|
dir += "/";
|
|
|
|
dir += this->GetTargetDirectory(target);
|
|
|
|
std::string buildTargetRuleName = dir;
|
|
|
|
buildTargetRuleName += "/build";
|
|
|
|
buildTargetRuleName =
|
2005-05-13 17:54:30 +04:00
|
|
|
this->Convert(buildTargetRuleName.c_str(),HOME_OUTPUT,MAKEFILE);
|
2005-05-05 20:45:53 +04:00
|
|
|
this->WriteConvenienceRule(ruleFileStream, target.GetName(),
|
|
|
|
buildTargetRuleName.c_str());
|
2005-05-24 22:42:23 +04:00
|
|
|
|
|
|
|
// Write clean target
|
|
|
|
this->WriteTargetCleanRule(ruleFileStream, target, cleanFiles);
|
2005-05-05 20:45:53 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
cmLocalUnixMakefileGenerator3
|
|
|
|
::WriteMakeRule(std::ostream& os,
|
|
|
|
const char* comment,
|
|
|
|
const char* target,
|
|
|
|
const std::vector<std::string>& depends,
|
|
|
|
const std::vector<std::string>& commands)
|
|
|
|
{
|
|
|
|
// Make sure there is a target.
|
|
|
|
if(!target || !*target)
|
|
|
|
{
|
2005-06-09 17:48:44 +04:00
|
|
|
cmSystemTools::Error("No target for WriteMakeRule! called with comment: ",
|
|
|
|
comment);
|
2005-05-05 20:45:53 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string replace;
|
|
|
|
|
|
|
|
// Write the comment describing the rule in the makefile.
|
|
|
|
if(comment)
|
|
|
|
{
|
|
|
|
replace = comment;
|
|
|
|
std::string::size_type lpos = 0;
|
|
|
|
std::string::size_type rpos;
|
|
|
|
while((rpos = replace.find('\n', lpos)) != std::string::npos)
|
|
|
|
{
|
|
|
|
os << "# " << replace.substr(lpos, rpos-lpos) << "\n";
|
|
|
|
lpos = rpos+1;
|
|
|
|
}
|
|
|
|
os << "# " << replace.substr(lpos) << "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
// Construct the left hand side of the rule.
|
|
|
|
replace = target;
|
2005-05-13 17:54:30 +04:00
|
|
|
std::string tgt = this->Convert(replace.c_str(),HOME_OUTPUT,MAKEFILE);
|
2005-05-05 20:45:53 +04:00
|
|
|
tgt = this->ConvertToMakeTarget(tgt.c_str());
|
|
|
|
const char* space = "";
|
|
|
|
if(tgt.size() == 1)
|
|
|
|
{
|
|
|
|
// Add a space before the ":" to avoid drive letter confusion on
|
|
|
|
// Windows.
|
|
|
|
space = " ";
|
|
|
|
}
|
|
|
|
|
|
|
|
// Write the rule.
|
|
|
|
if(depends.empty())
|
|
|
|
{
|
|
|
|
// No dependencies. The commands will always run.
|
|
|
|
os << tgt.c_str() << space << ":\n";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Split dependencies into multiple rule lines. This allows for
|
|
|
|
// very long dependency lists even on older make implementations.
|
|
|
|
for(std::vector<std::string>::const_iterator dep = depends.begin();
|
|
|
|
dep != depends.end(); ++dep)
|
|
|
|
{
|
|
|
|
replace = *dep;
|
2005-05-13 17:54:30 +04:00
|
|
|
replace = this->Convert(replace.c_str(),HOME_OUTPUT,MAKEFILE);
|
2005-05-05 20:45:53 +04:00
|
|
|
replace = this->ConvertToMakeTarget(replace.c_str());
|
|
|
|
os << tgt.c_str() << space << ": " << replace.c_str() << "\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Write the list of commands.
|
|
|
|
for(std::vector<std::string>::const_iterator i = commands.begin();
|
|
|
|
i != commands.end(); ++i)
|
|
|
|
{
|
|
|
|
replace = *i;
|
|
|
|
os << "\t" << replace.c_str() << "\n";
|
|
|
|
}
|
|
|
|
os << "\n";
|
|
|
|
}
|
|
|
|
|
2005-05-06 22:49:38 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmLocalUnixMakefileGenerator3::WriteDivider(std::ostream& os)
|
|
|
|
{
|
|
|
|
os
|
|
|
|
<< "#======================================"
|
|
|
|
<< "=======================================\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
cmLocalUnixMakefileGenerator3
|
2005-08-06 01:07:07 +04:00
|
|
|
::WriteMakeVariables(std::ostream& makefileStream)
|
2005-05-06 22:49:38 +04:00
|
|
|
{
|
|
|
|
this->WriteDivider(makefileStream);
|
|
|
|
makefileStream
|
|
|
|
<< "# Set environment variables for the build.\n"
|
|
|
|
<< "\n";
|
2005-12-23 00:42:36 +03:00
|
|
|
if(m_DefineWindowsNULL)
|
2005-05-06 22:49:38 +04:00
|
|
|
{
|
|
|
|
makefileStream
|
|
|
|
<< "!IF \"$(OS)\" == \"Windows_NT\"\n"
|
|
|
|
<< "NULL=\n"
|
|
|
|
<< "!ELSE\n"
|
|
|
|
<< "NULL=nul\n"
|
|
|
|
<< "!ENDIF\n";
|
|
|
|
}
|
2005-12-23 00:42:36 +03:00
|
|
|
if(m_WindowsShell)
|
|
|
|
{
|
|
|
|
makefileStream
|
|
|
|
<< "SHELL = C:\\WINDOWS\\system32\\cmd.exe\n";
|
|
|
|
}
|
2005-05-06 22:49:38 +04:00
|
|
|
else
|
|
|
|
{
|
2005-12-23 00:42:36 +03:00
|
|
|
makefileStream
|
|
|
|
<< "# The shell in which to execute make rules.\n"
|
|
|
|
<< "SHELL = /bin/sh\n"
|
|
|
|
<< "\n";
|
2005-05-06 22:49:38 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string cmakecommand =
|
2005-08-08 19:28:28 +04:00
|
|
|
m_Makefile->GetRequiredDefinition("CMAKE_COMMAND");
|
2005-05-06 22:49:38 +04:00
|
|
|
makefileStream
|
|
|
|
<< "# The CMake executable.\n"
|
|
|
|
<< "CMAKE_COMMAND = "
|
2005-12-23 00:42:36 +03:00
|
|
|
<< this->Convert(cmakecommand.c_str(), FULL, SHELL).c_str()
|
2005-07-05 17:21:44 +04:00
|
|
|
<< "\n"
|
2005-05-06 22:49:38 +04:00
|
|
|
<< "\n";
|
|
|
|
makefileStream
|
|
|
|
<< "# The command to remove a file.\n"
|
|
|
|
<< "RM = "
|
2005-08-05 22:19:18 +04:00
|
|
|
<< this->Convert(cmakecommand.c_str(),FULL,SHELL).c_str()
|
2005-05-06 22:49:38 +04:00
|
|
|
<< " -E remove -f\n"
|
|
|
|
<< "\n";
|
2005-07-05 17:21:44 +04:00
|
|
|
|
2005-05-06 22:49:38 +04:00
|
|
|
if(m_Makefile->GetDefinition("CMAKE_EDIT_COMMAND"))
|
|
|
|
{
|
|
|
|
makefileStream
|
|
|
|
<< "# The program to use to edit the cache.\n"
|
|
|
|
<< "CMAKE_EDIT_COMMAND = "
|
|
|
|
<< (this->ConvertToOutputForExisting(
|
|
|
|
m_Makefile->GetDefinition("CMAKE_EDIT_COMMAND"))) << "\n"
|
|
|
|
<< "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
makefileStream
|
|
|
|
<< "# The top-level source directory on which CMake was run.\n"
|
|
|
|
<< "CMAKE_SOURCE_DIR = "
|
2005-08-05 22:19:18 +04:00
|
|
|
<< this->Convert(m_Makefile->GetHomeDirectory(), FULL, SHELL)
|
2005-05-06 22:49:38 +04:00
|
|
|
<< "\n"
|
|
|
|
<< "\n";
|
|
|
|
makefileStream
|
|
|
|
<< "# The top-level build directory on which CMake was run.\n"
|
2005-07-05 17:21:44 +04:00
|
|
|
<< "CMAKE_BINARY_DIR = "
|
2005-08-05 22:19:18 +04:00
|
|
|
<< this->Convert(m_Makefile->GetHomeOutputDirectory(), FULL, SHELL)
|
2005-05-06 22:49:38 +04:00
|
|
|
<< "\n"
|
|
|
|
<< "\n";
|
|
|
|
}
|
|
|
|
|
2005-05-05 20:45:53 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
cmLocalUnixMakefileGenerator3
|
|
|
|
::WriteSpecialTargetsTop(std::ostream& makefileStream)
|
|
|
|
{
|
|
|
|
this->WriteDivider(makefileStream);
|
|
|
|
makefileStream
|
|
|
|
<< "# Special targets provided by cmake.\n"
|
|
|
|
<< "\n";
|
|
|
|
|
|
|
|
// 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.
|
|
|
|
this->WriteMakeRule(makefileStream,
|
|
|
|
"Default target executed when no arguments are "
|
|
|
|
"given to make.",
|
|
|
|
"default_target",
|
|
|
|
depends,
|
|
|
|
no_commands);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Write special "test" target to run ctest.
|
|
|
|
if(m_Makefile->IsOn("CMAKE_TESTING_ENABLED"))
|
|
|
|
{
|
|
|
|
std::string ctest;
|
|
|
|
if(m_Makefile->GetDefinition("CMake_BINARY_DIR"))
|
|
|
|
{
|
|
|
|
// We are building CMake itself. Use the ctest that comes with
|
|
|
|
// this version of CMake instead of the one used to build it.
|
|
|
|
ctest = m_ExecutableOutputPath;
|
|
|
|
ctest += "ctest";
|
|
|
|
ctest += cmSystemTools::GetExecutableExtension();
|
2005-05-13 17:54:30 +04:00
|
|
|
ctest = this->Convert(ctest.c_str(),START_OUTPUT,SHELL);
|
2005-06-17 00:42:31 +04:00
|
|
|
ctest += " --force-new-ctest-process";
|
2005-05-05 20:45:53 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// We are building another project. Use the ctest that comes with
|
|
|
|
// the CMake building it.
|
|
|
|
ctest = m_Makefile->GetRequiredDefinition("CMAKE_COMMAND");
|
|
|
|
ctest = cmSystemTools::GetFilenamePath(ctest.c_str());
|
|
|
|
ctest += "/";
|
|
|
|
ctest += "ctest";
|
|
|
|
ctest += cmSystemTools::GetExecutableExtension();
|
|
|
|
ctest = this->ConvertToOutputForExisting(ctest.c_str());
|
|
|
|
}
|
|
|
|
std::vector<std::string> no_depends;
|
|
|
|
std::vector<std::string> commands;
|
|
|
|
this->AppendEcho(commands, "Running tests...");
|
2005-06-17 00:42:31 +04:00
|
|
|
ctest += " $(ARGS)";
|
|
|
|
commands.push_back(ctest);
|
2005-05-05 20:45:53 +04:00
|
|
|
this->WriteMakeRule(makefileStream,
|
|
|
|
"Special rule to drive testing with ctest.",
|
|
|
|
"test", no_depends, commands);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Write special "install" target to run cmake_install.cmake script.
|
|
|
|
{
|
|
|
|
std::vector<std::string> depends;
|
2006-01-17 18:21:45 +03:00
|
|
|
const char* sym = m_Makefile->GetDefinition("CMAKE_MAKE_SYMBOLIC_RULE");
|
|
|
|
if(sym)
|
|
|
|
{
|
|
|
|
depends.push_back(sym);
|
|
|
|
}
|
2005-05-05 20:45:53 +04:00
|
|
|
std::vector<std::string> commands;
|
|
|
|
std::string cmd;
|
|
|
|
if(m_Makefile->GetDefinition("CMake_BINARY_DIR"))
|
|
|
|
{
|
|
|
|
// We are building CMake itself. We cannot use the original
|
|
|
|
// executable to install over itself.
|
|
|
|
cmd = m_ExecutableOutputPath;
|
|
|
|
cmd += "cmake";
|
2005-05-13 17:54:30 +04:00
|
|
|
cmd = this->Convert(cmd.c_str(),START_OUTPUT,SHELL);
|
2005-05-05 20:45:53 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cmd = "$(CMAKE_COMMAND)";
|
|
|
|
}
|
|
|
|
cmd += " -P cmake_install.cmake";
|
|
|
|
commands.push_back(cmd);
|
|
|
|
const char* noall =
|
|
|
|
m_Makefile->GetDefinition("CMAKE_SKIP_INSTALL_ALL_DEPENDENCY");
|
|
|
|
if(!noall || cmSystemTools::IsOff(noall))
|
|
|
|
{
|
|
|
|
// Drive the build before installing.
|
|
|
|
depends.push_back("all");
|
|
|
|
}
|
|
|
|
this->WriteMakeRule(makefileStream,
|
|
|
|
"Special rule to run installation script.",
|
|
|
|
"install", depends, commands);
|
|
|
|
}
|
|
|
|
|
2006-01-17 18:21:45 +03:00
|
|
|
std::vector<std::string> no_depends;
|
|
|
|
const char* sym = m_Makefile->GetDefinition("CMAKE_MAKE_SYMBOLIC_RULE");
|
|
|
|
if(sym)
|
|
|
|
{
|
|
|
|
no_depends.push_back(sym);
|
|
|
|
}
|
2005-05-05 20:45:53 +04:00
|
|
|
// Write special "rebuild_cache" target to re-run cmake.
|
|
|
|
{
|
|
|
|
std::vector<std::string> commands;
|
|
|
|
this->AppendEcho(commands, "Running CMake to regenerate build system...");
|
|
|
|
commands.push_back(
|
|
|
|
"$(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)");
|
|
|
|
this->WriteMakeRule(makefileStream,
|
|
|
|
"Special rule to re-run CMake using make.",
|
|
|
|
"rebuild_cache",
|
|
|
|
no_depends,
|
|
|
|
commands);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Use CMAKE_EDIT_COMMAND for the edit_cache rule if it is defined.
|
|
|
|
// Otherwise default to the interactive command-line interface.
|
|
|
|
if(m_Makefile->GetDefinition("CMAKE_EDIT_COMMAND"))
|
|
|
|
{
|
|
|
|
std::vector<std::string> commands;
|
|
|
|
this->AppendEcho(commands, "Running CMake cache editor...");
|
|
|
|
commands.push_back(
|
|
|
|
"$(CMAKE_EDIT_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)");
|
|
|
|
this->WriteMakeRule(makefileStream,
|
|
|
|
"Special rule to re-run CMake cache editor using make.",
|
|
|
|
"edit_cache",
|
|
|
|
no_depends,
|
|
|
|
commands);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
std::vector<std::string> commands;
|
|
|
|
this->AppendEcho(commands,
|
|
|
|
"Running interactive CMake command-line interface...");
|
|
|
|
commands.push_back(
|
|
|
|
"$(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -i");
|
|
|
|
this->WriteMakeRule(makefileStream,
|
|
|
|
"Special rule to re-run CMake cache editor using make.",
|
|
|
|
"edit_cache",
|
|
|
|
no_depends,
|
|
|
|
commands);
|
|
|
|
}
|
2005-10-21 23:24:12 +04:00
|
|
|
|
|
|
|
// Write special target to silence make output. This must be after
|
|
|
|
// the default target in case VERBOSE is set (which changes the
|
|
|
|
// name). The setting of CMAKE_VERBOSE_MAKEFILE to ON will cause a
|
|
|
|
// "VERBOSE=1" to be added as a make variable which will change the
|
|
|
|
// name of this special target. This gives a make-time choice to
|
|
|
|
// the user.
|
|
|
|
std::vector<std::string> commands;
|
2006-01-17 18:21:45 +03:00
|
|
|
no_depends.clear();
|
2005-10-21 23:24:12 +04:00
|
|
|
commands.clear();
|
2005-12-31 05:54:03 +03:00
|
|
|
if(m_Makefile->IsOn("CMAKE_VERBOSE_MAKEFILE"))
|
|
|
|
{
|
|
|
|
makefileStream
|
|
|
|
<< "# Produce verbose output by default.\n"
|
|
|
|
<< "VERBOSE = 1\n"
|
|
|
|
<< "\n";
|
|
|
|
}
|
2006-01-17 18:21:45 +03:00
|
|
|
if(m_SilentNoColon)
|
|
|
|
{
|
|
|
|
makefileStream << "$(VERBOSE).SILENT\n";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this->WriteMakeRule(makefileStream,
|
|
|
|
"Suppress display of executed commands.",
|
|
|
|
"$(VERBOSE).SILENT",
|
|
|
|
no_depends,
|
|
|
|
commands);
|
|
|
|
}
|
2005-10-21 23:24:12 +04:00
|
|
|
|
|
|
|
// Special target to cleanup operation of make tool.
|
|
|
|
std::vector<std::string> depends;
|
|
|
|
this->WriteMakeRule(makefileStream,
|
|
|
|
"Disable implicit rules so canoncical targets will work.",
|
|
|
|
".SUFFIXES",
|
|
|
|
depends,
|
|
|
|
commands);
|
|
|
|
// Add a fake suffix to keep HP happy. Must be max 32 chars for SGI make.
|
|
|
|
depends.push_back(".hpux_make_needs_suffix_list");
|
|
|
|
this->WriteMakeRule(makefileStream, 0,
|
|
|
|
".SUFFIXES", depends, commands);
|
|
|
|
|
2005-05-05 20:45:53 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
cmLocalUnixMakefileGenerator3
|
|
|
|
::WriteSpecialTargetsBottom(std::ostream& makefileStream)
|
|
|
|
{
|
|
|
|
this->WriteDivider(makefileStream);
|
|
|
|
makefileStream
|
|
|
|
<< "# Special targets to cleanup operation of make.\n"
|
|
|
|
<< "\n";
|
|
|
|
|
|
|
|
// Write special "cmake_check_build_system" target to run cmake with
|
|
|
|
// the --check-build-system flag.
|
|
|
|
{
|
|
|
|
// Build command to run CMake to check if anything needs regenerating.
|
2005-07-29 17:19:25 +04:00
|
|
|
std::string cmakefileName = "CMakeFiles/Makefile.cmake";
|
2005-05-05 20:45:53 +04:00
|
|
|
std::string runRule =
|
|
|
|
"$(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)";
|
|
|
|
runRule += " --check-build-system ";
|
2005-05-13 17:54:30 +04:00
|
|
|
runRule += this->Convert(cmakefileName.c_str(),NONE,SHELL);
|
2005-10-21 19:10:30 +04:00
|
|
|
runRule += " 0";
|
2005-06-10 18:45:08 +04:00
|
|
|
|
2005-05-05 20:45:53 +04:00
|
|
|
std::vector<std::string> no_depends;
|
|
|
|
std::vector<std::string> commands;
|
|
|
|
commands.push_back(runRule);
|
2006-01-17 18:21:45 +03:00
|
|
|
const char* sym = m_Makefile->GetDefinition("CMAKE_MAKE_SYMBOLIC_RULE");
|
|
|
|
if(sym)
|
|
|
|
{
|
|
|
|
no_depends.push_back(sym);
|
|
|
|
}
|
|
|
|
|
2005-05-05 20:45:53 +04:00
|
|
|
this->WriteMakeRule(makefileStream,
|
|
|
|
"Special rule to run CMake to check the build system "
|
|
|
|
"integrity.\n"
|
|
|
|
"No rule that depends on this can have "
|
|
|
|
"commands that come from listfiles\n"
|
|
|
|
"because they might be regenerated.",
|
|
|
|
"cmake_check_build_system",
|
|
|
|
no_depends,
|
|
|
|
commands);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<std::string> no_commands;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
cmLocalUnixMakefileGenerator3
|
|
|
|
::WriteConvenienceRule(std::ostream& ruleFileStream,
|
|
|
|
const char* realTarget,
|
|
|
|
const char* helpTarget)
|
|
|
|
{
|
|
|
|
// A rule is only needed if the names are different.
|
|
|
|
if(strcmp(realTarget, helpTarget) != 0)
|
|
|
|
{
|
|
|
|
// The helper target depends on the real target.
|
|
|
|
std::vector<std::string> depends;
|
2006-01-17 18:21:45 +03:00
|
|
|
const char* sym = m_Makefile->GetDefinition("CMAKE_MAKE_SYMBOLIC_RULE");
|
|
|
|
if(sym)
|
|
|
|
{
|
|
|
|
depends.push_back(sym);
|
|
|
|
}
|
2005-05-05 20:45:53 +04:00
|
|
|
depends.push_back(realTarget);
|
|
|
|
|
|
|
|
// There are no commands.
|
|
|
|
std::vector<std::string> no_commands;
|
|
|
|
|
|
|
|
// Write the rule.
|
|
|
|
this->WriteMakeRule(ruleFileStream, "Convenience name for target.",
|
|
|
|
helpTarget, depends, no_commands);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-05-11 16:45:16 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
cmLocalUnixMakefileGenerator3
|
2005-06-22 17:06:46 +04:00
|
|
|
::WriteTargetRequiresRule(std::ostream& ruleFileStream, cmTarget& target,
|
2005-05-17 19:15:09 +04:00
|
|
|
const std::vector<std::string>& objects)
|
2005-05-11 16:45:16 +04:00
|
|
|
{
|
2005-05-17 19:15:09 +04:00
|
|
|
std::vector<std::string> depends;
|
|
|
|
std::vector<std::string> no_commands;
|
2005-05-11 16:45:16 +04:00
|
|
|
|
2005-05-17 19:15:09 +04:00
|
|
|
// Construct the name of the dependency generation target.
|
|
|
|
std::string depTarget = this->GetRelativeTargetDirectory(target);
|
|
|
|
depTarget += "/requires";
|
|
|
|
|
|
|
|
// This target drives dependency generation for all object files.
|
|
|
|
std::string relPath = this->GetHomeRelativeOutputPath();
|
|
|
|
std::string objTarget;
|
|
|
|
for(std::vector<std::string>::const_iterator obj = objects.begin();
|
|
|
|
obj != objects.end(); ++obj)
|
2005-05-11 16:45:16 +04:00
|
|
|
{
|
2005-05-17 19:15:09 +04:00
|
|
|
objTarget = relPath;
|
|
|
|
objTarget += *obj;
|
|
|
|
objTarget += ".requires";
|
|
|
|
depends.push_back(objTarget);
|
2005-05-11 16:45:16 +04:00
|
|
|
}
|
|
|
|
|
2005-05-17 19:15:09 +04:00
|
|
|
// Write the rule.
|
|
|
|
this->WriteMakeRule(ruleFileStream, 0,
|
|
|
|
depTarget.c_str(), depends, no_commands);
|
2005-05-11 16:45:16 +04:00
|
|
|
}
|
|
|
|
|
2005-05-05 20:45:53 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
cmLocalUnixMakefileGenerator3
|
|
|
|
::WriteExecutableRule(std::ostream& ruleFileStream,
|
|
|
|
const char* ruleFileName,
|
2005-06-22 17:06:46 +04:00
|
|
|
cmTarget& target,
|
2005-05-05 20:45:53 +04:00
|
|
|
const std::vector<std::string>& objects,
|
2005-05-24 22:42:23 +04:00
|
|
|
const std::vector<std::string>& external_objects,
|
|
|
|
std::vector<std::string>& cleanFiles)
|
2005-05-05 20:45:53 +04:00
|
|
|
{
|
|
|
|
// Write the dependency generation rule.
|
2005-07-27 19:36:43 +04:00
|
|
|
this->WriteTargetDependRule(ruleFileStream, target);
|
2005-05-05 20:45:53 +04:00
|
|
|
|
|
|
|
std::vector<std::string> commands;
|
|
|
|
|
|
|
|
std::string relPath = this->GetHomeRelativeOutputPath();
|
|
|
|
std::string objTarget;
|
|
|
|
|
|
|
|
// Build list of dependencies.
|
|
|
|
std::vector<std::string> depends;
|
|
|
|
for(std::vector<std::string>::const_iterator obj = objects.begin();
|
|
|
|
obj != objects.end(); ++obj)
|
|
|
|
{
|
|
|
|
objTarget = relPath;
|
|
|
|
objTarget += *obj;
|
|
|
|
depends.push_back(objTarget);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add dependencies on targets that must be built first.
|
|
|
|
this->AppendTargetDepends(depends, target);
|
|
|
|
|
|
|
|
// Add a dependency on the rule file itself.
|
2005-08-05 22:19:18 +04:00
|
|
|
this->AppendRuleDepend(depends, ruleFileName);
|
2005-05-05 20:45:53 +04:00
|
|
|
|
2005-11-17 21:49:10 +03:00
|
|
|
for(std::vector<std::string>::const_iterator obj = external_objects.begin();
|
|
|
|
obj != external_objects.end(); ++obj)
|
|
|
|
{
|
|
|
|
depends.push_back(*obj);
|
|
|
|
}
|
|
|
|
|
|
|
|
// from here up is the same for exe or lib
|
|
|
|
|
2005-08-18 00:11:18 +04:00
|
|
|
// Get the name of the executable to generate.
|
|
|
|
std::string targetName;
|
|
|
|
std::string targetNameReal;
|
2006-01-14 02:18:32 +03:00
|
|
|
target.GetExecutableNames(targetName, targetNameReal,
|
|
|
|
m_ConfigurationName.c_str());
|
2005-08-18 00:11:18 +04:00
|
|
|
|
|
|
|
// Construct the full path version of the names.
|
|
|
|
std::string outpath = m_ExecutableOutputPath;
|
|
|
|
if(outpath.length() == 0)
|
2005-05-05 20:45:53 +04:00
|
|
|
{
|
2005-08-18 00:11:18 +04:00
|
|
|
outpath = m_Makefile->GetStartOutputDirectory();
|
|
|
|
outpath += "/";
|
2005-05-05 20:45:53 +04:00
|
|
|
}
|
|
|
|
#ifdef __APPLE__
|
|
|
|
if(target.GetPropertyAsBool("MACOSX_BUNDLE"))
|
|
|
|
{
|
|
|
|
// Make bundle directories
|
2005-08-18 00:11:18 +04:00
|
|
|
outpath += target.GetName();
|
|
|
|
outpath += ".app/Contents/MacOS/";
|
2006-01-05 17:13:06 +03:00
|
|
|
std::string f1 = m_Makefile->GetModulesFile("MacOSXBundleInfo.plist.in");
|
|
|
|
if ( f1.size() == 0 )
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("could not find Mac OSX bundle template file.");
|
|
|
|
}
|
|
|
|
std::string macdir = m_Makefile->GetSafeDefinition("EXECUTABLE_OUTPUT_PATH");
|
|
|
|
if ( macdir.size() == 0 )
|
|
|
|
{
|
|
|
|
macdir = m_Makefile->GetCurrentOutputDirectory();
|
|
|
|
}
|
|
|
|
if(macdir.size() && macdir[macdir.size()-1] != '/')
|
|
|
|
{
|
|
|
|
macdir += "/";
|
|
|
|
}
|
|
|
|
macdir += target.GetName();
|
|
|
|
macdir += ".app/Contents/";
|
|
|
|
std::string f2 = macdir + "Info.plist";
|
|
|
|
macdir += "MacOS";
|
|
|
|
cmSystemTools::MakeDirectory(macdir.c_str());
|
|
|
|
m_Makefile->AddDefinition("MACOSX_BUNDLE_EXECUTABLE_NAME", target.GetName());
|
|
|
|
m_Makefile->ConfigureFile(f1.c_str(), f2.c_str(), false, false, false);
|
2005-05-05 20:45:53 +04:00
|
|
|
}
|
|
|
|
#endif
|
2005-08-18 00:11:18 +04:00
|
|
|
std::string targetFullPath = outpath + targetName;
|
|
|
|
std::string targetFullPathReal = outpath + targetNameReal;
|
2005-05-05 20:45:53 +04:00
|
|
|
|
|
|
|
// Convert to the output path to use in constructing commands.
|
2005-08-18 00:11:18 +04:00
|
|
|
std::string targetOutPath =
|
2005-10-19 18:03:20 +04:00
|
|
|
this->Convert(targetFullPath.c_str(),START_OUTPUT,MAKEFILE);
|
2005-08-18 00:11:18 +04:00
|
|
|
std::string targetOutPathReal =
|
2005-10-19 18:03:20 +04:00
|
|
|
this->Convert(targetFullPathReal.c_str(),START_OUTPUT,MAKEFILE);
|
2005-05-05 20:45:53 +04:00
|
|
|
|
|
|
|
// Get the language to use for linking this executable.
|
|
|
|
const char* linkLanguage =
|
|
|
|
target.GetLinkerLanguage(this->GetGlobalGenerator());
|
|
|
|
|
|
|
|
// Make sure we have a link language.
|
|
|
|
if(!linkLanguage)
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("Cannot determine link language for target \"",
|
|
|
|
target.GetName(), "\".");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add the link message.
|
|
|
|
std::string buildEcho = "Linking ";
|
|
|
|
buildEcho += linkLanguage;
|
|
|
|
buildEcho += " executable ";
|
|
|
|
buildEcho += targetOutPath;
|
|
|
|
this->AppendEcho(commands, buildEcho.c_str());
|
|
|
|
|
|
|
|
// Build a list of compiler flags and linker flags.
|
|
|
|
std::string flags;
|
|
|
|
std::string linkFlags;
|
2005-10-19 18:03:20 +04:00
|
|
|
|
2005-07-14 20:21:49 +04:00
|
|
|
// Add flags to deal with shared libraries. Any library being
|
|
|
|
// linked in might be shared, so always use shared flags for an
|
|
|
|
// executable.
|
|
|
|
this->AddSharedFlags(linkFlags, linkLanguage, true);
|
|
|
|
|
|
|
|
// Add flags to create an executable.
|
|
|
|
this->AddConfigVariableFlags(linkFlags, "CMAKE_EXE_LINKER_FLAGS");
|
|
|
|
|
|
|
|
|
2005-05-05 20:45:53 +04:00
|
|
|
if(target.GetPropertyAsBool("WIN32_EXECUTABLE"))
|
|
|
|
{
|
|
|
|
this->AppendFlags(linkFlags,
|
|
|
|
m_Makefile->GetDefinition("CMAKE_CREATE_WIN32_EXE"));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this->AppendFlags(linkFlags,
|
|
|
|
m_Makefile->GetDefinition("CMAKE_CREATE_CONSOLE_EXE"));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add language-specific flags.
|
|
|
|
this->AddLanguageFlags(flags, linkLanguage);
|
|
|
|
|
|
|
|
// Add target-specific linker flags.
|
|
|
|
this->AppendFlags(linkFlags, target.GetProperty("LINK_FLAGS"));
|
|
|
|
|
2005-08-18 00:11:18 +04:00
|
|
|
// Construct a list of files associated with this executable that
|
|
|
|
// may need to be cleaned.
|
|
|
|
std::vector<std::string> exeCleanFiles;
|
|
|
|
{
|
|
|
|
std::string cleanName;
|
|
|
|
std::string cleanRealName;
|
2006-01-14 02:18:32 +03:00
|
|
|
target.GetExecutableCleanNames(cleanName, cleanRealName,
|
|
|
|
m_ConfigurationName.c_str());
|
2005-08-18 00:11:18 +04:00
|
|
|
std::string cleanFullName = outpath + cleanName;
|
|
|
|
std::string cleanFullRealName = outpath + cleanRealName;
|
|
|
|
exeCleanFiles.push_back
|
2005-10-28 19:02:29 +04:00
|
|
|
(this->Convert(cleanFullName.c_str(),START_OUTPUT,MAKEFILE));
|
2005-08-18 00:11:18 +04:00
|
|
|
if(cleanRealName != cleanName)
|
|
|
|
{
|
|
|
|
exeCleanFiles.push_back
|
2005-10-28 19:02:29 +04:00
|
|
|
(this->Convert(cleanFullRealName.c_str(),START_OUTPUT,MAKEFILE));
|
2005-08-18 00:11:18 +04:00
|
|
|
}
|
2005-12-23 00:42:36 +03:00
|
|
|
}
|
2005-08-18 00:11:18 +04:00
|
|
|
|
2005-12-23 00:42:36 +03:00
|
|
|
// Add a command to remove any existing files for this executable.
|
|
|
|
std::vector<std::string> commands1;
|
|
|
|
this->AppendCleanCommand(commands1, exeCleanFiles);
|
|
|
|
this->CreateCDCommand(commands1,m_Makefile->GetStartOutputDirectory(),
|
|
|
|
m_Makefile->GetHomeOutputDirectory());
|
|
|
|
commands.insert(commands.end(), commands1.begin(), commands1.end());
|
|
|
|
commands1.clear();
|
2005-05-05 20:45:53 +04:00
|
|
|
// Add the pre-build and pre-link rules.
|
|
|
|
this->AppendCustomCommands(commands, target.GetPreBuildCommands());
|
|
|
|
this->AppendCustomCommands(commands, target.GetPreLinkCommands());
|
|
|
|
|
|
|
|
// Construct the main link rule.
|
|
|
|
std::string linkRuleVar = "CMAKE_";
|
|
|
|
linkRuleVar += linkLanguage;
|
|
|
|
linkRuleVar += "_LINK_EXECUTABLE";
|
2005-10-19 18:03:20 +04:00
|
|
|
std::string linkRule =
|
|
|
|
m_Makefile->GetRequiredDefinition(linkRuleVar.c_str());
|
|
|
|
cmSystemTools::ExpandListArgument(linkRule, commands1);
|
2005-10-20 21:40:28 +04:00
|
|
|
this->CreateCDCommand(commands1,m_Makefile->GetStartOutputDirectory(),
|
|
|
|
m_Makefile->GetHomeOutputDirectory());
|
2005-10-19 18:03:20 +04:00
|
|
|
commands.insert(commands.end(), commands1.begin(), commands1.end());
|
2005-05-05 20:45:53 +04:00
|
|
|
|
2005-08-18 00:11:18 +04:00
|
|
|
// Add a rule to create necessary symlinks for the library.
|
|
|
|
if(targetOutPath != targetOutPathReal)
|
|
|
|
{
|
|
|
|
std::string symlink = "$(CMAKE_COMMAND) -E cmake_symlink_executable ";
|
|
|
|
symlink += targetOutPathReal;
|
|
|
|
symlink += " ";
|
|
|
|
symlink += targetOutPath;
|
|
|
|
commands.push_back(symlink);
|
|
|
|
}
|
|
|
|
|
2005-05-05 20:45:53 +04:00
|
|
|
// Add the post-build rules.
|
|
|
|
this->AppendCustomCommands(commands, target.GetPostBuildCommands());
|
|
|
|
|
|
|
|
// Collect up flags to link in needed libraries.
|
|
|
|
cmOStringStream linklibs;
|
2006-01-14 02:33:51 +03:00
|
|
|
this->OutputLinkLibraries(linklibs, target);
|
2005-05-05 20:45:53 +04:00
|
|
|
|
|
|
|
// Construct object file lists that may be needed to expand the
|
|
|
|
// rule.
|
|
|
|
std::string variableName;
|
|
|
|
std::string variableNameExternal;
|
|
|
|
this->WriteObjectsVariable(ruleFileStream, target, objects, external_objects,
|
|
|
|
variableName, variableNameExternal);
|
|
|
|
std::string buildObjs = "$(";
|
|
|
|
buildObjs += variableName;
|
|
|
|
buildObjs += ") $(";
|
|
|
|
buildObjs += variableNameExternal;
|
|
|
|
buildObjs += ")";
|
|
|
|
std::string cleanObjs = "$(";
|
|
|
|
cleanObjs += variableName;
|
|
|
|
cleanObjs += ")";
|
|
|
|
|
|
|
|
// Expand placeholders in the commands.
|
|
|
|
for(std::vector<std::string>::iterator i = commands.begin();
|
|
|
|
i != commands.end(); ++i)
|
|
|
|
{
|
|
|
|
this->ExpandRuleVariables(*i,
|
|
|
|
linkLanguage,
|
|
|
|
buildObjs.c_str(),
|
2005-08-18 00:11:18 +04:00
|
|
|
targetOutPathReal.c_str(),
|
2005-05-05 20:45:53 +04:00
|
|
|
linklibs.str().c_str(),
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
flags.c_str(),
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
linkFlags.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
// Write the build rule.
|
|
|
|
this->WriteMakeRule(ruleFileStream, 0,
|
2005-12-21 16:46:41 +03:00
|
|
|
targetFullPathReal.c_str(), depends, commands);
|
|
|
|
|
|
|
|
// The symlink name for the target should depend on the real target
|
|
|
|
// so if the target version changes it rebuilds and recreates the
|
|
|
|
// symlink.
|
|
|
|
if(targetFullPath != targetFullPathReal)
|
|
|
|
{
|
|
|
|
depends.clear();
|
|
|
|
commands.clear();
|
|
|
|
depends.push_back(targetFullPathReal.c_str());
|
|
|
|
this->WriteMakeRule(ruleFileStream, 0,
|
|
|
|
targetFullPath.c_str(), depends, commands);
|
|
|
|
}
|
2005-05-05 20:45:53 +04:00
|
|
|
|
|
|
|
// Write convenience targets.
|
|
|
|
std::string dir = m_Makefile->GetStartOutputDirectory();
|
|
|
|
dir += "/";
|
|
|
|
dir += this->GetTargetDirectory(target);
|
|
|
|
std::string buildTargetRuleName = dir;
|
|
|
|
buildTargetRuleName += "/build";
|
|
|
|
buildTargetRuleName =
|
2005-05-13 17:54:30 +04:00
|
|
|
this->Convert(buildTargetRuleName.c_str(),HOME_OUTPUT,MAKEFILE);
|
2005-05-05 20:45:53 +04:00
|
|
|
this->WriteConvenienceRule(ruleFileStream, targetFullPath.c_str(),
|
|
|
|
buildTargetRuleName.c_str());
|
|
|
|
|
2005-08-18 00:11:18 +04:00
|
|
|
// Clean all the possible executable names and symlinks and object files.
|
|
|
|
cleanFiles.insert(cleanFiles.end(),exeCleanFiles.begin(),exeCleanFiles.end());
|
2005-05-05 20:45:53 +04:00
|
|
|
cleanFiles.push_back(cleanObjs);
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
cmLocalUnixMakefileGenerator3
|
|
|
|
::WriteStaticLibraryRule(std::ostream& ruleFileStream,
|
|
|
|
const char* ruleFileName,
|
2005-06-22 17:06:46 +04:00
|
|
|
cmTarget& target,
|
2005-05-05 20:45:53 +04:00
|
|
|
const std::vector<std::string>& objects,
|
2005-05-24 22:42:23 +04:00
|
|
|
const std::vector<std::string>& external_objects,
|
|
|
|
std::vector<std::string>& cleanFiles)
|
2005-05-05 20:45:53 +04:00
|
|
|
{
|
|
|
|
const char* linkLanguage =
|
|
|
|
target.GetLinkerLanguage(this->GetGlobalGenerator());
|
|
|
|
std::string linkRuleVar = "CMAKE_";
|
2005-06-09 00:31:34 +04:00
|
|
|
if (linkLanguage)
|
|
|
|
{
|
|
|
|
linkRuleVar += linkLanguage;
|
|
|
|
}
|
2005-05-05 20:45:53 +04:00
|
|
|
linkRuleVar += "_CREATE_STATIC_LIBRARY";
|
|
|
|
|
|
|
|
std::string extraFlags;
|
|
|
|
this->AppendFlags(extraFlags, target.GetProperty("STATIC_LIBRARY_FLAGS"));
|
|
|
|
this->WriteLibraryRule(ruleFileStream, ruleFileName, target,
|
|
|
|
objects, external_objects,
|
2005-05-24 22:42:23 +04:00
|
|
|
linkRuleVar.c_str(), extraFlags.c_str(),cleanFiles);
|
2005-05-05 20:45:53 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
cmLocalUnixMakefileGenerator3
|
|
|
|
::WriteSharedLibraryRule(std::ostream& ruleFileStream,
|
|
|
|
const char* ruleFileName,
|
2005-06-22 17:06:46 +04:00
|
|
|
cmTarget& target,
|
2005-05-05 20:45:53 +04:00
|
|
|
const std::vector<std::string>& objects,
|
2005-05-24 22:42:23 +04:00
|
|
|
const std::vector<std::string>& external_objects,
|
|
|
|
std::vector<std::string>& cleanFiles)
|
2005-05-05 20:45:53 +04:00
|
|
|
{
|
|
|
|
const char* linkLanguage =
|
|
|
|
target.GetLinkerLanguage(this->GetGlobalGenerator());
|
|
|
|
std::string linkRuleVar = "CMAKE_";
|
2005-06-09 00:31:34 +04:00
|
|
|
if (linkLanguage)
|
|
|
|
{
|
|
|
|
linkRuleVar += linkLanguage;
|
|
|
|
}
|
2005-05-05 20:45:53 +04:00
|
|
|
linkRuleVar += "_CREATE_SHARED_LIBRARY";
|
|
|
|
|
|
|
|
std::string extraFlags;
|
|
|
|
this->AppendFlags(extraFlags, target.GetProperty("LINK_FLAGS"));
|
|
|
|
this->AddConfigVariableFlags(extraFlags, "CMAKE_SHARED_LINKER_FLAGS");
|
|
|
|
if(m_Makefile->IsOn("WIN32") && !(m_Makefile->IsOn("CYGWIN") || m_Makefile->IsOn("MINGW")))
|
|
|
|
{
|
|
|
|
const std::vector<cmSourceFile*>& sources = target.GetSourceFiles();
|
|
|
|
for(std::vector<cmSourceFile*>::const_iterator i = sources.begin();
|
|
|
|
i != sources.end(); ++i)
|
|
|
|
{
|
|
|
|
if((*i)->GetSourceExtension() == "def")
|
|
|
|
{
|
|
|
|
extraFlags += " ";
|
|
|
|
extraFlags += m_Makefile->GetSafeDefinition("CMAKE_LINK_DEF_FILE_FLAG");
|
|
|
|
extraFlags +=
|
2005-10-20 23:03:17 +04:00
|
|
|
this->Convert((*i)->GetFullPath().c_str(),START_OUTPUT,MAKEFILE);
|
2005-05-05 20:45:53 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
this->WriteLibraryRule(ruleFileStream, ruleFileName, target,
|
|
|
|
objects, external_objects,
|
2005-05-24 22:42:23 +04:00
|
|
|
linkRuleVar.c_str(), extraFlags.c_str(), cleanFiles);
|
2005-05-05 20:45:53 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
cmLocalUnixMakefileGenerator3
|
|
|
|
::WriteModuleLibraryRule(std::ostream& ruleFileStream,
|
|
|
|
const char* ruleFileName,
|
2005-06-22 17:06:46 +04:00
|
|
|
cmTarget& target,
|
2005-05-05 20:45:53 +04:00
|
|
|
const std::vector<std::string>& objects,
|
2005-05-24 22:42:23 +04:00
|
|
|
const std::vector<std::string>& external_objects,
|
|
|
|
std::vector<std::string>& cleanFiles)
|
2005-05-05 20:45:53 +04:00
|
|
|
{
|
|
|
|
const char* linkLanguage =
|
|
|
|
target.GetLinkerLanguage(this->GetGlobalGenerator());
|
|
|
|
std::string linkRuleVar = "CMAKE_";
|
2005-06-09 00:31:34 +04:00
|
|
|
if (linkLanguage)
|
|
|
|
{
|
|
|
|
linkRuleVar += linkLanguage;
|
|
|
|
}
|
2005-05-05 20:45:53 +04:00
|
|
|
linkRuleVar += "_CREATE_SHARED_MODULE";
|
|
|
|
|
|
|
|
std::string extraFlags;
|
|
|
|
this->AppendFlags(extraFlags, target.GetProperty("LINK_FLAGS"));
|
|
|
|
this->AddConfigVariableFlags(extraFlags, "CMAKE_MODULE_LINKER_FLAGS");
|
|
|
|
// TODO: .def files should be supported here also.
|
|
|
|
this->WriteLibraryRule(ruleFileStream, ruleFileName, target,
|
|
|
|
objects, external_objects,
|
2005-05-24 22:42:23 +04:00
|
|
|
linkRuleVar.c_str(), extraFlags.c_str(), cleanFiles);
|
2005-05-05 20:45:53 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
cmLocalUnixMakefileGenerator3
|
|
|
|
::WriteLibraryRule(std::ostream& ruleFileStream,
|
|
|
|
const char* ruleFileName,
|
2005-06-22 17:06:46 +04:00
|
|
|
cmTarget& target,
|
2005-05-05 20:45:53 +04:00
|
|
|
const std::vector<std::string>& objects,
|
|
|
|
const std::vector<std::string>& external_objects,
|
|
|
|
const char* linkRuleVar,
|
2005-05-24 22:42:23 +04:00
|
|
|
const char* extraFlags,
|
|
|
|
std::vector<std::string>& cleanFiles)
|
2005-05-05 20:45:53 +04:00
|
|
|
{
|
|
|
|
// Write the dependency generation rule.
|
2005-07-27 19:36:43 +04:00
|
|
|
this->WriteTargetDependRule(ruleFileStream, target);
|
2005-05-05 20:45:53 +04:00
|
|
|
|
|
|
|
// TODO: Merge the methods that call this method to avoid
|
|
|
|
// code duplication.
|
|
|
|
std::vector<std::string> commands;
|
|
|
|
|
|
|
|
std::string relPath = this->GetHomeRelativeOutputPath();
|
|
|
|
std::string objTarget;
|
|
|
|
|
|
|
|
// Build list of dependencies.
|
|
|
|
std::vector<std::string> depends;
|
|
|
|
for(std::vector<std::string>::const_iterator obj = objects.begin();
|
|
|
|
obj != objects.end(); ++obj)
|
|
|
|
{
|
|
|
|
objTarget = relPath;
|
|
|
|
objTarget += *obj;
|
|
|
|
depends.push_back(objTarget);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add dependencies on targets that must be built first.
|
|
|
|
this->AppendTargetDepends(depends, target);
|
|
|
|
|
|
|
|
// Add a dependency on the rule file itself.
|
2005-08-05 22:19:18 +04:00
|
|
|
this->AppendRuleDepend(depends, ruleFileName);
|
2005-05-05 20:45:53 +04:00
|
|
|
|
|
|
|
for(std::vector<std::string>::const_iterator obj = external_objects.begin();
|
|
|
|
obj != external_objects.end(); ++obj)
|
|
|
|
{
|
|
|
|
depends.push_back(*obj);
|
|
|
|
}
|
|
|
|
|
2005-11-17 21:49:10 +03:00
|
|
|
// from here up is the same for exe or lib
|
|
|
|
|
2005-05-05 20:45:53 +04:00
|
|
|
// Get the language to use for linking this library.
|
|
|
|
const char* linkLanguage =
|
|
|
|
target.GetLinkerLanguage(this->GetGlobalGenerator());
|
|
|
|
|
|
|
|
// Make sure we have a link language.
|
|
|
|
if(!linkLanguage)
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("Cannot determine link language for target \"",
|
|
|
|
target.GetName(), "\".");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create set of linking flags.
|
|
|
|
std::string linkFlags;
|
|
|
|
this->AppendFlags(linkFlags, extraFlags);
|
|
|
|
|
|
|
|
// Construct the name of the library.
|
|
|
|
std::string targetName;
|
|
|
|
std::string targetNameSO;
|
|
|
|
std::string targetNameReal;
|
2006-01-14 02:18:32 +03:00
|
|
|
target.GetLibraryNames(targetName, targetNameSO, targetNameReal,
|
|
|
|
m_ConfigurationName.c_str());
|
2005-05-05 20:45:53 +04:00
|
|
|
|
|
|
|
// Construct the full path version of the names.
|
|
|
|
std::string outpath = m_LibraryOutputPath;
|
|
|
|
if(outpath.length() == 0)
|
|
|
|
{
|
|
|
|
outpath = m_Makefile->GetStartOutputDirectory();
|
|
|
|
outpath += "/";
|
|
|
|
}
|
|
|
|
std::string targetFullPath = outpath + targetName;
|
|
|
|
std::string targetFullPathSO = outpath + targetNameSO;
|
|
|
|
std::string targetFullPathReal = outpath + targetNameReal;
|
|
|
|
|
|
|
|
// Construct the output path version of the names for use in command
|
|
|
|
// arguments.
|
|
|
|
std::string targetOutPath =
|
2005-10-19 18:03:20 +04:00
|
|
|
this->Convert(targetFullPath.c_str(),START_OUTPUT,MAKEFILE);
|
2005-05-05 20:45:53 +04:00
|
|
|
std::string targetOutPathSO =
|
2005-10-19 18:03:20 +04:00
|
|
|
this->Convert(targetFullPathSO.c_str(),START_OUTPUT,MAKEFILE);
|
2005-05-05 20:45:53 +04:00
|
|
|
std::string targetOutPathReal =
|
2005-10-19 18:03:20 +04:00
|
|
|
this->Convert(targetFullPathReal.c_str(),START_OUTPUT,MAKEFILE);
|
2005-05-05 20:45:53 +04:00
|
|
|
|
|
|
|
// Add the link message.
|
|
|
|
std::string buildEcho = "Linking ";
|
|
|
|
buildEcho += linkLanguage;
|
|
|
|
switch(target.GetType())
|
|
|
|
{
|
|
|
|
case cmTarget::STATIC_LIBRARY:
|
|
|
|
buildEcho += " static library "; break;
|
|
|
|
case cmTarget::SHARED_LIBRARY:
|
|
|
|
buildEcho += " shared library "; break;
|
|
|
|
case cmTarget::MODULE_LIBRARY:
|
|
|
|
buildEcho += " shared module "; break;
|
|
|
|
default:
|
|
|
|
buildEcho += " library "; break;
|
|
|
|
}
|
|
|
|
buildEcho += targetOutPath.c_str();
|
|
|
|
this->AppendEcho(commands, buildEcho.c_str());
|
|
|
|
|
|
|
|
// Construct a list of files associated with this library that may
|
|
|
|
// need to be cleaned.
|
2005-05-25 00:11:59 +04:00
|
|
|
std::vector<std::string> libCleanFiles;
|
2005-05-05 20:45:53 +04:00
|
|
|
{
|
|
|
|
std::string cleanStaticName;
|
|
|
|
std::string cleanSharedName;
|
|
|
|
std::string cleanSharedSOName;
|
|
|
|
std::string cleanSharedRealName;
|
2005-12-14 18:47:33 +03:00
|
|
|
target.GetLibraryCleanNames(cleanStaticName,
|
2005-05-05 20:45:53 +04:00
|
|
|
cleanSharedName,
|
|
|
|
cleanSharedSOName,
|
2006-01-14 02:18:32 +03:00
|
|
|
cleanSharedRealName,
|
|
|
|
m_ConfigurationName.c_str());
|
2005-05-05 20:45:53 +04:00
|
|
|
std::string cleanFullStaticName = outpath + cleanStaticName;
|
|
|
|
std::string cleanFullSharedName = outpath + cleanSharedName;
|
|
|
|
std::string cleanFullSharedSOName = outpath + cleanSharedSOName;
|
|
|
|
std::string cleanFullSharedRealName = outpath + cleanSharedRealName;
|
2005-06-22 18:09:17 +04:00
|
|
|
libCleanFiles.push_back
|
2005-10-28 19:02:29 +04:00
|
|
|
(this->Convert(cleanFullStaticName.c_str(),START_OUTPUT,MAKEFILE));
|
2005-05-05 20:45:53 +04:00
|
|
|
if(cleanSharedRealName != cleanStaticName)
|
|
|
|
{
|
2005-06-22 18:09:17 +04:00
|
|
|
libCleanFiles.push_back
|
2005-10-28 19:02:29 +04:00
|
|
|
(this->Convert(cleanFullSharedRealName.c_str(),START_OUTPUT,MAKEFILE));
|
2005-05-05 20:45:53 +04:00
|
|
|
}
|
|
|
|
if(cleanSharedSOName != cleanStaticName &&
|
|
|
|
cleanSharedSOName != cleanSharedRealName)
|
|
|
|
{
|
2005-06-22 18:09:17 +04:00
|
|
|
libCleanFiles.push_back
|
2005-10-28 19:02:29 +04:00
|
|
|
(this->Convert(cleanFullSharedSOName.c_str(),START_OUTPUT,MAKEFILE));
|
2005-05-05 20:45:53 +04:00
|
|
|
}
|
|
|
|
if(cleanSharedName != cleanStaticName &&
|
|
|
|
cleanSharedName != cleanSharedSOName &&
|
|
|
|
cleanSharedName != cleanSharedRealName)
|
|
|
|
{
|
2005-06-22 18:09:17 +04:00
|
|
|
libCleanFiles.push_back
|
2005-10-28 19:02:29 +04:00
|
|
|
(this->Convert(cleanFullSharedName.c_str(),START_OUTPUT,MAKEFILE));
|
2005-05-05 20:45:53 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// Add a command to remove any existing files for this library.
|
2005-12-23 00:42:36 +03:00
|
|
|
std::vector<std::string> commands1;
|
|
|
|
this->AppendCleanCommand(commands1, libCleanFiles);
|
|
|
|
this->CreateCDCommand(commands1,m_Makefile->GetStartOutputDirectory(),
|
|
|
|
m_Makefile->GetHomeOutputDirectory());
|
|
|
|
commands.insert(commands.end(), commands1.begin(), commands1.end());
|
|
|
|
commands1.clear();
|
2005-05-05 20:45:53 +04:00
|
|
|
// Add the pre-build and pre-link rules.
|
|
|
|
this->AppendCustomCommands(commands, target.GetPreBuildCommands());
|
|
|
|
this->AppendCustomCommands(commands, target.GetPreLinkCommands());
|
|
|
|
|
|
|
|
// Construct the main link rule.
|
|
|
|
std::string linkRule = m_Makefile->GetRequiredDefinition(linkRuleVar);
|
2005-10-19 18:03:20 +04:00
|
|
|
cmSystemTools::ExpandListArgument(linkRule, commands1);
|
2005-10-20 21:40:28 +04:00
|
|
|
this->CreateCDCommand(commands1,m_Makefile->GetStartOutputDirectory(),
|
|
|
|
m_Makefile->GetHomeOutputDirectory());
|
2005-10-19 18:03:20 +04:00
|
|
|
commands.insert(commands.end(), commands1.begin(), commands1.end());
|
2005-05-05 20:45:53 +04:00
|
|
|
|
|
|
|
// Add a rule to create necessary symlinks for the library.
|
|
|
|
if(targetOutPath != targetOutPathReal)
|
|
|
|
{
|
|
|
|
std::string symlink = "$(CMAKE_COMMAND) -E cmake_symlink_library ";
|
|
|
|
symlink += targetOutPathReal;
|
|
|
|
symlink += " ";
|
|
|
|
symlink += targetOutPathSO;
|
|
|
|
symlink += " ";
|
|
|
|
symlink += targetOutPath;
|
2005-10-21 20:04:26 +04:00
|
|
|
commands1.clear();
|
|
|
|
commands1.push_back(symlink);
|
|
|
|
this->CreateCDCommand(commands1,m_Makefile->GetStartOutputDirectory(),
|
|
|
|
m_Makefile->GetHomeOutputDirectory());
|
|
|
|
commands.insert(commands.end(), commands1.begin(), commands1.end());
|
2005-05-05 20:45:53 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Add the post-build rules.
|
|
|
|
this->AppendCustomCommands(commands, target.GetPostBuildCommands());
|
|
|
|
|
|
|
|
// Collect up flags to link in needed libraries.
|
|
|
|
cmOStringStream linklibs;
|
2006-01-14 02:33:51 +03:00
|
|
|
this->OutputLinkLibraries(linklibs, target);
|
2005-05-05 20:45:53 +04:00
|
|
|
|
|
|
|
// Construct object file lists that may be needed to expand the
|
|
|
|
// rule.
|
|
|
|
std::string variableName;
|
|
|
|
std::string variableNameExternal;
|
|
|
|
this->WriteObjectsVariable(ruleFileStream, target, objects, external_objects,
|
|
|
|
variableName, variableNameExternal);
|
|
|
|
std::string buildObjs = "$(";
|
|
|
|
buildObjs += variableName;
|
|
|
|
buildObjs += ") $(";
|
|
|
|
buildObjs += variableNameExternal;
|
|
|
|
buildObjs += ")";
|
|
|
|
std::string cleanObjs = "$(";
|
|
|
|
cleanObjs += variableName;
|
|
|
|
cleanObjs += ")";
|
|
|
|
|
|
|
|
// Expand placeholders in the commands.
|
|
|
|
for(std::vector<std::string>::iterator i = commands.begin();
|
|
|
|
i != commands.end(); ++i)
|
|
|
|
{
|
|
|
|
this->ExpandRuleVariables(*i,
|
|
|
|
linkLanguage,
|
|
|
|
buildObjs.c_str(),
|
|
|
|
targetOutPathReal.c_str(),
|
|
|
|
linklibs.str().c_str(),
|
|
|
|
0, 0, 0, buildObjs.c_str(),
|
|
|
|
targetNameSO.c_str(),
|
|
|
|
linkFlags.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
// Write the build rule.
|
2005-12-21 16:46:41 +03:00
|
|
|
this->WriteMakeRule(ruleFileStream, 0,
|
|
|
|
targetFullPathReal.c_str(), depends, commands);
|
|
|
|
|
|
|
|
// The symlink names for the target should depend on the real target
|
|
|
|
// so if the target version changes it rebuilds and recreates the
|
|
|
|
// symlinks.
|
|
|
|
if(targetFullPathSO != targetFullPathReal)
|
|
|
|
{
|
|
|
|
depends.clear();
|
|
|
|
commands.clear();
|
|
|
|
depends.push_back(targetFullPathReal.c_str());
|
|
|
|
this->WriteMakeRule(ruleFileStream, 0,
|
|
|
|
targetFullPathSO.c_str(), depends, commands);
|
|
|
|
}
|
|
|
|
if(targetFullPath != targetFullPathSO)
|
|
|
|
{
|
|
|
|
depends.clear();
|
|
|
|
commands.clear();
|
|
|
|
depends.push_back(targetFullPathSO.c_str());
|
|
|
|
this->WriteMakeRule(ruleFileStream, 0,
|
|
|
|
targetFullPath.c_str(), depends, commands);
|
|
|
|
}
|
2005-05-05 20:45:53 +04:00
|
|
|
|
|
|
|
// Write convenience targets.
|
|
|
|
std::string dir = m_Makefile->GetStartOutputDirectory();
|
|
|
|
dir += "/";
|
|
|
|
dir += this->GetTargetDirectory(target);
|
|
|
|
std::string buildTargetRuleName = dir;
|
|
|
|
buildTargetRuleName += "/build";
|
|
|
|
buildTargetRuleName =
|
2005-05-13 17:54:30 +04:00
|
|
|
this->Convert(buildTargetRuleName.c_str(),HOME_OUTPUT,MAKEFILE);
|
2005-05-05 20:45:53 +04:00
|
|
|
this->WriteConvenienceRule(ruleFileStream, targetFullPath.c_str(),
|
|
|
|
buildTargetRuleName.c_str());
|
|
|
|
|
2005-06-01 21:19:53 +04:00
|
|
|
// Clean all the possible library names and symlinks and object files.
|
|
|
|
cleanFiles.insert(cleanFiles.end(),libCleanFiles.begin(),libCleanFiles.end());
|
2005-05-05 20:45:53 +04:00
|
|
|
cleanFiles.push_back(cleanObjs);
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
cmLocalUnixMakefileGenerator3
|
|
|
|
::WriteObjectsVariable(std::ostream& ruleFileStream,
|
2005-06-22 17:06:46 +04:00
|
|
|
cmTarget& target,
|
2005-05-05 20:45:53 +04:00
|
|
|
const std::vector<std::string>& objects,
|
|
|
|
const std::vector<std::string>& external_objects,
|
|
|
|
std::string& variableName,
|
|
|
|
std::string& variableNameExternal)
|
|
|
|
{
|
|
|
|
// Write a make variable assignment that lists all objects for the
|
|
|
|
// target.
|
|
|
|
variableName = this->CreateMakeVariable(target.GetName(), "_OBJECTS");
|
|
|
|
ruleFileStream
|
|
|
|
<< "# Object files for target " << target.GetName() << "\n"
|
|
|
|
<< variableName.c_str() << " =";
|
|
|
|
std::string object;
|
2006-01-17 18:21:45 +03:00
|
|
|
const char* objName = m_Makefile->GetDefinition("CMAKE_NO_QUOTED_OBJECTS");
|
|
|
|
const char* lineContinue = m_Makefile->GetDefinition("CMAKE_MAKE_LINE_CONTINUE");
|
|
|
|
if(!lineContinue)
|
|
|
|
{
|
|
|
|
lineContinue = "\\";
|
|
|
|
}
|
2005-05-05 20:45:53 +04:00
|
|
|
for(std::vector<std::string>::const_iterator i = objects.begin();
|
|
|
|
i != objects.end(); ++i)
|
|
|
|
{
|
|
|
|
ruleFileStream
|
2006-01-17 18:21:45 +03:00
|
|
|
<< " " << lineContinue << "\n";
|
|
|
|
if(objName)
|
|
|
|
{
|
|
|
|
ruleFileStream << this->Convert(i->c_str(), START_OUTPUT, MAKEFILE);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ruleFileStream << this->ConvertToQuotedOutputPath(i->c_str());
|
|
|
|
}
|
2005-05-05 20:45:53 +04:00
|
|
|
}
|
|
|
|
ruleFileStream
|
|
|
|
<< "\n";
|
|
|
|
|
|
|
|
// Write a make variable assignment that lists all external objects
|
|
|
|
// for the target.
|
|
|
|
variableNameExternal = this->CreateMakeVariable(target.GetName(),
|
|
|
|
"_EXTERNAL_OBJECTS");
|
|
|
|
ruleFileStream
|
|
|
|
<< "\n"
|
|
|
|
<< "# External object files for target " << target.GetName() << "\n"
|
|
|
|
<< variableNameExternal.c_str() << " =";
|
|
|
|
for(std::vector<std::string>::const_iterator i = external_objects.begin();
|
|
|
|
i != external_objects.end(); ++i)
|
|
|
|
{
|
2005-10-19 18:03:20 +04:00
|
|
|
object = this->Convert(i->c_str(),START_OUTPUT);
|
2005-05-05 20:45:53 +04:00
|
|
|
ruleFileStream
|
2006-01-17 18:21:45 +03:00
|
|
|
<< " " << lineContinue << "\n"
|
|
|
|
<< m_Makefile->GetSafeDefinition("CMAKE_OBJECT_NAME");
|
|
|
|
if(objName)
|
|
|
|
{
|
|
|
|
ruleFileStream << this->Convert(i->c_str(), START_OUTPUT, MAKEFILE);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ruleFileStream << this->ConvertToQuotedOutputPath(i->c_str());
|
|
|
|
}
|
2005-05-05 20:45:53 +04:00
|
|
|
}
|
|
|
|
ruleFileStream
|
|
|
|
<< "\n"
|
|
|
|
<< "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
cmLocalUnixMakefileGenerator3
|
2005-07-27 19:36:43 +04:00
|
|
|
::WriteTargetDependRule(std::ostream& ruleFileStream, cmTarget& target)
|
2005-05-05 20:45:53 +04:00
|
|
|
{
|
2005-07-27 17:49:37 +04:00
|
|
|
// must write the targets depend info file
|
|
|
|
std::string dir = this->GetTargetDirectory(target);
|
|
|
|
std::string infoFileName = dir;
|
|
|
|
infoFileName += "/DependInfo.cmake";
|
|
|
|
std::string ruleFileNameFull = this->ConvertToFullPath(infoFileName);
|
|
|
|
cmGeneratedFileStream infoFileStream(ruleFileNameFull.c_str());
|
|
|
|
infoFileStream.SetCopyIfDifferent(true);
|
|
|
|
if(!infoFileStream)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this->WriteDependLanguageInfo(infoFileStream,target);
|
|
|
|
|
|
|
|
// and now write the rule to use it
|
2005-05-05 20:45:53 +04:00
|
|
|
std::vector<std::string> depends;
|
2005-07-27 17:49:37 +04:00
|
|
|
std::vector<std::string> commands;
|
2005-05-05 20:45:53 +04:00
|
|
|
|
|
|
|
// Construct the name of the dependency generation target.
|
|
|
|
std::string depTarget = this->GetRelativeTargetDirectory(target);
|
|
|
|
depTarget += "/depend";
|
2005-07-27 17:49:37 +04:00
|
|
|
|
|
|
|
std::string depMark = depTarget;
|
|
|
|
depMark += ".make.mark";
|
|
|
|
depends.push_back(depMark);
|
|
|
|
|
|
|
|
this->WriteMakeRule(ruleFileStream, 0,
|
|
|
|
depTarget.c_str(), depends, commands);
|
|
|
|
depends.clear();
|
|
|
|
|
|
|
|
// Write the dependency generation rule.
|
|
|
|
std::string depEcho = "Scanning dependencies of target ";
|
|
|
|
depEcho += target.GetName();
|
|
|
|
this->AppendEcho(commands, depEcho.c_str());
|
|
|
|
|
|
|
|
// Add a command to call CMake to scan dependencies. CMake will
|
|
|
|
// touch the corresponding depends file after scanning dependencies.
|
|
|
|
cmOStringStream depCmd;
|
|
|
|
// TODO: Account for source file properties and directory-level
|
|
|
|
// definitions when scanning for dependencies.
|
|
|
|
depCmd << "$(CMAKE_COMMAND) -E cmake_depends "
|
|
|
|
<< " \""
|
|
|
|
<< m_GlobalGenerator->GetName() << "\" "
|
|
|
|
<< this->Convert(m_Makefile->GetHomeOutputDirectory(),FULL,SHELL)
|
|
|
|
<< " "
|
|
|
|
<< this->Convert(m_Makefile->GetStartOutputDirectory(),FULL,SHELL)
|
|
|
|
<< " "
|
|
|
|
<< this->Convert(ruleFileNameFull.c_str(),FULL,SHELL);
|
|
|
|
commands.push_back(depCmd.str());
|
|
|
|
|
|
|
|
// Write the rule.
|
|
|
|
this->WriteMakeRule(ruleFileStream, 0,
|
|
|
|
depMark.c_str(), depends, commands);
|
2005-05-05 20:45:53 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
cmLocalUnixMakefileGenerator3
|
2005-05-24 22:42:23 +04:00
|
|
|
::WriteTargetCleanRule(std::ostream& ruleFileStream,
|
2005-06-22 17:06:46 +04:00
|
|
|
cmTarget& target,
|
2005-05-24 22:42:23 +04:00
|
|
|
const std::vector<std::string>& files)
|
2005-05-05 20:45:53 +04:00
|
|
|
{
|
2006-01-17 18:21:45 +03:00
|
|
|
std::vector<std::string> depends;
|
|
|
|
const char* sym = m_Makefile->GetDefinition("CMAKE_MAKE_SYMBOLIC_RULE");
|
|
|
|
if(sym)
|
|
|
|
{
|
|
|
|
depends.push_back(sym);
|
|
|
|
}
|
2005-05-05 20:45:53 +04:00
|
|
|
std::vector<std::string> commands;
|
|
|
|
|
|
|
|
// Construct the clean target name.
|
|
|
|
std::string cleanTarget = this->GetRelativeTargetDirectory(target);
|
|
|
|
cleanTarget += "/clean";
|
|
|
|
|
|
|
|
// Construct the clean command.
|
|
|
|
this->AppendCleanCommand(commands, files);
|
2005-10-28 19:02:29 +04:00
|
|
|
this->CreateCDCommand(commands,m_Makefile->GetStartOutputDirectory(),
|
|
|
|
m_Makefile->GetHomeOutputDirectory());
|
2005-05-05 20:45:53 +04:00
|
|
|
// Write the rule.
|
|
|
|
this->WriteMakeRule(ruleFileStream, 0,
|
2006-01-17 18:21:45 +03:00
|
|
|
cleanTarget.c_str(), depends, commands);
|
2005-05-05 20:45:53 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
cmLocalUnixMakefileGenerator3
|
|
|
|
::WriteCMakeArgument(std::ostream& os, const char* s)
|
|
|
|
{
|
|
|
|
// Write the given string to the stream with escaping to get it back
|
|
|
|
// into CMake through the lexical scanner.
|
|
|
|
os << "\"";
|
|
|
|
for(const char* c = s; *c; ++c)
|
|
|
|
{
|
|
|
|
if(*c == '\\')
|
|
|
|
{
|
|
|
|
os << "\\\\";
|
|
|
|
}
|
|
|
|
else if(*c == '"')
|
|
|
|
{
|
|
|
|
os << "\\\"";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
os << *c;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
os << "\"";
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
std::string
|
2005-06-22 17:06:46 +04:00
|
|
|
cmLocalUnixMakefileGenerator3::GetTargetDirectory(cmTarget& target)
|
2005-05-05 20:45:53 +04:00
|
|
|
{
|
2005-12-13 23:14:08 +03:00
|
|
|
std::string dir = "CMakeFiles/";
|
2005-07-07 18:14:57 +04:00
|
|
|
dir += target.GetName();
|
2005-05-05 20:45:53 +04:00
|
|
|
dir += ".dir";
|
|
|
|
return dir;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
std::string
|
2005-06-22 17:06:46 +04:00
|
|
|
cmLocalUnixMakefileGenerator3::GetRelativeTargetDirectory(cmTarget& target)
|
2005-05-05 20:45:53 +04:00
|
|
|
{
|
|
|
|
std::string dir = m_Makefile->GetStartOutputDirectory();
|
|
|
|
dir += "/";
|
|
|
|
dir += this->GetTargetDirectory(target);
|
|
|
|
dir = cmSystemTools::RelativePath(m_Makefile->GetHomeOutputDirectory(), dir.c_str());
|
2005-05-13 17:54:30 +04:00
|
|
|
return this->Convert(dir.c_str(),NONE,MAKEFILE);
|
2005-05-05 20:45:53 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
std::string
|
|
|
|
cmLocalUnixMakefileGenerator3
|
2005-06-22 17:06:46 +04:00
|
|
|
::GetObjectFileName(cmTarget& target,
|
2006-01-02 20:36:54 +03:00
|
|
|
const cmSourceFile& source,
|
|
|
|
std::string* nameWithoutTargetDir)
|
2005-05-05 20:45:53 +04:00
|
|
|
{
|
|
|
|
// If the full path to the source file includes this directory,
|
|
|
|
// we want to use the relative path for the filename of the
|
|
|
|
// object file. Otherwise, we will use just the filename
|
|
|
|
// portion.
|
|
|
|
std::string objectName;
|
|
|
|
if((cmSystemTools::GetFilenamePath(
|
|
|
|
source.GetFullPath()).find(
|
|
|
|
m_Makefile->GetCurrentDirectory()) == 0)
|
|
|
|
|| (cmSystemTools::GetFilenamePath(
|
|
|
|
source.GetFullPath()).find(
|
|
|
|
m_Makefile->GetStartOutputDirectory()) == 0))
|
|
|
|
{
|
|
|
|
objectName = source.GetSourceName();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
objectName = cmSystemTools::GetFilenameName(source.GetSourceName());
|
|
|
|
}
|
|
|
|
|
|
|
|
// Append the object file extension.
|
|
|
|
objectName +=
|
|
|
|
m_GlobalGenerator->GetLanguageOutputExtensionFromExtension(
|
|
|
|
source.GetSourceExtension().c_str());
|
|
|
|
|
|
|
|
// Convert to a safe name.
|
|
|
|
objectName = this->CreateSafeUniqueObjectFileName(objectName.c_str());
|
|
|
|
// Prepend the target directory.
|
|
|
|
std::string obj = this->GetTargetDirectory(target);
|
|
|
|
obj += "/";
|
|
|
|
obj += objectName;
|
2006-01-02 20:36:54 +03:00
|
|
|
if(nameWithoutTargetDir)
|
|
|
|
{
|
|
|
|
*nameWithoutTargetDir = objectName;
|
|
|
|
}
|
2005-05-05 20:45:53 +04:00
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
const char*
|
|
|
|
cmLocalUnixMakefileGenerator3
|
|
|
|
::GetSourceFileLanguage(const cmSourceFile& source)
|
|
|
|
{
|
|
|
|
// Identify the language of the source file.
|
|
|
|
return (m_GlobalGenerator
|
|
|
|
->GetLanguageFromExtension(source.GetSourceExtension().c_str()));
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
std::string
|
|
|
|
cmLocalUnixMakefileGenerator3::ConvertToQuotedOutputPath(const char* p)
|
|
|
|
{
|
2006-01-17 18:21:45 +03:00
|
|
|
|
2005-05-05 20:45:53 +04:00
|
|
|
// Split the path into its components.
|
|
|
|
std::vector<std::string> components;
|
|
|
|
cmSystemTools::SplitPath(p, components);
|
|
|
|
|
|
|
|
// Return an empty path if there are no components.
|
|
|
|
if(components.empty())
|
|
|
|
{
|
|
|
|
return "\"\"";
|
|
|
|
}
|
|
|
|
|
|
|
|
// Choose a slash direction and fix root component.
|
|
|
|
const char* slash = "/";
|
|
|
|
#if defined(_WIN32) && !defined(__CYGWIN__)
|
|
|
|
if(!cmSystemTools::GetForceUnixPaths())
|
|
|
|
{
|
|
|
|
slash = "\\";
|
|
|
|
for(std::string::iterator i = components[0].begin();
|
|
|
|
i != components[0].end(); ++i)
|
|
|
|
{
|
|
|
|
if(*i == '/')
|
|
|
|
{
|
|
|
|
*i = '\\';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Begin the quoted result with the root component.
|
|
|
|
std::string result = "\"";
|
|
|
|
result += components[0];
|
|
|
|
|
|
|
|
// Now add the rest of the components separated by the proper slash
|
|
|
|
// direction for this platform.
|
|
|
|
bool first = true;
|
|
|
|
for(unsigned int i=1; i < components.size(); ++i)
|
|
|
|
{
|
|
|
|
// Only the last component can be empty to avoid double slashes.
|
|
|
|
if(components[i].length() > 0 || (i == (components.size()-1)))
|
|
|
|
{
|
|
|
|
if(!first)
|
|
|
|
{
|
|
|
|
result += slash;
|
|
|
|
}
|
|
|
|
result += components[i];
|
|
|
|
first = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Close the quoted result.
|
|
|
|
result += "\"";
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
cmLocalUnixMakefileGenerator3
|
|
|
|
::AppendTargetDepends(std::vector<std::string>& depends,
|
2005-06-22 17:06:46 +04:00
|
|
|
cmTarget& target)
|
2005-05-05 20:45:53 +04:00
|
|
|
{
|
2006-01-14 04:51:45 +03:00
|
|
|
// Static libraries never depend on anything for linking.
|
2005-05-05 20:45:53 +04:00
|
|
|
if(target.GetType() == cmTarget::STATIC_LIBRARY)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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.
|
|
|
|
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)
|
|
|
|
{
|
2006-01-14 04:51:45 +03:00
|
|
|
// Depend only on other CMake targets.
|
|
|
|
if(cmTarget* tgt = m_GlobalGenerator->FindTarget(0, lib->first.c_str()))
|
|
|
|
{
|
|
|
|
if(const char* location =
|
|
|
|
tgt->GetLocation(m_ConfigurationName.c_str()))
|
|
|
|
{
|
|
|
|
depends.push_back(location);
|
|
|
|
}
|
|
|
|
}
|
2005-12-14 18:47:33 +03:00
|
|
|
}
|
2005-05-05 20:45:53 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
cmLocalUnixMakefileGenerator3
|
|
|
|
::AppendRuleDepend(std::vector<std::string>& depends,
|
|
|
|
const char* ruleFileName)
|
|
|
|
{
|
|
|
|
// Add a dependency on the rule file itself unless an option to skip
|
|
|
|
// it is specifically enabled by the user or project.
|
|
|
|
const char* nodep = m_Makefile->GetDefinition("CMAKE_SKIP_RULE_DEPENDENCY");
|
|
|
|
if(!nodep || cmSystemTools::IsOff(nodep))
|
|
|
|
{
|
|
|
|
depends.push_back(ruleFileName);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
cmLocalUnixMakefileGenerator3
|
|
|
|
::AppendCustomDepends(std::vector<std::string>& depends,
|
|
|
|
const std::vector<cmCustomCommand>& ccs)
|
|
|
|
{
|
|
|
|
for(std::vector<cmCustomCommand>::const_iterator i = ccs.begin();
|
|
|
|
i != ccs.end(); ++i)
|
|
|
|
{
|
|
|
|
this->AppendCustomDepend(depends, *i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
cmLocalUnixMakefileGenerator3
|
|
|
|
::AppendCustomDepend(std::vector<std::string>& depends,
|
|
|
|
const cmCustomCommand& cc)
|
|
|
|
{
|
|
|
|
for(std::vector<std::string>::const_iterator d = cc.GetDepends().begin();
|
|
|
|
d != cc.GetDepends().end(); ++d)
|
|
|
|
{
|
2006-01-14 04:51:45 +03:00
|
|
|
// Lookup the real name of the dependency in case it is a CMake target.
|
|
|
|
std::string dep = this->GetRealDependency(d->c_str(),
|
|
|
|
m_ConfigurationName.c_str());
|
|
|
|
depends.push_back(dep);
|
2005-05-05 20:45:53 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
cmLocalUnixMakefileGenerator3
|
|
|
|
::AppendCustomCommands(std::vector<std::string>& commands,
|
|
|
|
const std::vector<cmCustomCommand>& ccs)
|
|
|
|
{
|
|
|
|
for(std::vector<cmCustomCommand>::const_iterator i = ccs.begin();
|
|
|
|
i != ccs.end(); ++i)
|
|
|
|
{
|
|
|
|
this->AppendCustomCommand(commands, *i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
cmLocalUnixMakefileGenerator3
|
|
|
|
::AppendCustomCommand(std::vector<std::string>& commands,
|
|
|
|
const cmCustomCommand& cc)
|
|
|
|
{
|
2005-05-20 19:01:21 +04:00
|
|
|
std::vector<std::string> commands1;
|
2005-05-05 20:45:53 +04:00
|
|
|
|
|
|
|
// Add each command line to the set of commands.
|
|
|
|
for(cmCustomCommandLines::const_iterator cl = cc.GetCommandLines().begin();
|
|
|
|
cl != cc.GetCommandLines().end(); ++cl)
|
|
|
|
{
|
|
|
|
// Build the command line in a single string.
|
|
|
|
const cmCustomCommandLine& commandLine = *cl;
|
|
|
|
std::string cmd = commandLine[0];
|
2005-05-20 20:09:33 +04:00
|
|
|
if (cmd.size())
|
2005-05-05 20:45:53 +04:00
|
|
|
{
|
2005-05-20 20:09:33 +04:00
|
|
|
cmSystemTools::ReplaceString(cmd, "/./", "/");
|
|
|
|
cmd = this->Convert(cmd.c_str(),START_OUTPUT);
|
|
|
|
if(cmd.find("/") == cmd.npos &&
|
|
|
|
commandLine[0].find("/") != cmd.npos)
|
|
|
|
{
|
|
|
|
// Add a leading "./" for executables in the current directory.
|
|
|
|
cmd = "./" + cmd;
|
|
|
|
}
|
|
|
|
cmd = this->Convert(cmd.c_str(),NONE,SHELL);
|
|
|
|
for(unsigned int j=1; j < commandLine.size(); ++j)
|
|
|
|
{
|
|
|
|
cmd += " ";
|
2005-12-23 00:42:36 +03:00
|
|
|
bool forceOn = cmSystemTools::GetForceUnixPaths();
|
|
|
|
if(forceOn && m_WindowsShell)
|
|
|
|
{
|
|
|
|
cmSystemTools::SetForceUnixPaths(false);
|
|
|
|
}
|
2005-05-20 20:09:33 +04:00
|
|
|
cmd += cmSystemTools::EscapeSpaces(commandLine[j].c_str());
|
2005-12-23 00:42:36 +03:00
|
|
|
if(forceOn && m_WindowsShell)
|
|
|
|
{
|
|
|
|
cmSystemTools::SetForceUnixPaths(true);
|
|
|
|
}
|
2005-05-20 20:09:33 +04:00
|
|
|
}
|
|
|
|
commands1.push_back(cmd);
|
2005-05-05 20:45:53 +04:00
|
|
|
}
|
2005-05-20 19:01:21 +04:00
|
|
|
}
|
|
|
|
|
2005-10-19 18:03:20 +04:00
|
|
|
// push back the custom commands
|
2006-02-08 18:58:36 +03:00
|
|
|
const char* dir =m_Makefile->GetStartOutputDirectory();
|
|
|
|
// if the command specified a working directory use it.
|
|
|
|
if(cc.GetWorkingDirectory())
|
|
|
|
{
|
|
|
|
dir = cc.GetWorkingDirectory();
|
|
|
|
}
|
|
|
|
|
|
|
|
this->CreateCDCommand(commands1, dir,
|
2005-10-20 21:40:28 +04:00
|
|
|
m_Makefile->GetHomeOutputDirectory());
|
2005-10-19 18:03:20 +04:00
|
|
|
commands.insert(commands.end(), commands1.begin(), commands1.end());
|
2005-05-05 20:45:53 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
cmLocalUnixMakefileGenerator3
|
|
|
|
::AppendCleanCommand(std::vector<std::string>& commands,
|
|
|
|
const std::vector<std::string>& files)
|
|
|
|
{
|
|
|
|
if(!files.empty())
|
|
|
|
{
|
|
|
|
std::string remove = "$(CMAKE_COMMAND) -E remove -f";
|
|
|
|
for(std::vector<std::string>::const_iterator f = files.begin();
|
|
|
|
f != files.end(); ++f)
|
|
|
|
{
|
|
|
|
remove += " ";
|
2005-05-13 17:54:30 +04:00
|
|
|
remove += this->Convert(f->c_str(),START_OUTPUT,SHELL);
|
2005-05-05 20:45:53 +04:00
|
|
|
}
|
|
|
|
commands.push_back(remove);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
cmLocalUnixMakefileGenerator3::AppendEcho(std::vector<std::string>& commands,
|
|
|
|
const char* text)
|
|
|
|
{
|
|
|
|
// Echo one line at a time.
|
|
|
|
std::string line;
|
|
|
|
for(const char* c = text;; ++c)
|
|
|
|
{
|
|
|
|
if(*c == '\n' || *c == '\0')
|
|
|
|
{
|
|
|
|
// Avoid writing a blank last line on end-of-string.
|
|
|
|
if(*c != '\0' || !line.empty())
|
|
|
|
{
|
|
|
|
// Add a command to echo this line.
|
|
|
|
std::string cmd = "@echo ";
|
|
|
|
if(m_EchoNeedsQuote)
|
|
|
|
{
|
|
|
|
cmd += "\"";
|
|
|
|
}
|
|
|
|
cmd += line;
|
|
|
|
if(m_EchoNeedsQuote)
|
|
|
|
{
|
|
|
|
cmd += "\"";
|
|
|
|
}
|
|
|
|
commands.push_back(cmd);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Reset the line to emtpy.
|
|
|
|
line = "";
|
|
|
|
|
|
|
|
// Terminate on end-of-string.
|
|
|
|
if(*c == '\0')
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if(*c != '\r')
|
|
|
|
{
|
|
|
|
// Append this character to the current line.
|
|
|
|
line += *c;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
// take a tgt path and convert it into a make target, it could be full, or relative
|
|
|
|
std::string
|
|
|
|
cmLocalUnixMakefileGenerator3
|
|
|
|
::ConvertToMakeTarget(const char* tgt)
|
|
|
|
{
|
|
|
|
// Make targets should not have a leading './' for a file in the
|
|
|
|
// directory containing the makefile.
|
|
|
|
std::string ret = tgt;
|
|
|
|
if(ret.size() > 2 && (ret[0] == '.') &&
|
|
|
|
( (ret[1] == '/') || ret[1] == '\\'))
|
|
|
|
{
|
|
|
|
std::string upath = ret;
|
|
|
|
cmSystemTools::ConvertToUnixSlashes(upath);
|
|
|
|
if(upath.find(2, '/') == upath.npos)
|
|
|
|
{
|
|
|
|
ret = ret.substr(2, ret.size()-2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
std::string&
|
|
|
|
cmLocalUnixMakefileGenerator3::CreateSafeUniqueObjectFileName(const char* sin)
|
|
|
|
{
|
|
|
|
if ( m_Makefile->IsOn("CMAKE_MANGLE_OBJECT_FILE_NAMES") )
|
|
|
|
{
|
|
|
|
std::map<cmStdString,cmStdString>::iterator it = m_UniqueObjectNamesMap.find(sin);
|
|
|
|
if ( it == m_UniqueObjectNamesMap.end() )
|
|
|
|
{
|
|
|
|
std::string ssin = sin;
|
|
|
|
bool done;
|
|
|
|
int cc = 0;
|
|
|
|
char rpstr[100];
|
|
|
|
sprintf(rpstr, "_p_");
|
|
|
|
cmSystemTools::ReplaceString(ssin, "+", rpstr);
|
|
|
|
std::string sssin = sin;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
done = true;
|
|
|
|
for ( it = m_UniqueObjectNamesMap.begin();
|
|
|
|
it != m_UniqueObjectNamesMap.end();
|
|
|
|
++ it )
|
|
|
|
{
|
|
|
|
if ( it->second == ssin )
|
|
|
|
{
|
|
|
|
done = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( done )
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
sssin = ssin;
|
|
|
|
cmSystemTools::ReplaceString(ssin, "_p_", rpstr);
|
|
|
|
sprintf(rpstr, "_p%d_", cc++);
|
|
|
|
}
|
|
|
|
while ( !done );
|
|
|
|
m_UniqueObjectNamesMap[sin] = ssin;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_UniqueObjectNamesMap[sin] = sin;
|
|
|
|
}
|
|
|
|
return m_UniqueObjectNamesMap[sin];
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
std::string
|
|
|
|
cmLocalUnixMakefileGenerator3
|
|
|
|
::CreateMakeVariable(const char* sin, const char* s2in)
|
|
|
|
{
|
|
|
|
std::string s = sin;
|
|
|
|
std::string s2 = s2in;
|
|
|
|
std::string unmodified = s;
|
|
|
|
unmodified += s2;
|
|
|
|
// if there is no restriction on the length of make variables
|
|
|
|
// and there are no "." charactors in the string, then return the
|
|
|
|
// unmodified combination.
|
2006-02-07 00:32:09 +03:00
|
|
|
if((!m_MakefileVariableSize && unmodified.find('.') == s.npos)
|
|
|
|
&& (!m_MakefileVariableSize && unmodified.find('-') == s.npos))
|
2005-05-05 20:45:53 +04:00
|
|
|
{
|
|
|
|
return unmodified;
|
|
|
|
}
|
|
|
|
|
|
|
|
// see if the variable has been defined before and return
|
|
|
|
// the modified version of the variable
|
|
|
|
std::map<cmStdString, cmStdString>::iterator i = m_MakeVariableMap.find(unmodified);
|
|
|
|
if(i != m_MakeVariableMap.end())
|
|
|
|
{
|
|
|
|
return i->second;
|
|
|
|
}
|
|
|
|
// start with the unmodified variable
|
|
|
|
std::string ret = unmodified;
|
|
|
|
// if this there is no value for m_MakefileVariableSize then
|
|
|
|
// the string must have bad characters in it
|
|
|
|
if(!m_MakefileVariableSize)
|
|
|
|
{
|
|
|
|
cmSystemTools::ReplaceString(ret, ".", "_");
|
2006-02-07 00:32:09 +03:00
|
|
|
cmSystemTools::ReplaceString(ret, "-", "__");
|
2005-05-05 20:45:53 +04:00
|
|
|
int ni = 0;
|
|
|
|
char buffer[5];
|
|
|
|
// make sure the _ version is not already used, if
|
|
|
|
// it is used then add number to the end of the variable
|
|
|
|
while(m_ShortMakeVariableMap.count(ret) && ni < 1000)
|
|
|
|
{
|
|
|
|
++ni;
|
|
|
|
sprintf(buffer, "%04d", ni);
|
|
|
|
ret = unmodified + buffer;
|
|
|
|
}
|
|
|
|
m_ShortMakeVariableMap[ret] = "1";
|
|
|
|
m_MakeVariableMap[unmodified] = ret;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
// if the string is greater the 32 chars it is an invalid vairable name
|
|
|
|
// for borland make
|
|
|
|
if(static_cast<int>(ret.size()) > m_MakefileVariableSize)
|
|
|
|
{
|
|
|
|
int keep = m_MakefileVariableSize - 8;
|
|
|
|
int size = keep + 3;
|
|
|
|
std::string str1 = s;
|
|
|
|
std::string str2 = s2;
|
|
|
|
// we must shorten the combined string by 4 charactors
|
|
|
|
// keep no more than 24 charactors from the second string
|
|
|
|
if(static_cast<int>(str2.size()) > keep)
|
|
|
|
{
|
|
|
|
str2 = str2.substr(0, keep);
|
|
|
|
}
|
|
|
|
if(static_cast<int>(str1.size()) + static_cast<int>(str2.size()) > size)
|
|
|
|
{
|
|
|
|
str1 = str1.substr(0, size - str2.size());
|
|
|
|
}
|
|
|
|
char buffer[5];
|
|
|
|
int ni = 0;
|
|
|
|
sprintf(buffer, "%04d", ni);
|
|
|
|
ret = str1 + str2 + buffer;
|
|
|
|
while(m_ShortMakeVariableMap.count(ret) && ni < 1000)
|
|
|
|
{
|
|
|
|
++ni;
|
|
|
|
sprintf(buffer, "%04d", ni);
|
|
|
|
ret = str1 + str2 + buffer;
|
|
|
|
}
|
|
|
|
if(ni == 1000)
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("Borland makefile variable length too long");
|
|
|
|
return unmodified;
|
|
|
|
}
|
|
|
|
// once an unused variable is found
|
|
|
|
m_ShortMakeVariableMap[ret] = "1";
|
|
|
|
}
|
|
|
|
// always make an entry into the unmodified to variable map
|
|
|
|
m_MakeVariableMap[unmodified] = ret;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
bool
|
|
|
|
cmLocalUnixMakefileGenerator3
|
|
|
|
::ScanDependencies(std::vector<std::string> const& args)
|
|
|
|
{
|
|
|
|
// Format of arguments is:
|
2005-07-27 17:49:37 +04:00
|
|
|
// $(CMAKE_COMMAND), cmake_depends, GeneratorName, home_output_dir, start_output_dir, info file
|
2005-05-05 20:45:53 +04:00
|
|
|
// The caller has ensured that all required arguments exist.
|
|
|
|
|
2005-07-27 17:49:37 +04:00
|
|
|
// The info file for this target
|
|
|
|
std::string const& infoFile = args[5];
|
2005-05-05 20:45:53 +04:00
|
|
|
|
|
|
|
// Read the directory information file.
|
|
|
|
cmake cm;
|
|
|
|
cmGlobalGenerator gg;
|
|
|
|
gg.SetCMakeInstance(&cm);
|
|
|
|
std::auto_ptr<cmLocalGenerator> lg(gg.CreateLocalGenerator());
|
|
|
|
lg->SetGlobalGenerator(&gg);
|
|
|
|
cmMakefile* mf = lg->GetMakefile();
|
2005-06-07 18:47:28 +04:00
|
|
|
mf->SetHomeOutputDirectory(args[3].c_str());
|
2005-07-27 17:49:37 +04:00
|
|
|
mf->SetStartOutputDirectory(args[4].c_str());
|
|
|
|
lg->SetupPathConversions();
|
|
|
|
|
2005-05-05 20:45:53 +04:00
|
|
|
bool haveDirectoryInfo = false;
|
2005-06-07 18:47:28 +04:00
|
|
|
std::string dirInfoFile = args[4];
|
2005-07-29 17:19:25 +04:00
|
|
|
dirInfoFile += "/CMakeFiles/CMakeDirectoryInformation.cmake";
|
2005-06-07 18:47:28 +04:00
|
|
|
if(mf->ReadListFile(0, dirInfoFile.c_str()) &&
|
2005-05-05 20:45:53 +04:00
|
|
|
!cmSystemTools::GetErrorOccuredFlag())
|
|
|
|
{
|
|
|
|
haveDirectoryInfo = true;
|
|
|
|
}
|
2005-06-07 18:47:28 +04:00
|
|
|
|
2005-07-27 17:49:37 +04:00
|
|
|
// read in the target info file
|
|
|
|
if(!mf->ReadListFile(0, infoFile.c_str()) ||
|
|
|
|
cmSystemTools::GetErrorOccuredFlag())
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("Target DependInfo.cmake file not found");
|
|
|
|
}
|
|
|
|
|
2005-05-05 20:45:53 +04:00
|
|
|
// Test whether we need to force Unix paths.
|
|
|
|
if(haveDirectoryInfo)
|
|
|
|
{
|
|
|
|
if(const char* force = mf->GetDefinition("CMAKE_FORCE_UNIX_PATHS"))
|
|
|
|
{
|
|
|
|
if(!cmSystemTools::IsOff(force))
|
|
|
|
{
|
|
|
|
cmSystemTools::SetForceUnixPaths(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2005-06-07 18:47:28 +04:00
|
|
|
else
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("Directory Information file not found");
|
|
|
|
}
|
2005-05-05 20:45:53 +04:00
|
|
|
|
2005-07-27 17:49:37 +04:00
|
|
|
// create the file stream for the depends file
|
|
|
|
std::string dir = cmSystemTools::GetFilenamePath(infoFile);
|
|
|
|
|
|
|
|
// Open the rule file. This should be copy-if-different because the
|
|
|
|
// rules may depend on this file itself.
|
|
|
|
std::string ruleFileNameFull = dir;
|
2005-10-12 21:52:29 +04:00
|
|
|
ruleFileNameFull += "/depend.make";
|
2005-07-27 17:49:37 +04:00
|
|
|
cmGeneratedFileStream ruleFileStream(ruleFileNameFull.c_str());
|
|
|
|
ruleFileStream.SetCopyIfDifferent(true);
|
|
|
|
if(!ruleFileStream)
|
2005-05-05 20:45:53 +04:00
|
|
|
{
|
2005-07-27 17:49:37 +04:00
|
|
|
return false;
|
|
|
|
}
|
2005-10-12 21:52:29 +04:00
|
|
|
std::string internalRuleFileNameFull = dir;
|
|
|
|
internalRuleFileNameFull += "/depend.internal";
|
|
|
|
cmGeneratedFileStream internalRuleFileStream(internalRuleFileNameFull.c_str());
|
|
|
|
internalRuleFileStream.SetCopyIfDifferent(true);
|
|
|
|
if(!internalRuleFileStream)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2005-07-27 17:49:37 +04:00
|
|
|
this->WriteDisclaimer(ruleFileStream);
|
2005-10-12 21:52:29 +04:00
|
|
|
this->WriteDisclaimer(internalRuleFileStream);
|
2005-08-17 19:43:58 +04:00
|
|
|
|
|
|
|
// Get the set of generated files.
|
|
|
|
std::vector<std::string> generatedFilesVec;
|
|
|
|
if(haveDirectoryInfo)
|
|
|
|
{
|
|
|
|
if(const char* generated = mf->GetDefinition("CMAKE_GENERATED_FILES"))
|
|
|
|
{
|
|
|
|
cmSystemTools::ExpandListArgument(generated, generatedFilesVec);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Sort for efficient lookup.
|
2005-08-17 21:23:00 +04:00
|
|
|
std::set<cmStdString> generatedFiles;
|
|
|
|
for(std::vector<std::string>::iterator gfi = generatedFilesVec.begin();
|
|
|
|
gfi != generatedFilesVec.end(); ++gfi)
|
|
|
|
{
|
|
|
|
generatedFiles.insert(*gfi);
|
|
|
|
}
|
2005-08-17 19:43:58 +04:00
|
|
|
|
2005-07-27 17:49:37 +04:00
|
|
|
// for each language we need to scan, scan it
|
|
|
|
const char *langStr = mf->GetSafeDefinition("CMAKE_DEPENDS_LANGUAGES");
|
|
|
|
std::vector<std::string> langs;
|
|
|
|
cmSystemTools::ExpandListArgument(langStr, langs);
|
|
|
|
for (std::vector<std::string>::iterator li =
|
|
|
|
langs.begin(); li != langs.end(); ++li)
|
|
|
|
{
|
|
|
|
// construct the checker
|
|
|
|
std::string lang = li->c_str();
|
|
|
|
|
|
|
|
// Get the set of include directories.
|
|
|
|
std::vector<std::string> includes;
|
|
|
|
if(haveDirectoryInfo)
|
2005-05-05 20:45:53 +04:00
|
|
|
{
|
2005-07-27 17:49:37 +04:00
|
|
|
std::string includePathVar = "CMAKE_";
|
|
|
|
includePathVar += lang;
|
|
|
|
includePathVar += "_INCLUDE_PATH";
|
|
|
|
if(const char* includePath = mf->GetDefinition(includePathVar.c_str()))
|
|
|
|
{
|
|
|
|
cmSystemTools::ExpandListArgument(includePath, includes);
|
|
|
|
}
|
2005-05-05 20:45:53 +04:00
|
|
|
}
|
2005-07-27 17:49:37 +04:00
|
|
|
|
|
|
|
// Get the include file regular expression.
|
|
|
|
std::string includeRegexScan = "^.*$";
|
|
|
|
std::string includeRegexComplain = "^$";
|
|
|
|
if(haveDirectoryInfo)
|
2005-05-05 20:45:53 +04:00
|
|
|
{
|
2005-07-27 17:49:37 +04:00
|
|
|
std::string scanRegexVar = "CMAKE_";
|
|
|
|
scanRegexVar += lang;
|
|
|
|
scanRegexVar += "_INCLUDE_REGEX_SCAN";
|
|
|
|
if(const char* scanRegex = mf->GetDefinition(scanRegexVar.c_str()))
|
|
|
|
{
|
|
|
|
includeRegexScan = scanRegex;
|
|
|
|
}
|
|
|
|
std::string complainRegexVar = "CMAKE_";
|
|
|
|
complainRegexVar += lang;
|
|
|
|
complainRegexVar += "_INCLUDE_REGEX_COMPLAIN";
|
|
|
|
if(const char* complainRegex = mf->GetDefinition(complainRegexVar.c_str()))
|
|
|
|
{
|
|
|
|
includeRegexComplain = complainRegex;
|
|
|
|
}
|
2005-05-05 20:45:53 +04:00
|
|
|
}
|
2005-08-17 19:43:58 +04:00
|
|
|
|
2005-07-27 17:49:37 +04:00
|
|
|
// Create the scanner for this language
|
|
|
|
cmDepends *scanner = 0;
|
|
|
|
if(lang == "C" || lang == "CXX" || lang == "RC")
|
2005-05-05 20:45:53 +04:00
|
|
|
{
|
2005-12-09 21:58:55 +03:00
|
|
|
std::string includeCacheFileName = dir;
|
|
|
|
includeCacheFileName += "/includecache.";
|
|
|
|
includeCacheFileName += lang;
|
|
|
|
|
2005-07-27 17:49:37 +04:00
|
|
|
// TODO: Handle RC (resource files) dependencies correctly.
|
|
|
|
scanner = new cmDependsC(includes,
|
2005-08-17 19:43:58 +04:00
|
|
|
includeRegexScan.c_str(),
|
|
|
|
includeRegexComplain.c_str(),
|
2005-12-09 21:58:55 +03:00
|
|
|
generatedFiles, includeCacheFileName);
|
2005-05-05 20:45:53 +04:00
|
|
|
}
|
|
|
|
#ifdef CMAKE_BUILD_WITH_CMAKE
|
2005-07-27 17:49:37 +04:00
|
|
|
else if(lang == "Fortran")
|
|
|
|
{
|
|
|
|
scanner = new cmDependsFortran(includes);
|
|
|
|
}
|
|
|
|
else if(lang == "Java")
|
|
|
|
{
|
|
|
|
scanner = new cmDependsJava();
|
|
|
|
}
|
2005-05-05 20:45:53 +04:00
|
|
|
#endif
|
2005-07-27 17:49:37 +04:00
|
|
|
|
|
|
|
if (scanner)
|
|
|
|
{
|
2005-10-12 21:52:29 +04:00
|
|
|
scanner->SetFileComparison(m_GlobalGenerator->GetCMakeInstance()->GetFileComparison());
|
2005-08-19 18:13:04 +04:00
|
|
|
// for each file we need to scan
|
|
|
|
std::string srcLang = "CMAKE_DEPENDS_CHECK_";
|
|
|
|
srcLang += lang;
|
|
|
|
const char *srcStr = mf->GetSafeDefinition(srcLang.c_str());
|
|
|
|
std::vector<std::string> srcs;
|
|
|
|
cmSystemTools::ExpandListArgument(srcStr, srcs);
|
|
|
|
for (std::vector<std::string>::iterator si =
|
|
|
|
srcs.begin(); si != srcs.end(); ++si)
|
|
|
|
{
|
|
|
|
std::string &src = *si;
|
|
|
|
++si;
|
|
|
|
// make sure the object file is relative to home output
|
|
|
|
std::string obj = *si;
|
|
|
|
obj = lg->Convert(obj.c_str(),HOME_OUTPUT,MAKEFILE);
|
2005-10-12 21:52:29 +04:00
|
|
|
scanner->Write(src.c_str(),obj.c_str(),ruleFileStream, internalRuleFileStream);
|
2005-08-19 18:13:04 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// free the scanner for this language
|
2005-07-27 17:49:37 +04:00
|
|
|
delete scanner;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// dependencies were generated, so touch the mark file
|
2005-10-12 21:52:29 +04:00
|
|
|
ruleFileNameFull += ".mark";
|
|
|
|
std::ofstream fmark(ruleFileNameFull.c_str());
|
2005-07-27 17:49:37 +04:00
|
|
|
fmark << "Dependencies updated>" << std::endl;
|
|
|
|
|
|
|
|
return true;
|
2005-05-05 20:45:53 +04:00
|
|
|
}
|
|
|
|
|
2005-05-11 16:45:16 +04:00
|
|
|
//----------------------------------------------------------------------------
|
2005-10-20 21:40:28 +04:00
|
|
|
void cmLocalUnixMakefileGenerator3
|
|
|
|
::WriteLocalAllRules(std::ostream& ruleFileStream)
|
2005-05-11 16:45:16 +04:00
|
|
|
{
|
|
|
|
this->WriteDisclaimer(ruleFileStream);
|
2005-08-06 01:07:07 +04:00
|
|
|
this->WriteMakeVariables(ruleFileStream);
|
2005-06-30 17:53:03 +04:00
|
|
|
this->WriteSpecialTargetsTop(ruleFileStream);
|
|
|
|
|
2005-05-11 16:45:16 +04:00
|
|
|
std::vector<std::string> depends;
|
|
|
|
std::vector<std::string> commands;
|
2005-10-20 21:40:28 +04:00
|
|
|
|
2005-05-25 23:09:06 +04:00
|
|
|
// Write the all rule.
|
2005-05-11 20:44:01 +04:00
|
|
|
std::string dir = m_Makefile->GetStartOutputDirectory();
|
2005-05-19 23:00:35 +04:00
|
|
|
dir += "/directorystart";
|
2005-05-13 17:54:30 +04:00
|
|
|
dir = this->Convert(dir.c_str(),HOME_OUTPUT,MAKEFILE);
|
2005-10-20 21:40:28 +04:00
|
|
|
// if at the top the rule is called all
|
2006-01-17 18:21:45 +03:00
|
|
|
const char* sym = m_Makefile->GetDefinition("CMAKE_MAKE_SYMBOLIC_RULE");
|
|
|
|
if(sym)
|
|
|
|
{
|
|
|
|
depends.push_back(sym);
|
|
|
|
}
|
2005-10-20 21:40:28 +04:00
|
|
|
if (!m_Parent)
|
|
|
|
{
|
|
|
|
dir = "all";
|
2005-10-20 22:25:08 +04:00
|
|
|
depends.push_back("cmake_check_build_system");
|
2005-10-20 21:40:28 +04:00
|
|
|
}
|
2006-01-30 21:57:01 +03:00
|
|
|
commands.push_back(this->GetRecursiveMakeCall
|
|
|
|
("CMakeFiles/Makefile2",dir.c_str()));
|
|
|
|
this->CreateCDCommand(commands,
|
|
|
|
m_Makefile->GetHomeOutputDirectory(),
|
|
|
|
m_Makefile->GetStartOutputDirectory());
|
2005-05-11 16:45:16 +04:00
|
|
|
this->WriteMakeRule(ruleFileStream, "The main all target", "all", depends, commands);
|
|
|
|
|
2005-05-25 23:09:06 +04:00
|
|
|
// Write the clean rule.
|
|
|
|
dir = m_Makefile->GetStartOutputDirectory();
|
|
|
|
dir += "/clean";
|
|
|
|
dir = this->Convert(dir.c_str(),HOME_OUTPUT,MAKEFILE);
|
|
|
|
commands.clear();
|
2005-10-20 22:25:08 +04:00
|
|
|
depends.clear();
|
2006-01-17 18:21:45 +03:00
|
|
|
if(sym)
|
|
|
|
{
|
|
|
|
depends.push_back(sym);
|
|
|
|
}
|
2006-01-30 21:57:01 +03:00
|
|
|
commands.push_back(this->GetRecursiveMakeCall
|
|
|
|
("CMakeFiles/Makefile2",dir.c_str()));
|
|
|
|
this->CreateCDCommand(commands,
|
|
|
|
m_Makefile->GetHomeOutputDirectory(),
|
|
|
|
m_Makefile->GetStartOutputDirectory());
|
2005-05-25 23:09:06 +04:00
|
|
|
this->WriteMakeRule(ruleFileStream, "The main clean target", "clean", depends, commands);
|
|
|
|
|
2005-10-20 21:40:28 +04:00
|
|
|
// write the depend rule, really a recompute depends rule
|
|
|
|
depends.clear();
|
2006-01-17 18:21:45 +03:00
|
|
|
if(sym)
|
|
|
|
{
|
|
|
|
depends.push_back(sym);
|
|
|
|
}
|
2005-10-20 21:40:28 +04:00
|
|
|
commands.clear();
|
|
|
|
std::string cmakefileName = "CMakeFiles/Makefile.cmake";
|
2005-12-13 23:14:08 +03:00
|
|
|
this->Convert(cmakefileName.c_str(),HOME_OUTPUT,
|
|
|
|
cmLocalGenerator::MAKEFILE);
|
2005-10-20 21:40:28 +04:00
|
|
|
std::string runRule =
|
|
|
|
"$(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)";
|
|
|
|
runRule += " --check-build-system ";
|
|
|
|
runRule += this->Convert(cmakefileName.c_str(),cmLocalGenerator::NONE,
|
|
|
|
cmLocalGenerator::SHELL);
|
|
|
|
runRule += " 1";
|
|
|
|
commands.push_back(runRule);
|
|
|
|
this->WriteMakeRule(ruleFileStream, "clear depends",
|
|
|
|
"depend",
|
|
|
|
depends, commands);
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmLocalUnixMakefileGenerator3::WriteLocalMakefile()
|
|
|
|
{
|
|
|
|
// generate the includes
|
|
|
|
std::string ruleFileName = "Makefile";
|
|
|
|
|
|
|
|
// Open the rule file. This should be copy-if-different because the
|
|
|
|
// rules may depend on this file itself.
|
|
|
|
std::string ruleFileNameFull = this->ConvertToFullPath(ruleFileName);
|
|
|
|
cmGeneratedFileStream ruleFileStream(ruleFileNameFull.c_str());
|
|
|
|
if(!ruleFileStream)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2005-10-21 00:37:37 +04:00
|
|
|
// always write the top makefile
|
|
|
|
if (m_Parent)
|
|
|
|
{
|
|
|
|
ruleFileStream.SetCopyIfDifferent(true);
|
|
|
|
}
|
2005-10-20 21:40:28 +04:00
|
|
|
|
|
|
|
// write the all rules
|
|
|
|
this->WriteLocalAllRules(ruleFileStream);
|
|
|
|
|
2005-10-21 00:37:37 +04:00
|
|
|
// only write local targets unless at the top Keep track of targets already
|
|
|
|
// listed.
|
2005-10-20 21:40:28 +04:00
|
|
|
std::set<cmStdString> emittedTargets;
|
|
|
|
if (m_Parent)
|
|
|
|
{
|
|
|
|
// write our targets, and while doing it collect up the object
|
|
|
|
// file rules
|
|
|
|
this->WriteLocalMakefileTargets(ruleFileStream,emittedTargets);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cmGlobalUnixMakefileGenerator3 *gg =
|
|
|
|
static_cast<cmGlobalUnixMakefileGenerator3*>(m_GlobalGenerator);
|
|
|
|
gg->WriteConvenienceRules(ruleFileStream,emittedTargets);
|
|
|
|
}
|
2005-06-02 21:41:34 +04:00
|
|
|
|
2005-10-20 21:40:28 +04:00
|
|
|
std::vector<std::string> depends;
|
|
|
|
std::vector<std::string> commands;
|
|
|
|
|
2005-06-02 21:41:34 +04:00
|
|
|
// now write out the object rules
|
|
|
|
// for each object file name
|
2005-06-22 17:06:46 +04:00
|
|
|
for (std::map<cmStdString,std::vector<cmTarget *> >::iterator lo =
|
2005-06-02 21:41:34 +04:00
|
|
|
m_LocalObjectFiles.begin();
|
|
|
|
lo != m_LocalObjectFiles.end(); ++lo)
|
|
|
|
{
|
|
|
|
commands.clear();
|
|
|
|
// for each target using the object file
|
2005-06-22 17:06:46 +04:00
|
|
|
for (std::vector<cmTarget *>::iterator to =
|
2005-06-02 21:41:34 +04:00
|
|
|
lo->second.begin(); to != lo->second.end(); ++to)
|
|
|
|
{
|
|
|
|
std::string tgtMakefileName = this->GetRelativeTargetDirectory(**to);
|
|
|
|
std::string targetName = tgtMakefileName;
|
|
|
|
tgtMakefileName += "/build.make";
|
|
|
|
targetName += "/";
|
|
|
|
targetName += lo->first.c_str();
|
2006-01-30 21:57:01 +03:00
|
|
|
commands.push_back(this->GetRecursiveMakeCall
|
|
|
|
(tgtMakefileName.c_str(),targetName.c_str()));
|
|
|
|
this->CreateCDCommand(commands,
|
|
|
|
m_Makefile->GetHomeOutputDirectory(),
|
|
|
|
m_Makefile->GetStartOutputDirectory());
|
2005-06-02 21:41:34 +04:00
|
|
|
}
|
|
|
|
this->WriteMakeRule(ruleFileStream,
|
|
|
|
"target for object file",
|
|
|
|
lo->first.c_str(), depends, commands);
|
|
|
|
}
|
2005-06-30 17:53:03 +04:00
|
|
|
|
2005-10-20 21:40:28 +04:00
|
|
|
// add a help target as long as there isn;t a real target named help
|
|
|
|
if(emittedTargets.insert("help").second)
|
|
|
|
{
|
|
|
|
cmGlobalUnixMakefileGenerator3 *gg =
|
|
|
|
static_cast<cmGlobalUnixMakefileGenerator3*>(m_GlobalGenerator);
|
|
|
|
gg->WriteHelpRule(ruleFileStream,this);
|
|
|
|
}
|
|
|
|
|
|
|
|
this->WriteSpecialTargetsBottom(ruleFileStream);
|
2005-05-11 16:45:16 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void cmLocalUnixMakefileGenerator3
|
2005-10-20 21:40:28 +04:00
|
|
|
::WriteLocalMakefileTargets(std::ostream& ruleFileStream,
|
|
|
|
std::set<cmStdString> &emitted)
|
2005-05-11 16:45:16 +04:00
|
|
|
{
|
|
|
|
std::vector<std::string> depends;
|
|
|
|
std::vector<std::string> commands;
|
|
|
|
|
|
|
|
// for each target we just provide a rule to cd up to the top and do a make
|
|
|
|
// on the target
|
2005-06-22 17:06:46 +04:00
|
|
|
cmTargets& targets = m_Makefile->GetTargets();
|
2005-05-11 16:45:16 +04:00
|
|
|
std::string localName;
|
2005-06-22 17:06:46 +04:00
|
|
|
for(cmTargets::iterator t = targets.begin(); t != targets.end(); ++t)
|
2005-05-11 16:45:16 +04:00
|
|
|
{
|
|
|
|
if((t->second.GetType() == cmTarget::EXECUTABLE) ||
|
|
|
|
(t->second.GetType() == cmTarget::STATIC_LIBRARY) ||
|
|
|
|
(t->second.GetType() == cmTarget::SHARED_LIBRARY) ||
|
2005-07-05 17:21:44 +04:00
|
|
|
(t->second.GetType() == cmTarget::MODULE_LIBRARY) ||
|
|
|
|
(t->second.GetType() == cmTarget::UTILITY))
|
2005-05-11 16:45:16 +04:00
|
|
|
{
|
2005-10-20 21:40:28 +04:00
|
|
|
emitted.insert(t->second.GetName());
|
|
|
|
|
|
|
|
// for subdirs add a rule to build this specific target by name.
|
2005-05-11 16:45:16 +04:00
|
|
|
localName = this->GetRelativeTargetDirectory(t->second);
|
2005-06-22 00:29:47 +04:00
|
|
|
localName += "/rule";
|
2005-05-11 16:45:16 +04:00
|
|
|
commands.clear();
|
|
|
|
depends.clear();
|
|
|
|
|
2005-10-20 21:40:28 +04:00
|
|
|
// Build the target for this pass.
|
|
|
|
commands.push_back(this->GetRecursiveMakeCall
|
|
|
|
("CMakeFiles/Makefile2",localName.c_str()));
|
|
|
|
|
|
|
|
this->CreateCDCommand(commands,
|
|
|
|
m_Makefile->GetHomeOutputDirectory(),
|
|
|
|
m_Makefile->GetStartOutputDirectory());
|
2005-05-11 16:45:16 +04:00
|
|
|
this->WriteMakeRule(ruleFileStream, "Convenience name for target.",
|
|
|
|
localName.c_str(), depends, commands);
|
2005-10-20 21:40:28 +04:00
|
|
|
|
2005-05-11 16:45:16 +04:00
|
|
|
// Add a target with the canonical name (no prefix, suffix or path).
|
|
|
|
if(localName != t->second.GetName())
|
|
|
|
{
|
|
|
|
commands.clear();
|
|
|
|
depends.push_back(localName);
|
|
|
|
this->WriteMakeRule(ruleFileStream, "Convenience name for target.",
|
|
|
|
t->second.GetName(), depends, commands);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-06-02 21:41:34 +04:00
|
|
|
void cmLocalUnixMakefileGenerator3
|
2005-10-20 21:40:28 +04:00
|
|
|
::CreateCDCommand(std::vector<std::string>& commands, const char *tgtDir,
|
|
|
|
const char *retDir)
|
2005-05-11 16:45:16 +04:00
|
|
|
{
|
2005-10-20 21:40:28 +04:00
|
|
|
// do we need to cd?
|
|
|
|
if (!strcmp(tgtDir,retDir))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-12-23 00:42:36 +03:00
|
|
|
if(!m_UnixCD)
|
2005-05-11 16:45:16 +04:00
|
|
|
{
|
|
|
|
// On Windows we must perform each step separately and then change
|
|
|
|
// back because the shell keeps the working directory between
|
|
|
|
// commands.
|
|
|
|
std::string cmd = "cd ";
|
2005-10-20 21:40:28 +04:00
|
|
|
cmd += this->ConvertToOutputForExisting(tgtDir);
|
2005-10-19 18:03:20 +04:00
|
|
|
commands.insert(commands.begin(),cmd);
|
2005-05-11 16:45:16 +04:00
|
|
|
|
|
|
|
// Change back to the starting directory. Any trailing slash must be
|
|
|
|
// removed to avoid problems with Borland Make.
|
2005-10-20 21:40:28 +04:00
|
|
|
std::string back = retDir;
|
2005-05-11 16:45:16 +04:00
|
|
|
if(back.size() && back[back.size()-1] == '/')
|
|
|
|
{
|
|
|
|
back = back.substr(0, back.size()-1);
|
|
|
|
}
|
|
|
|
cmd = "cd ";
|
|
|
|
cmd += this->ConvertToOutputForExisting(back.c_str());
|
|
|
|
commands.push_back(cmd);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// On UNIX we must construct a single shell command to change
|
|
|
|
// directory and build because make resets the directory between
|
|
|
|
// each command.
|
2005-10-19 18:03:20 +04:00
|
|
|
std::vector<std::string>::iterator i = commands.begin();
|
|
|
|
for (; i != commands.end(); ++i)
|
|
|
|
{
|
|
|
|
std::string cmd = "cd ";
|
2005-10-20 21:40:28 +04:00
|
|
|
cmd += this->ConvertToOutputForExisting(tgtDir);
|
2005-10-19 18:03:20 +04:00
|
|
|
cmd += " && ";
|
|
|
|
cmd += *i;
|
|
|
|
*i = cmd;
|
|
|
|
}
|
2005-05-11 16:45:16 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-05-05 20:45:53 +04:00
|
|
|
//----------------------------------------------------------------------------
|
2005-05-09 16:53:38 +04:00
|
|
|
void cmLocalUnixMakefileGenerator3::CheckDependencies(cmMakefile* mf,
|
2005-06-10 18:45:08 +04:00
|
|
|
bool verbose,
|
|
|
|
bool clear)
|
2005-05-05 20:45:53 +04:00
|
|
|
{
|
2005-07-27 17:49:37 +04:00
|
|
|
// Get the list of target files to check
|
|
|
|
const char* infoDef = mf->GetDefinition("CMAKE_DEPEND_INFO_FILES");
|
|
|
|
if(!infoDef)
|
2005-05-05 20:45:53 +04:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2005-07-27 17:49:37 +04:00
|
|
|
std::vector<std::string> files;
|
|
|
|
cmSystemTools::ExpandListArgument(infoDef, files);
|
2005-05-05 20:45:53 +04:00
|
|
|
|
2005-07-27 17:49:37 +04:00
|
|
|
// For each info file run the check
|
|
|
|
cmDependsC checker;
|
|
|
|
checker.SetVerbose(verbose);
|
2005-10-12 21:52:29 +04:00
|
|
|
checker.SetFileComparison(m_GlobalGenerator->GetCMakeInstance()->GetFileComparison());
|
2005-07-27 17:49:37 +04:00
|
|
|
for(std::vector<std::string>::iterator l = files.begin();
|
|
|
|
l != files.end(); ++l)
|
2005-05-05 20:45:53 +04:00
|
|
|
{
|
2005-07-27 17:49:37 +04:00
|
|
|
// either clear or check the files
|
2005-10-12 21:52:29 +04:00
|
|
|
std::string dir = cmSystemTools::GetFilenamePath(l->c_str());
|
|
|
|
std::string internalDependFile = dir + "/depend.internal";
|
|
|
|
std::string dependFile = dir + "/depend.make";
|
2005-07-27 17:49:37 +04:00
|
|
|
if (clear)
|
2005-05-05 20:45:53 +04:00
|
|
|
{
|
2005-10-12 21:52:29 +04:00
|
|
|
checker.Clear(internalDependFile.c_str());
|
2005-07-27 17:49:37 +04:00
|
|
|
checker.Clear(dependFile.c_str());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2005-10-12 21:52:29 +04:00
|
|
|
checker.Check(dependFile.c_str(), internalDependFile.c_str());
|
2005-05-05 20:45:53 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2005-05-06 22:49:38 +04:00
|
|
|
|
2005-05-11 16:45:16 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
std::string
|
|
|
|
cmLocalUnixMakefileGenerator3
|
|
|
|
::GetRecursiveMakeCall(const char *Makefile, const char* tgt)
|
|
|
|
{
|
|
|
|
// Call make on the given file.
|
|
|
|
std::string cmd;
|
|
|
|
cmd += "$(MAKE) -f ";
|
|
|
|
cmd += Makefile;
|
|
|
|
cmd += " ";
|
|
|
|
|
|
|
|
// Passg down verbosity level.
|
|
|
|
if(this->GetMakeSilentFlag().size())
|
|
|
|
{
|
|
|
|
cmd += this->GetMakeSilentFlag();
|
|
|
|
cmd += " ";
|
|
|
|
}
|
|
|
|
|
|
|
|
// Most unix makes will pass the command line flags to make down to
|
|
|
|
// sub-invoked makes via an environment variable. However, some
|
|
|
|
// makes do not support that, so you have to pass the flags
|
|
|
|
// explicitly.
|
|
|
|
if(this->GetPassMakeflags())
|
|
|
|
{
|
|
|
|
cmd += "-$(MAKEFLAGS) ";
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add the target.
|
|
|
|
if (tgt && tgt[0] != '\0')
|
|
|
|
{
|
2005-05-13 17:54:30 +04:00
|
|
|
std::string tgt2 = this->Convert(tgt,HOME_OUTPUT,MAKEFILE);
|
2005-05-11 20:44:01 +04:00
|
|
|
tgt2 = this->ConvertToMakeTarget(tgt2.c_str());
|
|
|
|
cmd += tgt2;
|
2005-05-11 16:45:16 +04:00
|
|
|
}
|
|
|
|
return cmd;
|
|
|
|
}
|
|
|
|
|
2005-07-27 17:49:37 +04:00
|
|
|
|
|
|
|
void cmLocalUnixMakefileGenerator3
|
|
|
|
::WriteDependLanguageInfo(std::ostream& cmakefileStream, cmTarget &target)
|
|
|
|
{
|
|
|
|
// now write all the language stuff
|
|
|
|
// Set the set of files to check for dependency integrity.
|
2005-08-01 18:19:35 +04:00
|
|
|
std::set<cmStdString> checkSetLangs;
|
2005-07-27 17:49:37 +04:00
|
|
|
std::map<cmStdString,cmLocalUnixMakefileGenerator3::IntegrityCheckSet>&
|
|
|
|
checkSet = this->GetIntegrityCheckSet()[target.GetName()];
|
|
|
|
for(std::map<cmStdString,
|
|
|
|
cmLocalUnixMakefileGenerator3::IntegrityCheckSet>::const_iterator
|
|
|
|
l = checkSet.begin(); l != checkSet.end(); ++l)
|
|
|
|
{
|
|
|
|
checkSetLangs.insert(l->first);
|
|
|
|
}
|
|
|
|
|
|
|
|
// list the languages
|
|
|
|
cmakefileStream
|
|
|
|
<< "# The set of files whose dependency integrity should be checked:\n";
|
|
|
|
cmakefileStream
|
|
|
|
<< "SET(CMAKE_DEPENDS_LANGUAGES\n";
|
|
|
|
for(std::set<cmStdString>::iterator
|
|
|
|
l = checkSetLangs.begin(); l != checkSetLangs.end(); ++l)
|
|
|
|
{
|
|
|
|
cmakefileStream << " \"" << l->c_str() << "\"\n";
|
|
|
|
}
|
|
|
|
cmakefileStream << " )\n";
|
|
|
|
|
|
|
|
// now list the files for each language
|
|
|
|
for(std::set<cmStdString>::iterator
|
|
|
|
l = checkSetLangs.begin(); l != checkSetLangs.end(); ++l)
|
|
|
|
{
|
|
|
|
cmakefileStream
|
|
|
|
<< "SET(CMAKE_DEPENDS_CHECK_" << l->c_str() << "\n";
|
|
|
|
// get the check set for this local gen and language
|
|
|
|
cmLocalUnixMakefileGenerator3::IntegrityCheckSet iCheckSet =
|
|
|
|
checkSet[*l];
|
|
|
|
// for each file
|
|
|
|
for(cmLocalUnixMakefileGenerator3::IntegrityCheckSet::const_iterator
|
|
|
|
csIter = iCheckSet.begin();
|
|
|
|
csIter != iCheckSet.end(); ++csIter)
|
|
|
|
{
|
|
|
|
cmakefileStream << " \"" << (*csIter)->GetFullPath() << "\"\n";
|
|
|
|
// Get the full path name of the object file.
|
2005-07-29 19:25:47 +04:00
|
|
|
std::string obj = m_Makefile->GetStartOutputDirectory();
|
|
|
|
obj += "/";
|
|
|
|
obj += this->GetObjectFileName(target, **csIter);
|
2005-07-27 17:49:37 +04:00
|
|
|
cmakefileStream << " \"" <<
|
|
|
|
this->Convert(obj.c_str(),
|
|
|
|
cmLocalGenerator::FULL).c_str() << "\"\n";
|
|
|
|
}
|
|
|
|
cmakefileStream << " )\n";
|
|
|
|
}
|
|
|
|
}
|