2004-10-05 00:15:25 +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.
|
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#ifndef cmLocalUnixMakefileGenerator2_h
|
|
|
|
#define cmLocalUnixMakefileGenerator2_h
|
|
|
|
|
2005-02-11 00:18:27 +03:00
|
|
|
#include "cmLocalGenerator.h"
|
2004-10-05 00:15:25 +04:00
|
|
|
|
2005-05-03 22:58:13 +04:00
|
|
|
#if defined(__sgi) && !defined(__GNUC__)
|
|
|
|
# pragma set woff 1375 /* base class destructor not virtual */
|
|
|
|
#endif
|
|
|
|
|
2004-11-03 01:14:04 +03:00
|
|
|
class cmCustomCommand;
|
2004-10-05 00:15:25 +04:00
|
|
|
class cmDependInformation;
|
2005-01-19 01:09:05 +03:00
|
|
|
class cmDepends;
|
2004-10-05 00:15:25 +04:00
|
|
|
class cmMakeDepend;
|
|
|
|
class cmTarget;
|
|
|
|
class cmSourceFile;
|
|
|
|
|
|
|
|
/** \class cmLocalUnixMakefileGenerator2
|
|
|
|
* \brief Write a LocalUnix makefiles.
|
|
|
|
*
|
|
|
|
* cmLocalUnixMakefileGenerator2 produces a LocalUnix makefile from its
|
|
|
|
* member m_Makefile.
|
|
|
|
*/
|
2005-02-11 00:18:27 +03:00
|
|
|
class cmLocalUnixMakefileGenerator2 : public cmLocalGenerator
|
2004-10-05 00:15:25 +04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
///! Set cache only and recurse to false by default.
|
|
|
|
cmLocalUnixMakefileGenerator2();
|
|
|
|
|
|
|
|
virtual ~cmLocalUnixMakefileGenerator2();
|
|
|
|
|
2004-11-02 16:32:03 +03:00
|
|
|
/** Set the command used when there are no dependencies or rules for
|
|
|
|
a target. This is used to avoid errors on some make
|
|
|
|
implementations. */
|
|
|
|
void SetEmptyCommand(const char* cmd);
|
|
|
|
|
2005-02-25 19:23:17 +03:00
|
|
|
/** Set whether the echo command needs its argument quoted. */
|
|
|
|
void SetEchoNeedsQuote(bool b) { m_EchoNeedsQuote = b; }
|
|
|
|
|
2005-02-11 00:18:27 +03:00
|
|
|
/**
|
|
|
|
* Set to true if the shell being used is the windows shell.
|
|
|
|
* This controls if statements in the makefile and the SHELL variable.
|
|
|
|
* The default is false.
|
|
|
|
*/
|
|
|
|
void SetWindowsShell(bool v) {m_WindowsShell = v;}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the string used to include one makefile into another default
|
|
|
|
* is include.
|
|
|
|
*/
|
|
|
|
void SetIncludeDirective(const char* s) { m_IncludeDirective = s; }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the flag used to keep the make program silent.
|
|
|
|
*/
|
|
|
|
void SetMakeSilentFlag(const char* s) { m_MakeSilentFlag = s; }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set max makefile variable size, default is 0 which means unlimited.
|
|
|
|
*/
|
|
|
|
void SetMakefileVariableSize(int s) { m_MakefileVariableSize = s; }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* If ignore lib prefix is true, then do not strip lib from the name
|
|
|
|
* of a library.
|
|
|
|
*/
|
|
|
|
void SetIgnoreLibPrefix(bool s) { m_IgnoreLibPrefix = s; }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* If true, then explicitly pass MAKEFLAGS on the make all target for makes
|
|
|
|
* that do not use environment variables.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
void SetPassMakeflags(bool s){m_PassMakeflags = s;}
|
|
|
|
|
2004-10-05 00:15:25 +04:00
|
|
|
/**
|
2005-03-18 18:41:41 +03:00
|
|
|
* Generate the makefile for this directory.
|
2004-10-05 00:15:25 +04:00
|
|
|
*/
|
2005-03-18 18:41:41 +03:00
|
|
|
virtual void Generate();
|
2004-10-26 20:53:51 +04:00
|
|
|
|
|
|
|
/** Called from command-line hook to scan dependencies. */
|
2005-05-12 18:49:56 +04:00
|
|
|
virtual bool ScanDependencies(std::vector<std::string> const& args);
|
2004-10-26 20:53:51 +04:00
|
|
|
|
2004-10-30 00:50:46 +04:00
|
|
|
/** Called from command-line hook to check dependencies. */
|
2005-05-12 18:49:56 +04:00
|
|
|
virtual void CheckDependencies(cmMakefile* mf, bool verbose);
|
2004-10-30 00:50:46 +04:00
|
|
|
|
2004-10-05 00:15:25 +04:00
|
|
|
protected:
|
|
|
|
|
|
|
|
void GenerateMakefile();
|
|
|
|
void GenerateCMakefile();
|
2005-02-07 23:10:20 +03:00
|
|
|
void GenerateDirectoryInformationFile();
|
2004-10-05 00:15:25 +04:00
|
|
|
void GenerateTargetRuleFile(const cmTarget& target);
|
|
|
|
void GenerateObjectRuleFile(const cmTarget& target,
|
2005-01-17 23:09:32 +03:00
|
|
|
const cmSourceFile& source,
|
2005-01-28 22:17:48 +03:00
|
|
|
std::vector<std::string>& objects,
|
|
|
|
std::vector<std::string>& provides_requires);
|
2004-12-09 21:52:32 +03:00
|
|
|
void GenerateCustomRuleFile(const cmCustomCommand& cc);
|
|
|
|
void GenerateUtilityRuleFile(const cmTarget& target);
|
2005-01-19 01:09:05 +03:00
|
|
|
bool GenerateDependsMakeFile(const std::string& lang,
|
|
|
|
const char* objFile,
|
|
|
|
std::string& depMakeFile,
|
|
|
|
std::string& depMarkFile);
|
2004-10-29 18:52:52 +04:00
|
|
|
void WriteMakeRule(std::ostream& os,
|
|
|
|
const char* comment,
|
|
|
|
const char* target,
|
|
|
|
const std::vector<std::string>& depends,
|
2005-02-25 19:23:17 +03:00
|
|
|
const std::vector<std::string>& commands);
|
2004-10-29 18:52:52 +04:00
|
|
|
void WriteDivider(std::ostream& os);
|
2004-10-05 00:15:25 +04:00
|
|
|
void WriteDisclaimer(std::ostream& os);
|
2004-10-29 18:52:52 +04:00
|
|
|
void WriteMakeVariables(std::ostream& makefileStream);
|
|
|
|
void WriteSpecialTargetsTop(std::ostream& makefileStream);
|
|
|
|
void WriteSpecialTargetsBottom(std::ostream& makefileStream);
|
2004-11-03 01:14:04 +03:00
|
|
|
void WriteRuleFileIncludes(std::ostream& makefileStream);
|
2004-11-03 19:02:44 +03:00
|
|
|
void WriteAllRules(std::ostream& makefileStream);
|
2005-02-09 17:36:28 +03:00
|
|
|
void WritePassRules(std::ostream& makefileStream, const char* pass);
|
2004-11-03 19:02:44 +03:00
|
|
|
void WriteDriverRules(std::ostream& makefileStream, const char* pass,
|
|
|
|
const char* local1, const char* local2=0);
|
2004-11-02 15:36:08 +03:00
|
|
|
void WriteSubdirRules(std::ostream& makefileStream, const char* pass);
|
|
|
|
void WriteSubdirRule(std::ostream& makefileStream, const char* pass,
|
|
|
|
const char* subdir, std::string& last);
|
2004-11-02 16:32:03 +03:00
|
|
|
void WriteSubdirDriverRule(std::ostream& makefileStream, const char* pass,
|
|
|
|
const char* order, const std::string& last);
|
2005-02-09 17:36:28 +03:00
|
|
|
void WriteLocalRule(std::ostream& ruleFileStream, const char* pass,
|
|
|
|
const char* dependency);
|
2004-11-03 16:46:17 +03:00
|
|
|
void WriteConvenienceRules(std::ostream& ruleFileStream,
|
|
|
|
const cmTarget& target,
|
2005-01-05 01:41:19 +03:00
|
|
|
const char* targetOutPath);
|
2004-11-03 16:46:17 +03:00
|
|
|
void WriteConvenienceRule(std::ostream& ruleFileStream,
|
|
|
|
const char* realTarget,
|
|
|
|
const char* helpTarget);
|
2004-10-27 16:20:58 +04:00
|
|
|
void WriteExecutableRule(std::ostream& ruleFileStream,
|
|
|
|
const char* ruleFileName,
|
|
|
|
const cmTarget& target,
|
2005-02-04 23:14:12 +03:00
|
|
|
const std::vector<std::string>& objects,
|
|
|
|
const std::vector<std::string>& external_objects,
|
2005-01-28 22:17:48 +03:00
|
|
|
const std::vector<std::string>& provides_requires);
|
2004-10-27 16:20:58 +04:00
|
|
|
void WriteStaticLibraryRule(std::ostream& ruleFileStream,
|
|
|
|
const char* ruleFileName,
|
|
|
|
const cmTarget& target,
|
2005-02-04 23:14:12 +03:00
|
|
|
const std::vector<std::string>& objects,
|
|
|
|
const std::vector<std::string>& external_objects,
|
2005-01-28 22:17:48 +03:00
|
|
|
const std::vector<std::string>& provides_requires);
|
2004-10-27 16:47:49 +04:00
|
|
|
void WriteSharedLibraryRule(std::ostream& ruleFileStream,
|
|
|
|
const char* ruleFileName,
|
|
|
|
const cmTarget& target,
|
2005-02-04 23:14:12 +03:00
|
|
|
const std::vector<std::string>& objects,
|
|
|
|
const std::vector<std::string>& external_objects,
|
2005-01-28 22:17:48 +03:00
|
|
|
const std::vector<std::string>& provides_requires);
|
2004-10-27 16:47:49 +04:00
|
|
|
void WriteModuleLibraryRule(std::ostream& ruleFileStream,
|
|
|
|
const char* ruleFileName,
|
|
|
|
const cmTarget& target,
|
2005-02-04 23:14:12 +03:00
|
|
|
const std::vector<std::string>& objects,
|
|
|
|
const std::vector<std::string>& external_objects,
|
2005-01-28 22:17:48 +03:00
|
|
|
const std::vector<std::string>& provides_requires);
|
2004-10-27 16:20:58 +04:00
|
|
|
void WriteLibraryRule(std::ostream& ruleFileStream,
|
|
|
|
const char* ruleFileName,
|
|
|
|
const cmTarget& target,
|
2005-02-04 23:14:12 +03:00
|
|
|
const std::vector<std::string>& objects,
|
|
|
|
const std::vector<std::string>& external_objects,
|
2004-10-27 16:20:58 +04:00
|
|
|
const char* linkRuleVar,
|
2005-01-28 22:17:48 +03:00
|
|
|
const char* extraLinkFlags,
|
|
|
|
const std::vector<std::string>& provides_requires);
|
2004-11-05 23:09:46 +03:00
|
|
|
void WriteObjectsVariable(std::ostream& ruleFileStream,
|
|
|
|
const cmTarget& target,
|
2005-01-19 15:23:06 +03:00
|
|
|
const std::vector<std::string>& objects,
|
2005-02-04 23:14:12 +03:00
|
|
|
const std::vector<std::string>& external_objects,
|
|
|
|
std::string& variableName,
|
|
|
|
std::string& variableNameExternal);
|
2004-11-19 17:32:18 +03:00
|
|
|
void WriteTargetDependsRule(std::ostream& ruleFileStream,
|
|
|
|
const char* ruleFileName,
|
|
|
|
const cmTarget& target,
|
|
|
|
const std::vector<std::string>& objects);
|
|
|
|
void WriteTargetCleanRule(std::ostream& ruleFileStream,
|
|
|
|
const cmTarget& target,
|
|
|
|
const std::vector<std::string>& files);
|
2005-01-28 22:17:48 +03:00
|
|
|
void WriteTargetRequiresRule(std::ostream& ruleFileStream,
|
|
|
|
const cmTarget& target,
|
|
|
|
const std::vector<std::string>& provides_requires);
|
2005-02-09 17:36:28 +03:00
|
|
|
void WriteLocalCleanRule(std::ostream& makefileStream);
|
2005-02-07 23:10:20 +03:00
|
|
|
void WriteCMakeArgument(std::ostream& os, const char* s);
|
2004-10-05 00:15:25 +04:00
|
|
|
std::string GetTargetDirectory(const cmTarget& target);
|
2004-11-02 15:36:08 +03:00
|
|
|
std::string GetSubdirTargetName(const char* pass, const char* subdir);
|
2004-10-27 16:20:58 +04:00
|
|
|
std::string GetObjectFileName(const cmTarget& target,
|
|
|
|
const cmSourceFile& source);
|
2004-10-26 22:49:11 +04:00
|
|
|
const char* GetSourceFileLanguage(const cmSourceFile& source);
|
2004-10-27 20:05:33 +04:00
|
|
|
std::string ConvertToFullPath(const std::string& localPath);
|
2005-01-05 01:41:19 +03:00
|
|
|
std::string ConvertToRelativeOutputPath(const char* p);
|
2005-02-25 17:06:18 +03:00
|
|
|
std::string ConvertToQuotedOutputPath(const char* p);
|
2005-02-11 00:18:27 +03:00
|
|
|
void ConfigureOutputPaths();
|
|
|
|
void FormatOutputPath(std::string& path, const char* name);
|
2004-10-26 20:53:51 +04:00
|
|
|
|
2004-12-09 23:11:22 +03:00
|
|
|
void AppendTargetDepends(std::vector<std::string>& depends,
|
|
|
|
const cmTarget& target);
|
2005-03-29 19:34:58 +04:00
|
|
|
void AppendAnyDepend(std::vector<std::string>& depends, const char* name,
|
|
|
|
bool assume_unknown_is_file=false);
|
2005-03-08 21:43:17 +03:00
|
|
|
void AppendRuleDepend(std::vector<std::string>& depends,
|
|
|
|
const char* ruleFileName);
|
2004-12-09 23:11:22 +03:00
|
|
|
void AppendCustomDepends(std::vector<std::string>& depends,
|
|
|
|
const std::vector<cmCustomCommand>& ccs);
|
|
|
|
void AppendCustomDepend(std::vector<std::string>& depends,
|
|
|
|
const cmCustomCommand& cc);
|
|
|
|
void AppendCustomCommands(std::vector<std::string>& commands,
|
|
|
|
const std::vector<cmCustomCommand>& ccs);
|
|
|
|
void AppendCustomCommand(std::vector<std::string>& commands,
|
|
|
|
const cmCustomCommand& cc);
|
2005-02-09 19:40:01 +03:00
|
|
|
void AppendCleanCommand(std::vector<std::string>& commands,
|
|
|
|
const std::vector<std::string>& files);
|
2005-02-25 19:23:17 +03:00
|
|
|
void AppendEcho(std::vector<std::string>& commands,
|
|
|
|
const char* text);
|
2005-02-11 00:18:27 +03:00
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
bool SamePath(const char* path1, const char* path2);
|
|
|
|
std::string ConvertToMakeTarget(const char* tgt);
|
|
|
|
std::string& CreateSafeUniqueObjectFileName(const char* sin);
|
|
|
|
std::string CreateMakeVariable(const char* sin, const char* s2in);
|
|
|
|
//==========================================================================
|
|
|
|
|
2004-11-05 15:39:48 +03:00
|
|
|
std::string GetRecursiveMakeCall(const char* tgt);
|
2004-10-27 18:45:18 +04:00
|
|
|
void WriteJumpAndBuildRules(std::ostream& makefileStream);
|
2004-10-27 16:20:58 +04:00
|
|
|
|
2005-01-19 01:09:05 +03:00
|
|
|
static cmDepends* GetDependsChecker(const std::string& lang,
|
|
|
|
const char* dir,
|
2005-05-06 17:58:58 +04:00
|
|
|
const char* objFile,
|
|
|
|
bool verbose);
|
2005-01-19 01:09:05 +03:00
|
|
|
|
2004-10-05 00:15:25 +04:00
|
|
|
private:
|
2004-10-27 18:45:18 +04:00
|
|
|
// Map from target name to build directory containing it for
|
|
|
|
// jump-and-build targets.
|
|
|
|
struct RemoteTarget
|
|
|
|
{
|
|
|
|
std::string m_BuildDirectory;
|
|
|
|
std::string m_FilePath;
|
|
|
|
};
|
|
|
|
std::map<cmStdString, RemoteTarget> m_JumpAndBuild;
|
2004-10-30 00:50:46 +04:00
|
|
|
|
2005-01-19 01:09:05 +03:00
|
|
|
// List the files for which to check dependency integrity. Each
|
|
|
|
// language has its own list because integrity may be checked
|
|
|
|
// differently.
|
|
|
|
struct IntegrityCheckSet: public std::set<cmStdString> {};
|
|
|
|
std::map<cmStdString, IntegrityCheckSet> m_CheckDependFiles;
|
2004-11-02 16:32:03 +03:00
|
|
|
|
|
|
|
// Command used when a rule has no dependencies or commands.
|
|
|
|
std::vector<std::string> m_EmptyCommands;
|
2004-11-03 01:14:04 +03:00
|
|
|
|
2005-02-11 00:18:27 +03:00
|
|
|
//==========================================================================
|
|
|
|
// Configuration settings.
|
|
|
|
int m_MakefileVariableSize;
|
|
|
|
std::map<cmStdString, cmStdString> m_MakeVariableMap;
|
|
|
|
std::map<cmStdString, cmStdString> m_ShortMakeVariableMap;
|
|
|
|
std::map<cmStdString, cmStdString> m_UniqueObjectNamesMap;
|
|
|
|
std::string m_IncludeDirective;
|
|
|
|
std::string m_MakeSilentFlag;
|
|
|
|
std::string m_ExecutableOutputPath;
|
|
|
|
std::string m_LibraryOutputPath;
|
|
|
|
bool m_PassMakeflags;
|
|
|
|
//==========================================================================
|
|
|
|
|
2005-02-25 19:23:17 +03:00
|
|
|
// Flag for whether echo command needs quotes.
|
|
|
|
bool m_EchoNeedsQuote;
|
|
|
|
|
2004-11-03 01:14:04 +03:00
|
|
|
// List of make rule files that need to be included by the makefile.
|
|
|
|
std::vector<std::string> m_IncludeRuleFiles;
|
|
|
|
|
|
|
|
// Set of custom rule files that have been generated.
|
|
|
|
std::set<cmStdString> m_CustomRuleFiles;
|
2004-11-19 17:32:18 +03:00
|
|
|
|
2005-02-17 18:03:27 +03:00
|
|
|
// Set of object file names that will be built in this directory.
|
|
|
|
std::set<cmStdString> m_ObjectFiles;
|
2004-10-05 00:15:25 +04:00
|
|
|
};
|
|
|
|
|
2005-05-03 22:58:13 +04:00
|
|
|
#if defined(__sgi) && !defined(__GNUC__)
|
|
|
|
# pragma reset woff 1375 /* base class destructor not virtual */
|
|
|
|
#endif
|
|
|
|
|
2004-10-05 00:15:25 +04:00
|
|
|
#endif
|