diff options
author | Ken Martin <ken.martin@kitware.com> | 2003-08-05 13:07:31 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2003-08-05 13:07:31 (GMT) |
commit | 75ce40f4d6316f2d63cde5e98377d473f53c44d1 (patch) | |
tree | 38edb9fc5690540adca1442cfc9ff1966533dc96 /Source/cmLocalUnixMakefileGenerator.cxx | |
parent | e8d1ee271214e945db8e498e52e07d08d887d839 (diff) | |
download | CMake-75ce40f4d6316f2d63cde5e98377d473f53c44d1.zip CMake-75ce40f4d6316f2d63cde5e98377d473f53c44d1.tar.gz CMake-75ce40f4d6316f2d63cde5e98377d473f53c44d1.tar.bz2 |
minor fix
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator.cxx')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator.cxx b/Source/cmLocalUnixMakefileGenerator.cxx index 2ac4db4..64ffeb3 100644 --- a/Source/cmLocalUnixMakefileGenerator.cxx +++ b/Source/cmLocalUnixMakefileGenerator.cxx @@ -396,10 +396,10 @@ void cmLocalUnixMakefileGenerator::OutputTargetRules(std::ostream& fout) // add the help target fout << "help:\n"; this->OutputEcho(fout,"The following are some of the valid targets for this Makefile:"); - this->OutputEcho(fout,"... all (the default if no target is provided)"); - this->OutputEcho(fout,"... clean"); - this->OutputEcho(fout,"... depend"); - this->OutputEcho(fout,"... rebuild_cache"); + this->OutputEcho(fout,"... all (the default if no target is provided)"); + this->OutputEcho(fout,"... clean"); + this->OutputEcho(fout,"... depend"); + this->OutputEcho(fout,"... rebuild_cache"); // libraries std::string path; |