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/cmDependsFortran.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/cmDependsFortran.cxx')
-rw-r--r-- | Source/cmDependsFortran.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Source/cmDependsFortran.cxx b/Source/cmDependsFortran.cxx index f06971d..b1d55f3 100644 --- a/Source/cmDependsFortran.cxx +++ b/Source/cmDependsFortran.cxx @@ -451,7 +451,7 @@ cmDependsFortran makeDepends << obj << ": " << this->LocalGenerator->Convert(*i, cmLocalGenerator::HOME_OUTPUT, - cmLocalGenerator::MAKEFILE) + cmLocalGenerator::MAKERULE) << std::endl; internalDepends << " " << *i << std::endl; } @@ -482,7 +482,7 @@ cmDependsFortran proxy += ".mod.proxy"; proxy = this->LocalGenerator->Convert(proxy, cmLocalGenerator::HOME_OUTPUT, - cmLocalGenerator::MAKEFILE); + cmLocalGenerator::MAKERULE); // since we require some things add them to our list of requirements makeDepends << obj << ".requires: " << proxy << std::endl; @@ -499,7 +499,7 @@ cmDependsFortran std::string stampFile = this->LocalGenerator->Convert(required->second, cmLocalGenerator::HOME_OUTPUT, - cmLocalGenerator::MAKEFILE); + cmLocalGenerator::MAKERULE); makeDepends << obj << ": " << stampFile << "\n"; } else @@ -512,7 +512,7 @@ cmDependsFortran module = this->LocalGenerator->Convert(module, cmLocalGenerator::HOME_OUTPUT, - cmLocalGenerator::MAKEFILE); + cmLocalGenerator::MAKERULE); makeDepends << obj << ": " << module << "\n"; } } @@ -528,7 +528,7 @@ cmDependsFortran proxy += ".mod.proxy"; proxy = this->LocalGenerator->Convert(proxy, cmLocalGenerator::HOME_OUTPUT, - cmLocalGenerator::MAKEFILE); + cmLocalGenerator::MAKERULE); makeDepends << proxy << ": " << obj << ".provides" << std::endl; } @@ -584,7 +584,7 @@ cmDependsFortran driver += "/build"; driver = this->LocalGenerator->Convert(driver, cmLocalGenerator::HOME_OUTPUT, - cmLocalGenerator::MAKEFILE); + cmLocalGenerator::MAKERULE); makeDepends << driver << ": " << obj << ".provides.build\n"; } |