summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalUnixMakefileGenerator3.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2008-04-10 15:55:49 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2008-04-10 15:55:49 (GMT)
commitd1281f5cbcdac0149226542879a9a0d15cdf4897 (patch)
tree5cc9c7ce9c8853ead8433cd51731110cb600a535 /Source/cmLocalUnixMakefileGenerator3.cxx
parent44ce8ea36241f9b13cd458a92667b91bfa3a89ee (diff)
downloadCMake-d1281f5cbcdac0149226542879a9a0d15cdf4897.zip
CMake-d1281f5cbcdac0149226542879a9a0d15cdf4897.tar.gz
CMake-d1281f5cbcdac0149226542879a9a0d15cdf4897.tar.bz2
BUG: the sun make goes into some odd n squared thing with this sccs and rcs stuff for gmake, so I am removing them.
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.cxx')
-rw-r--r--Source/cmLocalUnixMakefileGenerator3.cxx12
1 files changed, 1 insertions, 11 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx
index 142ccfc..14201a4 100644
--- a/Source/cmLocalUnixMakefileGenerator3.cxx
+++ b/Source/cmLocalUnixMakefileGenerator3.cxx
@@ -746,17 +746,7 @@ cmLocalUnixMakefileGenerator3
// 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"
- << "SUFFIXES =\n"
- << "%: %,v\n"
- << "%: RCS/%,v\n"
- << "%: RCS/%\n"
- << "%: s.%\n"
- << "%: %.w\n"
- << "%.c: %.w %.ch\n"
- << "%: %.tex\n"
- << "%: SCCS/s.%\n\n";
+ << "SUFFIXES =\n\n";
}
// Add a fake suffix to keep HP happy. Must be max 32 chars for SGI make.
std::vector<std::string> depends;