diff options
author | Sebastien Barre <sebastien.barre@kitware.com> | 2002-04-22 19:16:54 (GMT) |
---|---|---|
committer | Sebastien Barre <sebastien.barre@kitware.com> | 2002-04-22 19:16:54 (GMT) |
commit | 6083e3c1274d8def2984e3406cb82048df2b98a8 (patch) | |
tree | 924f1cc53b745e99b4c46cc4ea191e149f87d066 /Source | |
parent | 64beaa8b9c0a7355abc1569b4fa7549561d3fe8a (diff) | |
download | CMake-6083e3c1274d8def2984e3406cb82048df2b98a8.zip CMake-6083e3c1274d8def2984e3406cb82048df2b98a8.tar.gz CMake-6083e3c1274d8def2984e3406cb82048df2b98a8.tar.bz2 |
ENH: make CMake less verbose/precious
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmNMakeMakefileGenerator.cxx | 4 | ||||
-rw-r--r-- | Source/cmUnixMakefileGenerator.cxx | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/Source/cmNMakeMakefileGenerator.cxx b/Source/cmNMakeMakefileGenerator.cxx index 1097a55..3744560 100644 --- a/Source/cmNMakeMakefileGenerator.cxx +++ b/Source/cmNMakeMakefileGenerator.cxx @@ -238,7 +238,7 @@ void cmNMakeMakefileGenerator::BuildInSubDirectory(std::ostream& fout, << "$(MAKE) $(MAKESILENT) rebuild_cache\n"; if (!silent) { - fout << "\techo Building " << target1 << " in directory " << directory << "\n"; + fout << "\techo " << directory << ": building " << target1 << "\n"; } fout << "\tcd " << dir << "\n" << "\t$(MAKE) -$(MAKEFLAGS) $(MAKESILENT) " << target1 << "\n"; @@ -247,7 +247,7 @@ void cmNMakeMakefileGenerator::BuildInSubDirectory(std::ostream& fout, { if (!silent) { - fout << "\techo Building " << target2 << " in directory " << directory << "\n"; + fout << "\techo " << directory << ": building " << target2 << "\n"; } fout << "\t$(MAKE) -$(MAKEFLAGS) $(MAKESILENT) " << target2 << "\n"; } diff --git a/Source/cmUnixMakefileGenerator.cxx b/Source/cmUnixMakefileGenerator.cxx index a17f191..8e9a645 100644 --- a/Source/cmUnixMakefileGenerator.cxx +++ b/Source/cmUnixMakefileGenerator.cxx @@ -1183,7 +1183,7 @@ void cmUnixMakefileGenerator::BuildInSubDirectory(std::ostream& fout, << "; then $(MAKE) rebuild_cache; fi\n"; if (!silent) { - fout << "\techo Building " << target1 << " in directory " << directory << "\n"; + fout << "\techo " << directory << ": building " << target1 << "\n"; } fout << "\t@cd " << directory << "; $(MAKE) -$(MAKEFLAGS) " << target1 << "\n"; @@ -1192,7 +1192,7 @@ void cmUnixMakefileGenerator::BuildInSubDirectory(std::ostream& fout, { if (!silent) { - fout << "\techo Building " << target2 << " in directory " << directory << "\n"; + fout << "\techo " << directory << ": building " << target2 << "\n"; } fout << "\t@cd " << directory << "; $(MAKE) -$(MAKEFLAGS) " << target2 << "\n"; @@ -1280,7 +1280,7 @@ void cmUnixMakefileGenerator::OutputSubDirectoryRules(std::ostream& fout) "default_target", 0, "$(TARGETS)", SubDirectories, - true); + false); this->OutputSubDirectoryVars(fout, "SUBDIR_CLEAN", "clean", "clean", 0, 0, |