ENH: exclude borland make as well
This commit is contained in:
parent
cb512cd513
commit
dec1221f0b
|
@ -738,10 +738,11 @@ cmLocalUnixMakefileGenerator3
|
|||
makefileStream, "Disable implicit rules so canoncical targets will work.",
|
||||
".SUFFIXES", no_depends, no_commands, false);
|
||||
|
||||
if(!this->NMake && !this->WatcomWMake)
|
||||
if(!this->NMake && !this->WatcomWMake && !this->BorlandMakeCurlyHack)
|
||||
{
|
||||
// turn off RCS and SCCS automatic stuff from gmake
|
||||
makefileStream << "# Remove some rules from gmake that .SUFFIXES does not remove.\n"
|
||||
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"
|
||||
|
|
Loading…
Reference in New Issue