mirror of
https://github.com/Kitware/CMake.git
synced 2026-03-01 04:08:46 -06:00
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:
@@ -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";
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user