summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalUnixMakefileGenerator3.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2008-03-18 14:02:31 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2008-03-18 14:02:31 (GMT)
commit813779d962866b77b5dd1106d67ff002ec35b354 (patch)
treedc3a4a7016038de03409cfe032d46c65e41126f2 /Source/cmLocalUnixMakefileGenerator3.cxx
parentba18eb7d565c39ddbe794fbe00f24274bc61f91e (diff)
downloadCMake-813779d962866b77b5dd1106d67ff002ec35b354.zip
CMake-813779d962866b77b5dd1106d67ff002ec35b354.tar.gz
CMake-813779d962866b77b5dd1106d67ff002ec35b354.tar.bz2
ENH: try to improve make speed by getting rid of some implicit rules that were still around.
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.cxx')
-rw-r--r--Source/cmLocalUnixMakefileGenerator3.cxx12
1 files changed, 12 insertions, 0 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx
index fc5acc9..af82d4a 100644
--- a/Source/cmLocalUnixMakefileGenerator3.cxx
+++ b/Source/cmLocalUnixMakefileGenerator3.cxx
@@ -738,6 +738,18 @@ cmLocalUnixMakefileGenerator3
makefileStream, "Disable implicit rules so canoncical targets will work.",
".SUFFIXES", no_depends, no_commands, false);
+ // turn off RCS and SCCS automatic stuff from gmake
+ makefileStream << "# Remove some rules from gmake that .SUFFIXES does not remove.\n"
+ << "# This makes gmake faster as it does not try to run implicit rules\n"
+ << "# on targets that never exist.\n"
+ << "%: %,v\n"
+ << "%: RCS/%,v\n"
+ << "%: RCS/%\n"
+ << "%: s.%\n"
+ << "%: %.w\n"
+ << "%.c: %.w %.ch\n"
+ << "%: %.tex\n"
+ << "%: SCCS/s.%\n\n";
// Add a fake suffix to keep HP happy. Must be max 32 chars for SGI make.
std::vector<std::string> depends;
depends.push_back(".hpux_make_needs_suffix_list");