summaryrefslogtreecommitdiffstats
path: root/Source/cmDependsFortran.cxx
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2005-05-25 15:19:16 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2005-05-25 15:19:16 (GMT)
commit0e194cab8493026b036f492f26234878be9a12ed (patch)
treeff27cbb8de22ffac49baf037e93d370499db8b94 /Source/cmDependsFortran.cxx
parent193747256b86eee84028147c16a8b613636c5545 (diff)
downloadCMake-0e194cab8493026b036f492f26234878be9a12ed.zip
CMake-0e194cab8493026b036f492f26234878be9a12ed.tar.gz
CMake-0e194cab8493026b036f492f26234878be9a12ed.tar.bz2
ENH: new fortran depends to match new Unix Gen
Diffstat (limited to 'Source/cmDependsFortran.cxx')
-rw-r--r--Source/cmDependsFortran.cxx17
1 files changed, 11 insertions, 6 deletions
diff --git a/Source/cmDependsFortran.cxx b/Source/cmDependsFortran.cxx
index c818ec6..4a9ac10 100644
--- a/Source/cmDependsFortran.cxx
+++ b/Source/cmDependsFortran.cxx
@@ -140,12 +140,14 @@ bool cmDependsFortran::WriteDependencies(std::ostream& os)
// Require only modules not provided in the same source.
if(parser.Provides.find(*i) == parser.Provides.end())
{
+ // since we require some things add them to our list of requirements
+ os << m_TargetFile.c_str() << ".requires: " << i->c_str() << ".mod.proxy"
+ << std::endl;
+#if 0
// Always use lower case for the mod stamp file name.
std::string m = cmSystemTools::LowerCase(*i);
os << m_TargetFile.c_str() << ": " << m.c_str() << ".mod.stamp"
<< std::endl;
- os << m_TargetFile.c_str() << ".requires: " << i->c_str() << ".mod.proxy"
- << std::endl;
os << i->c_str() << ".mod.proxy:" << std::endl;
std::string stampName = m_Directory;
stampName += "/";
@@ -157,6 +159,7 @@ bool cmDependsFortran::WriteDependencies(std::ostream& os)
stamp << "# Dummy stamp file in case nothing provides it."
<< std::endl;
}
+#endif
}
}
@@ -165,13 +168,13 @@ bool cmDependsFortran::WriteDependencies(std::ostream& os)
i != parser.Provides.end(); ++i)
{
os << i->c_str() << ".mod.proxy: " << m_TargetFile.c_str()
- << ".requires" << std::endl;
+ << ".provides" << std::endl;
}
-
+
// If any modules are provided then they must be converted to stamp files.
if(!parser.Provides.empty())
{
- os << m_TargetFile.c_str() << ".provides:\n";
+ os << m_TargetFile.c_str() << ".provides.build:\n";
for(std::set<cmStdString>::const_iterator i = parser.Provides.begin();
i != parser.Provides.end(); ++i)
{
@@ -182,9 +185,10 @@ bool cmDependsFortran::WriteDependencies(std::ostream& os)
os << "\t$(CMAKE_COMMAND) -E cmake_copy_f90_mod "
<< i->c_str() << " " << m.c_str() << ".mod.stamp\n";
}
- os << "\t@touch " << m_TargetFile.c_str() << ".provides\n";
+ os << "\t@touch " << m_TargetFile.c_str() << ".provides.build\n";
}
+#if 0
// if it provides something then connect the requires rule to the build rule
if(!parser.Provides.empty())
{
@@ -193,6 +197,7 @@ bool cmDependsFortran::WriteDependencies(std::ostream& os)
// provide empty build rule for old gen for now, TODO remove later
os << m_TargetFile.c_str() << ".requires.build:" << std::endl;
}
+#endif
/*
// TODO: