cmLocalGenerator: Rename 'MAKEFILE' to 'MAKERULE'

Rename the internal enumeration value for converting paths destined
for use in Makefile rule syntax.
This commit is contained in:
Brad King
2014-07-22 12:27:57 -04:00
parent 8e018ae44e
commit 9f92a78be2
9 changed files with 18 additions and 18 deletions

View File

@@ -630,7 +630,7 @@ cmLocalUnixMakefileGenerator3
// Construct the left hand side of the rule.
replace = target;
std::string tgt = this->Convert(replace,HOME_OUTPUT,MAKEFILE);
std::string tgt = this->Convert(replace,HOME_OUTPUT,MAKERULE);
const char* space = "";
if(tgt.size() == 1)
{
@@ -663,7 +663,7 @@ cmLocalUnixMakefileGenerator3
dep != depends.end(); ++dep)
{
replace = *dep;
replace = this->Convert(replace,HOME_OUTPUT,MAKEFILE);
replace = this->Convert(replace,HOME_OUTPUT,MAKERULE);
os << cmMakeSafe(tgt) << space << ": " << cmMakeSafe(replace) << "\n";
}
}