diff options
Diffstat (limited to 'Source/cmGlobalUnixMakefileGenerator3.h')
-rw-r--r-- | Source/cmGlobalUnixMakefileGenerator3.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/Source/cmGlobalUnixMakefileGenerator3.h b/Source/cmGlobalUnixMakefileGenerator3.h index 6f10e71..f8f6237 100644 --- a/Source/cmGlobalUnixMakefileGenerator3.h +++ b/Source/cmGlobalUnixMakefileGenerator3.h @@ -98,19 +98,6 @@ public: void WriteConvenienceRules(std::ostream& ruleFileStream, std::set<cmStdString> &emitted); - /** In order to support parallel builds for custom commands with - multiple outputs the outputs are given a serial order, and only - the first output actually has the build rule. Other outputs - just depend on the first one. The check-build-system step must - remove a dependee if the depender is missing to make sure both - are regenerated properly. This method is used by the local - makefile generators to register such pairs. */ - void AddMultipleOutputPair(const char* depender, const char* dependee); - - /** Support for multiple custom command outputs. Called during - check-build-system step. */ - virtual void CheckMultipleOutputs(cmMakefile* mf, bool verbose); - /** Get the command to use for a target that has no rule. This is used for multiple output dependencies and for cmake_force. */ std::string GetEmptyRuleHackCommand() { return this->EmptyRuleHackCommand; } @@ -191,9 +178,6 @@ protected: // in the rule to satisfy the make program. std::string EmptyRuleHackCommand; - typedef std::map<cmStdString, cmStdString> MultipleOutputPairsType; - MultipleOutputPairsType MultipleOutputPairs; - std::map<cmStdString, int > TargetSourceFileCount; bool ForceVerboseMakefiles; }; |