diff options
author | Jiri Malak <malak.jiri@gmail.com> | 2014-03-09 09:41:06 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-03-10 15:15:12 (GMT) |
commit | f1b689b64a96fbf1e6f3b154d1bd4ee28ea3d625 (patch) | |
tree | dd7f9052420299890eeae6c162e72c1f00a63f1f /Source/cmLocalUnixMakefileGenerator3.h | |
parent | e21ffaf8fe5499426604b4ebb9cd08798ee6107c (diff) | |
download | CMake-f1b689b64a96fbf1e6f3b154d1bd4ee28ea3d625.zip CMake-f1b689b64a96fbf1e6f3b154d1bd4ee28ea3d625.tar.gz CMake-f1b689b64a96fbf1e6f3b154d1bd4ee28ea3d625.tar.bz2 |
Makefile: Improve handling of WMake verbose output and errors
* The '-e' option has nothing to do with verbose output.
It is now properly handled by .ERASE directive in make file
* The '-s' option sets silent output globally, it cannot be switched off.
It is now handled only by .SILENT directive in make file directive
is simply controlled by a conditonal block.
Remove SilentNoColon member variable as it is no longer needed.
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.h')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator3.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.h b/Source/cmLocalUnixMakefileGenerator3.h index 39f213b..7987c96 100644 --- a/Source/cmLocalUnixMakefileGenerator3.h +++ b/Source/cmLocalUnixMakefileGenerator3.h @@ -121,12 +121,6 @@ public: void SetUnixCD(bool v) {this->UnixCD = v;} /** - * Set Support Verbose Variable. If true, then .SILENT will - * be not end with : i.e. .SILENT: or .SILENT - */ - void SetSilentNoColon(bool v) {this->SilentNoColon = v;} - - /** * Set the string used to include one makefile into another default * is include. */ @@ -339,7 +333,6 @@ private: bool DefineWindowsNULL; bool UnixCD; bool PassMakeflags; - bool SilentNoColon; bool MakeCommandEscapeTargetTwice; bool BorlandMakeCurlyHack; //========================================================================== |