summaryrefslogtreecommitdiff
path: root/Source/cmLocalUnixMakefileGenerator3.h
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-05-16 05:20:58 +0200
committerStephen Kelly <steveire@gmail.com>2015-05-18 20:03:49 +0200
commita97df5e13566cc2ccbaf51a395b85b03b363a07f (patch)
tree410a43d766c6e8b51e4b566d2df048127d439fe8 /Source/cmLocalUnixMakefileGenerator3.h
parent14f171c3ba1f996f8c97b9373fc58cbe34e97d6f (diff)
downloadcmake-a97df5e13566cc2ccbaf51a395b85b03b363a07f.tar.gz
cmGlobalUnixMakefileGenerator3: Host the PassMakeflags.
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.h')
-rw-r--r--Source/cmLocalUnixMakefileGenerator3.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.h b/Source/cmLocalUnixMakefileGenerator3.h
index 37a9265924..7a0dadb982 100644
--- a/Source/cmLocalUnixMakefileGenerator3.h
+++ b/Source/cmLocalUnixMakefileGenerator3.h
@@ -67,14 +67,6 @@ public:
void WriteMakeVariables(std::ostream& makefileStream);
/**
- * If true, then explicitly pass MAKEFLAGS on the make all target for makes
- * that do not use environment variables.
- *
- */
- void SetPassMakeflags(bool s){this->PassMakeflags = s;}
- bool GetPassMakeflags() { return this->PassMakeflags; }
-
- /**
* Set the flag used to keep the make program silent.
*/
void SetMakeSilentFlag(const std::string& s) { this->MakeSilentFlag = s; }
@@ -291,7 +283,6 @@ private:
std::string MakeSilentFlag;
std::string ConfigurationName;
bool UnixCD;
- bool PassMakeflags;
bool MakeCommandEscapeTargetTwice;
bool BorlandMakeCurlyHack;
//==========================================================================