diff options
author | Ken Martin <ken.martin@kitware.com> | 2003-08-05 12:49:23 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2003-08-05 12:49:23 (GMT) |
commit | e8d1ee271214e945db8e498e52e07d08d887d839 (patch) | |
tree | e1e78ad2de0ed656f2a49fd0d90ae025f273012f /Source/cmLocalUnixMakefileGenerator.h | |
parent | c17220091c076bc0847424c2927378dbe2fd29f8 (diff) | |
download | CMake-e8d1ee271214e945db8e498e52e07d08d887d839.zip CMake-e8d1ee271214e945db8e498e52e07d08d887d839.tar.gz CMake-e8d1ee271214e945db8e498e52e07d08d887d839.tar.bz2 |
added outputEcho method and fixed make help for nmake and borland
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator.h')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator.h b/Source/cmLocalUnixMakefileGenerator.h index 9b0d2d4..50cab92 100644 --- a/Source/cmLocalUnixMakefileGenerator.h +++ b/Source/cmLocalUnixMakefileGenerator.h @@ -207,6 +207,10 @@ protected: /** Get the full name of the target's file, without path. */ std::string GetFullTargetName(const char* n, const cmTarget& t); + + /** Output an echo command to the Makefile */ + void OutputEcho(std::ostream& fout, const char *msg); + protected: int m_MakefileVariableSize; std::map<cmStdString, cmStdString> m_MakeVariableMap; |