diff options
author | Brad King <brad.king@kitware.com> | 2014-07-22 16:27:57 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-07-22 16:27:57 (GMT) |
commit | 9f92a78be21a7f126f1776d481cc4bd2acdf4a1b (patch) | |
tree | 9616fafa7e0ecddae8d88283cc91c5deff4d58f5 /Source/cmLocalUnixMakefileGenerator3.cxx | |
parent | 8e018ae44e80425ee77db675fb452b9e0eb9730c (diff) | |
download | CMake-9f92a78be21a7f126f1776d481cc4bd2acdf4a1b.zip CMake-9f92a78be21a7f126f1776d481cc4bd2acdf4a1b.tar.gz CMake-9f92a78be21a7f126f1776d481cc4bd2acdf4a1b.tar.bz2 |
cmLocalGenerator: Rename 'MAKEFILE' to 'MAKERULE'
Rename the internal enumeration value for converting paths destined
for use in Makefile rule syntax.
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.cxx')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator3.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx index 94e45e5..23513fa 100644 --- a/Source/cmLocalUnixMakefileGenerator3.cxx +++ b/Source/cmLocalUnixMakefileGenerator3.cxx @@ -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"; } } |