ENH: some reorg of the unix makefile generator
This commit is contained in:
parent
f2cf7e9197
commit
141ad7645e
|
@ -125,6 +125,10 @@ SET(SRCS
|
||||||
cmMakeDepend.h
|
cmMakeDepend.h
|
||||||
cmMakefile.cxx
|
cmMakefile.cxx
|
||||||
cmMakefile.h
|
cmMakefile.h
|
||||||
|
cmMakefileTargetGenerator.cxx
|
||||||
|
cmMakefileExecutableTargetGenerator.cxx
|
||||||
|
cmMakefileLibraryTargetGenerator.cxx
|
||||||
|
cmMakefileUtilityTargetGenerator.cxx
|
||||||
cmOrderLinkDirectories.cxx
|
cmOrderLinkDirectories.cxx
|
||||||
cmFileTimeComparison.cxx
|
cmFileTimeComparison.cxx
|
||||||
cmFileTimeComparison.h
|
cmFileTimeComparison.h
|
||||||
|
|
|
@ -129,6 +129,7 @@ void cmGlobalUnixMakefileGenerator3::WriteMainMakefile2()
|
||||||
|
|
||||||
// Write the do not edit header.
|
// Write the do not edit header.
|
||||||
lg->WriteDisclaimer(makefileStream);
|
lg->WriteDisclaimer(makefileStream);
|
||||||
|
|
||||||
// Write out the "special" stuff
|
// Write out the "special" stuff
|
||||||
lg->WriteSpecialTargetsTop(makefileStream);
|
lg->WriteSpecialTargetsTop(makefileStream);
|
||||||
// Write the main entry point target. This must be the VERY first
|
// Write the main entry point target. This must be the VERY first
|
||||||
|
@ -390,8 +391,8 @@ cmGlobalUnixMakefileGenerator3
|
||||||
// write the directory rule
|
// write the directory rule
|
||||||
commands.clear();
|
commands.clear();
|
||||||
commands.push_back
|
commands.push_back
|
||||||
(lg->GetRecursiveMakeCall("CMakeFiles/Makefile2",
|
(lg->GetRecursiveMakeCall
|
||||||
makeTargetName.c_str()));
|
("CMakeFiles/Makefile2",makeTargetName.c_str()));
|
||||||
|
|
||||||
// Write the rule.
|
// Write the rule.
|
||||||
lg->WriteMakeRule(ruleFileStream, "Convenience name for directory.",
|
lg->WriteMakeRule(ruleFileStream, "Convenience name for directory.",
|
||||||
|
@ -520,9 +521,8 @@ cmGlobalUnixMakefileGenerator3
|
||||||
|
|
||||||
// write the directory rule
|
// write the directory rule
|
||||||
commands.clear();
|
commands.clear();
|
||||||
commands.push_back
|
commands.push_back(lg->GetRecursiveMakeCall
|
||||||
(lg->GetRecursiveMakeCall("CMakeFiles/Makefile2",
|
("CMakeFiles/Makefile2",makeTargetName.c_str()));
|
||||||
makeTargetName.c_str()));
|
|
||||||
|
|
||||||
// Write the rule.
|
// Write the rule.
|
||||||
lg->WriteMakeRule(ruleFileStream, "Convenience name for directory.",
|
lg->WriteMakeRule(ruleFileStream, "Convenience name for directory.",
|
||||||
|
@ -627,8 +627,8 @@ cmGlobalUnixMakefileGenerator3
|
||||||
|
|
||||||
// Write the rule.
|
// Write the rule.
|
||||||
commands.clear();
|
commands.clear();
|
||||||
commands.push_back(lg->GetRecursiveMakeCall("CMakeFiles/Makefile2",
|
commands.push_back(lg->GetRecursiveMakeCall
|
||||||
t->second.GetName()));
|
("CMakeFiles/Makefile2",t->second.GetName()));
|
||||||
depends.clear();
|
depends.clear();
|
||||||
if(sym)
|
if(sym)
|
||||||
{
|
{
|
||||||
|
@ -691,22 +691,22 @@ cmGlobalUnixMakefileGenerator3
|
||||||
{
|
{
|
||||||
makeTargetName = localName;
|
makeTargetName = localName;
|
||||||
makeTargetName += "/depend";
|
makeTargetName += "/depend";
|
||||||
commands.push_back(lg->GetRecursiveMakeCall(makefileName.c_str(),
|
commands.push_back(lg->GetRecursiveMakeCall
|
||||||
makeTargetName.c_str()));
|
(makefileName.c_str(),makeTargetName.c_str()));
|
||||||
|
|
||||||
// add requires if we need it for this generator
|
// add requires if we need it for this generator
|
||||||
if (needRequiresStep)
|
if (needRequiresStep)
|
||||||
{
|
{
|
||||||
makeTargetName = localName;
|
makeTargetName = localName;
|
||||||
makeTargetName += "/requires";
|
makeTargetName += "/requires";
|
||||||
commands.push_back(lg->GetRecursiveMakeCall(makefileName.c_str(),
|
commands.push_back(lg->GetRecursiveMakeCall
|
||||||
makeTargetName.c_str()));
|
(makefileName.c_str(),makeTargetName.c_str()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
makeTargetName = localName;
|
makeTargetName = localName;
|
||||||
makeTargetName += "/build";
|
makeTargetName += "/build";
|
||||||
commands.push_back(lg->GetRecursiveMakeCall(makefileName.c_str(),
|
commands.push_back(lg->GetRecursiveMakeCall
|
||||||
makeTargetName.c_str()));
|
(makefileName.c_str(),makeTargetName.c_str()));
|
||||||
|
|
||||||
// Write the rule.
|
// Write the rule.
|
||||||
localName += "/all";
|
localName += "/all";
|
||||||
|
@ -732,8 +732,8 @@ cmGlobalUnixMakefileGenerator3
|
||||||
|
|
||||||
// Write the rule.
|
// Write the rule.
|
||||||
commands.clear();
|
commands.clear();
|
||||||
commands.push_back(lg->GetRecursiveMakeCall("CMakeFiles/Makefile2",
|
commands.push_back(lg->GetRecursiveMakeCall
|
||||||
localName.c_str()));
|
("CMakeFiles/Makefile2",localName.c_str()));
|
||||||
depends.clear();
|
depends.clear();
|
||||||
if(sym)
|
if(sym)
|
||||||
{
|
{
|
||||||
|
@ -763,8 +763,8 @@ cmGlobalUnixMakefileGenerator3
|
||||||
depends.push_back(sym);
|
depends.push_back(sym);
|
||||||
}
|
}
|
||||||
commands.clear();
|
commands.clear();
|
||||||
commands.push_back(lg->GetRecursiveMakeCall(makefileName.c_str(),
|
commands.push_back(lg->GetRecursiveMakeCall
|
||||||
makeTargetName.c_str()));
|
(makefileName.c_str(), makeTargetName.c_str()));
|
||||||
lg->WriteMakeRule(ruleFileStream, "clean rule for target.",
|
lg->WriteMakeRule(ruleFileStream, "clean rule for target.",
|
||||||
makeTargetName.c_str(), depends, commands);
|
makeTargetName.c_str(), depends, commands);
|
||||||
commands.clear();
|
commands.clear();
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -23,6 +23,7 @@ class cmCustomCommand;
|
||||||
class cmDependInformation;
|
class cmDependInformation;
|
||||||
class cmDepends;
|
class cmDepends;
|
||||||
class cmMakeDepend;
|
class cmMakeDepend;
|
||||||
|
class cmMakefileTargetGenerator;
|
||||||
class cmTarget;
|
class cmTarget;
|
||||||
class cmSourceFile;
|
class cmSourceFile;
|
||||||
|
|
||||||
|
@ -38,20 +39,30 @@ public:
|
||||||
cmLocalUnixMakefileGenerator3();
|
cmLocalUnixMakefileGenerator3();
|
||||||
virtual ~cmLocalUnixMakefileGenerator3();
|
virtual ~cmLocalUnixMakefileGenerator3();
|
||||||
|
|
||||||
/**
|
|
||||||
* Generate the makefile for this directory.
|
|
||||||
*/
|
|
||||||
virtual void Generate();
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Process the CMakeLists files for this directory to fill in the
|
* Process the CMakeLists files for this directory to fill in the
|
||||||
* m_Makefile ivar
|
* m_Makefile ivar
|
||||||
*/
|
*/
|
||||||
virtual void Configure();
|
virtual void Configure();
|
||||||
|
|
||||||
/** creates the common disclainer text at the top of each makefile */
|
/**
|
||||||
void WriteDisclaimer(std::ostream& os);
|
* Generate the makefile for this directory.
|
||||||
|
*/
|
||||||
|
virtual void Generate();
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// this returns the relative path between the HomeOutputDirectory and this
|
// this returns the relative path between the HomeOutputDirectory and this
|
||||||
// local generators StartOutputDirectory
|
// local generators StartOutputDirectory
|
||||||
const std::string &GetHomeRelativeOutputPath();
|
const std::string &GetHomeRelativeOutputPath();
|
||||||
|
@ -66,9 +77,6 @@ public:
|
||||||
// write the main variables used by the makefiles
|
// write the main variables used by the makefiles
|
||||||
void WriteMakeVariables(std::ostream& makefileStream);
|
void WriteMakeVariables(std::ostream& makefileStream);
|
||||||
|
|
||||||
// write a comment line #====... in the stream
|
|
||||||
void WriteDivider(std::ostream& os);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* If true, then explicitly pass MAKEFLAGS on the make all target for makes
|
* If true, then explicitly pass MAKEFLAGS on the make all target for makes
|
||||||
* that do not use environment variables.
|
* that do not use environment variables.
|
||||||
|
@ -83,10 +91,6 @@ public:
|
||||||
void SetMakeSilentFlag(const char* s) { m_MakeSilentFlag = s; }
|
void SetMakeSilentFlag(const char* s) { m_MakeSilentFlag = s; }
|
||||||
std::string &GetMakeSilentFlag() { return m_MakeSilentFlag; }
|
std::string &GetMakeSilentFlag() { return m_MakeSilentFlag; }
|
||||||
|
|
||||||
/** used to create a recursive make call */
|
|
||||||
std::string GetRecursiveMakeCall(const char *makefile, const char* tgt);
|
|
||||||
|
|
||||||
|
|
||||||
/** Set whether the echo command needs its argument quoted. */
|
/** Set whether the echo command needs its argument quoted. */
|
||||||
void SetEchoNeedsQuote(bool b) { m_EchoNeedsQuote = b; }
|
void SetEchoNeedsQuote(bool b) { m_EchoNeedsQuote = b; }
|
||||||
|
|
||||||
|
@ -134,8 +138,39 @@ public:
|
||||||
*/
|
*/
|
||||||
void SetIgnoreLibPrefix(bool s) { m_IgnoreLibPrefix = s; }
|
void SetIgnoreLibPrefix(bool s) { m_IgnoreLibPrefix = s; }
|
||||||
|
|
||||||
|
// used in writing out Cmake files such as WriteDirectoryInformation
|
||||||
|
static void WriteCMakeArgument(std::ostream& os, const char* s);
|
||||||
|
|
||||||
|
/** creates the common disclainer text at the top of each makefile */
|
||||||
|
void WriteDisclaimer(std::ostream& os);
|
||||||
|
|
||||||
|
// write a comment line #====... in the stream
|
||||||
|
void WriteDivider(std::ostream& os);
|
||||||
|
|
||||||
|
/** used to create a recursive make call */
|
||||||
|
std::string GetRecursiveMakeCall(const char *makefile, const char* tgt);
|
||||||
|
|
||||||
|
// append an echo command
|
||||||
|
void AppendEcho(std::vector<std::string>& commands, const char* text);
|
||||||
|
|
||||||
|
static std::string GetTargetDirectory(cmTarget& target);
|
||||||
|
|
||||||
|
// create a command that cds to the start dir then runs the commands
|
||||||
|
void CreateCDCommand(std::vector<std::string>& commands,
|
||||||
|
const char *targetDir, const char *returnDir);
|
||||||
|
|
||||||
|
static std::string ConvertToQuotedOutputPath(const char* p);
|
||||||
|
|
||||||
|
std::string& CreateSafeUniqueObjectFileName(const char* sin);
|
||||||
|
std::string CreateMakeVariable(const char* sin, const char* s2in);
|
||||||
|
|
||||||
|
// cleanup the name of a potential target
|
||||||
|
std::string ConvertToMakeTarget(const char* tgt);
|
||||||
|
|
||||||
|
|
||||||
|
const char* GetSourceFileLanguage(const cmSourceFile& source);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/** Called from command-line hook to scan dependencies. */
|
/** Called from command-line hook to scan dependencies. */
|
||||||
|
@ -145,10 +180,10 @@ public:
|
||||||
virtual void CheckDependencies(cmMakefile* mf, bool verbose,
|
virtual void CheckDependencies(cmMakefile* mf, bool verbose,
|
||||||
bool clear);
|
bool clear);
|
||||||
|
|
||||||
/** write some extra rules suahc as make test etc */
|
/** write some extra rules such as make test etc */
|
||||||
void WriteSpecialTargetsTop(std::ostream& makefileStream);
|
void WriteSpecialTargetsTop(std::ostream& makefileStream);
|
||||||
|
|
||||||
void WriteSpecialTargetsBottom(std::ostream& makefileStream);
|
void WriteSpecialTargetsBottom(std::ostream& makefileStream);
|
||||||
|
|
||||||
std::string GetRelativeTargetDirectory(cmTarget& target);
|
std::string GetRelativeTargetDirectory(cmTarget& target);
|
||||||
|
|
||||||
// List the files for which to check dependency integrity. Each
|
// List the files for which to check dependency integrity. Each
|
||||||
|
@ -159,140 +194,59 @@ public:
|
||||||
std::map<cmStdString, IntegrityCheckSetMap> &GetIntegrityCheckSet()
|
std::map<cmStdString, IntegrityCheckSetMap> &GetIntegrityCheckSet()
|
||||||
{ return m_CheckDependFiles;}
|
{ return m_CheckDependFiles;}
|
||||||
|
|
||||||
void AppendTargetDepends(std::vector<std::string>& depends,
|
|
||||||
cmTarget& target);
|
|
||||||
|
|
||||||
void AppendGlobalTargetDepends(std::vector<std::string>& depends,
|
void AppendGlobalTargetDepends(std::vector<std::string>& depends,
|
||||||
cmTarget& target);
|
cmTarget& target);
|
||||||
|
|
||||||
void AppendEcho(std::vector<std::string>& commands,
|
|
||||||
const char* text);
|
|
||||||
|
|
||||||
// write the target rules for the local Makefile into the stream
|
// write the target rules for the local Makefile into the stream
|
||||||
void WriteLocalAllRules(std::ostream& ruleFileStream);
|
void WriteLocalAllRules(std::ostream& ruleFileStream);
|
||||||
|
|
||||||
std::map<cmStdString,std::vector<cmTarget *> > GetLocalObjectFiles()
|
std::map<cmStdString,std::vector<cmTarget *> > GetLocalObjectFiles()
|
||||||
{ return m_LocalObjectFiles;}
|
{ return m_LocalObjectFiles;}
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
// Return the a string with -F flags on apple
|
|
||||||
std::string GetFrameworkFlags(cmTarget&);
|
|
||||||
|
|
||||||
// write the depend info
|
|
||||||
void WriteDependLanguageInfo(std::ostream& cmakefileStream, cmTarget &tgt);
|
|
||||||
|
|
||||||
// write the target rules for the local Makefile into the stream
|
|
||||||
void WriteLocalMakefileTargets(std::ostream& ruleFileStream,
|
|
||||||
std::set<cmStdString> &emitted);
|
|
||||||
|
|
||||||
// write the local help rule
|
|
||||||
void WriteHelpRule(std::ostream& ruleFileStream);
|
|
||||||
|
|
||||||
// create a command that cds to the start dir then runs the commands
|
|
||||||
void CreateCDCommand(std::vector<std::string>& commands,
|
|
||||||
const char *targetDir, const char *returnDir);
|
|
||||||
|
|
||||||
// these two methods just compute reasonable values for m_LibraryOutputPath
|
// these two methods just compute reasonable values for m_LibraryOutputPath
|
||||||
// and m_ExecutableOutputPath
|
// and m_ExecutableOutputPath
|
||||||
void ConfigureOutputPaths();
|
void ConfigureOutputPaths();
|
||||||
void FormatOutputPath(std::string& path, const char* name);
|
void FormatOutputPath(std::string& path, const char* name);
|
||||||
|
|
||||||
|
void WriteLocalMakefile();
|
||||||
|
|
||||||
|
// write the target rules for the local Makefile into the stream
|
||||||
|
void WriteLocalMakefileTargets(std::ostream& ruleFileStream,
|
||||||
|
std::set<cmStdString> &emitted);
|
||||||
|
|
||||||
|
// this method Writes the Directory informaiton files
|
||||||
|
void WriteDirectoryInformationFile();
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// write the depend info
|
||||||
|
void WriteDependLanguageInfo(std::ostream& cmakefileStream, cmTarget &tgt);
|
||||||
|
|
||||||
|
// write the local help rule
|
||||||
|
void WriteHelpRule(std::ostream& ruleFileStream);
|
||||||
|
|
||||||
// this converts a file name that is relative to the StartOuputDirectory
|
// this converts a file name that is relative to the StartOuputDirectory
|
||||||
// into a full path
|
// into a full path
|
||||||
std::string ConvertToFullPath(const std::string& localPath);
|
std::string ConvertToFullPath(const std::string& localPath);
|
||||||
|
|
||||||
// this is responsible for writing all of the rules for all this
|
|
||||||
// directories custom commands (but not utility targets)
|
|
||||||
void WriteCustomCommands(std::ostream& os,
|
|
||||||
std::vector<std::string>& cleanFiles);
|
|
||||||
|
|
||||||
// this method Writes the Directory informaiton files
|
|
||||||
void WriteDirectoryInformationFile();
|
|
||||||
|
|
||||||
// cleanup the name of a potential target
|
|
||||||
std::string ConvertToMakeTarget(const char* tgt);
|
|
||||||
|
|
||||||
// used in writing out Cmake files such as WriteDirectoryInformation
|
|
||||||
void WriteCMakeArgument(std::ostream& os, const char* s);
|
|
||||||
|
|
||||||
// write out all the rules for this target
|
|
||||||
void WriteTargetRuleFiles(cmTarget& target);
|
|
||||||
void WriteUtilityRuleFiles(cmTarget& target);
|
|
||||||
|
|
||||||
// create the rule files for an object
|
|
||||||
void WriteObjectRuleFiles(cmTarget& target,
|
|
||||||
cmSourceFile& source,
|
|
||||||
std::vector<std::string>& objects,
|
|
||||||
std::ostream &filestr,
|
|
||||||
std::ostream &flagstr);
|
|
||||||
|
|
||||||
// write the build rule for an object
|
|
||||||
void WriteObjectBuildFile(std::string &obj,
|
|
||||||
const char *lang,
|
|
||||||
cmTarget& target,
|
|
||||||
cmSourceFile& source,
|
|
||||||
std::vector<std::string>& depends,
|
|
||||||
std::ostream &filestr,
|
|
||||||
std::ostream &flagstr);
|
|
||||||
|
|
||||||
// write the depend.make file for an object
|
|
||||||
void WriteObjectDependRules(cmSourceFile& source,
|
|
||||||
std::vector<std::string>& depends);
|
|
||||||
|
|
||||||
void GenerateCustomRuleFile(const cmCustomCommand& cc,
|
|
||||||
std::ostream &ruleStream);
|
|
||||||
|
|
||||||
// these three make some simple changes and then call WriteLibraryRule
|
|
||||||
void WriteStaticLibraryRule(std::ostream& ruleFileStream,
|
|
||||||
const char* ruleFileName,
|
|
||||||
cmTarget& target,
|
|
||||||
const std::vector<std::string>& objects,
|
|
||||||
const std::vector<std::string>& external_objects,
|
|
||||||
std::vector<std::string>& cleanFiles);
|
|
||||||
|
|
||||||
void WriteSharedLibraryRule(std::ostream& ruleFileStream,
|
|
||||||
const char* ruleFileName,
|
|
||||||
cmTarget& target,
|
|
||||||
const std::vector<std::string>& objects,
|
|
||||||
const std::vector<std::string>& external_objects,
|
|
||||||
std::vector<std::string>& cleanFiles);
|
|
||||||
|
|
||||||
void WriteModuleLibraryRule(std::ostream& ruleFileStream,
|
|
||||||
const char* ruleFileName,
|
|
||||||
cmTarget& target,
|
|
||||||
const std::vector<std::string>& objects,
|
|
||||||
const std::vector<std::string>& external_objects,
|
|
||||||
std::vector<std::string>& cleanFiles);
|
|
||||||
|
|
||||||
// the main code for writing the Executable target rules
|
|
||||||
void WriteExecutableRule(std::ostream& ruleFileStream,
|
|
||||||
const char* ruleFileName,
|
|
||||||
cmTarget& target,
|
|
||||||
const std::vector<std::string>& objects,
|
|
||||||
const std::vector<std::string>& external_objects,
|
|
||||||
std::vector<std::string>& cleanFiles);
|
|
||||||
|
|
||||||
// the main method for writing library rules
|
|
||||||
void WriteLibraryRule(std::ostream& ruleFileStream,
|
|
||||||
const char* ruleFileName,
|
|
||||||
cmTarget& target,
|
|
||||||
const std::vector<std::string>& objects,
|
|
||||||
const std::vector<std::string>& external_objects,
|
|
||||||
const char* linkRuleVar,
|
|
||||||
const char* extraLinkFlags,
|
|
||||||
std::vector<std::string>& cleanFiles);
|
|
||||||
|
|
||||||
void WriteLocalMakefile();
|
|
||||||
|
|
||||||
|
|
||||||
void WriteConvenienceRule(std::ostream& ruleFileStream,
|
void WriteConvenienceRule(std::ostream& ruleFileStream,
|
||||||
const char* realTarget,
|
const char* realTarget,
|
||||||
const char* helpTarget);
|
const char* helpTarget);
|
||||||
void WriteObjectsVariable(std::ostream& ruleFileStream,
|
|
||||||
cmTarget& target,
|
|
||||||
const std::vector<std::string>& objects,
|
|
||||||
const std::vector<std::string>& external_objects,
|
|
||||||
std::string& variableName,
|
|
||||||
std::string& variableNameExternal);
|
|
||||||
void WriteTargetDependRule(std::ostream& ruleFileStream,
|
void WriteTargetDependRule(std::ostream& ruleFileStream,
|
||||||
cmTarget& target);
|
cmTarget& target);
|
||||||
void WriteTargetCleanRule(std::ostream& ruleFileStream,
|
void WriteTargetCleanRule(std::ostream& ruleFileStream,
|
||||||
|
@ -302,12 +256,9 @@ protected:
|
||||||
cmTarget& target,
|
cmTarget& target,
|
||||||
const std::vector<std::string>& objects);
|
const std::vector<std::string>& objects);
|
||||||
|
|
||||||
std::string GetTargetDirectory(cmTarget& target);
|
|
||||||
std::string GetObjectFileName(cmTarget& target,
|
std::string GetObjectFileName(cmTarget& target,
|
||||||
const cmSourceFile& source,
|
const cmSourceFile& source,
|
||||||
std::string* nameWithoutTargetDir = 0);
|
std::string* nameWithoutTargetDir = 0);
|
||||||
const char* GetSourceFileLanguage(const cmSourceFile& source);
|
|
||||||
std::string ConvertToQuotedOutputPath(const char* p);
|
|
||||||
|
|
||||||
void AppendRuleDepend(std::vector<std::string>& depends,
|
void AppendRuleDepend(std::vector<std::string>& depends,
|
||||||
const char* ruleFileName);
|
const char* ruleFileName);
|
||||||
|
@ -322,20 +273,17 @@ protected:
|
||||||
void AppendCleanCommand(std::vector<std::string>& commands,
|
void AppendCleanCommand(std::vector<std::string>& commands,
|
||||||
const std::vector<std::string>& files);
|
const std::vector<std::string>& files);
|
||||||
|
|
||||||
//==========================================================================
|
|
||||||
std::string& CreateSafeUniqueObjectFileName(const char* sin);
|
|
||||||
std::string CreateMakeVariable(const char* sin, const char* s2in);
|
|
||||||
//==========================================================================
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
friend class cmMakefileTargetGenerator;
|
||||||
|
friend class cmMakefileExecutableTargetGenerator;
|
||||||
|
friend class cmMakefileLibraryTargetGenerator;
|
||||||
|
friend class cmMakefileUtilityTargetGenerator;
|
||||||
|
|
||||||
std::map<cmStdString, IntegrityCheckSetMap> m_CheckDependFiles;
|
std::map<cmStdString, IntegrityCheckSetMap> m_CheckDependFiles;
|
||||||
|
|
||||||
//==========================================================================
|
//==========================================================================
|
||||||
// Configuration settings.
|
// Configuration settings.
|
||||||
int m_MakefileVariableSize;
|
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_IncludeDirective;
|
||||||
std::string m_MakeSilentFlag;
|
std::string m_MakeSilentFlag;
|
||||||
std::string m_ExecutableOutputPath;
|
std::string m_ExecutableOutputPath;
|
||||||
|
@ -345,17 +293,19 @@ private:
|
||||||
bool m_UnixCD;
|
bool m_UnixCD;
|
||||||
bool m_PassMakeflags;
|
bool m_PassMakeflags;
|
||||||
bool m_SilentNoColon;
|
bool m_SilentNoColon;
|
||||||
//==========================================================================
|
|
||||||
|
|
||||||
// Flag for whether echo command needs quotes.
|
// Flag for whether echo command needs quotes.
|
||||||
bool m_EchoNeedsQuote;
|
bool m_EchoNeedsQuote;
|
||||||
|
//==========================================================================
|
||||||
|
|
||||||
std::string m_HomeRelativeOutputPath;
|
std::string m_HomeRelativeOutputPath;
|
||||||
|
|
||||||
// Set of object file names that will be built in this directory.
|
|
||||||
std::set<cmStdString> m_ObjectFiles;
|
|
||||||
|
|
||||||
std::map<cmStdString,std::vector<cmTarget *> > m_LocalObjectFiles;
|
std::map<cmStdString,std::vector<cmTarget *> > m_LocalObjectFiles;
|
||||||
|
|
||||||
|
/* does the work for each target */
|
||||||
|
std::vector<cmMakefileTargetGenerator *> TargetGenerators;
|
||||||
|
std::map<cmStdString, cmStdString> m_MakeVariableMap;
|
||||||
|
std::map<cmStdString, cmStdString> m_ShortMakeVariableMap;
|
||||||
|
std::map<cmStdString, cmStdString> m_UniqueObjectNamesMap;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -144,7 +144,7 @@ protected:
|
||||||
return this->LocalGenerator->Convert(source, relative, output, optional);
|
return this->LocalGenerator->Convert(source, relative, output, optional);
|
||||||
}
|
}
|
||||||
|
|
||||||
// constructor to set the ivarscmMakefileTargetGenerator
|
// constructor to set the ivars
|
||||||
cmMakefileTargetGenerator();
|
cmMakefileTargetGenerator();
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -83,6 +83,10 @@ CMAKE_CXX_SOURCES="\
|
||||||
cmXCodeObject \
|
cmXCodeObject \
|
||||||
cmXCode21Object \
|
cmXCode21Object \
|
||||||
cmLocalUnixMakefileGenerator3 \
|
cmLocalUnixMakefileGenerator3 \
|
||||||
|
cmMakefileExecutableTargetGenerator \
|
||||||
|
cmMakefileLibraryTargetGenerator \
|
||||||
|
cmMakefileTargetGenerator \
|
||||||
|
cmMakefileUtilityTargetGenerator \
|
||||||
cmBootstrapCommands \
|
cmBootstrapCommands \
|
||||||
cmCommands \
|
cmCommands \
|
||||||
cmTarget \
|
cmTarget \
|
||||||
|
|
Loading…
Reference in New Issue