summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalUnixMakefileGenerator.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2002-09-24 13:51:42 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2002-09-24 13:51:42 (GMT)
commitcc0e0d566040a46b612f019893e24281e40484a8 (patch)
tree480ab7a1d550dafc3f8c3ea465f76ae65787cc71 /Source/cmLocalUnixMakefileGenerator.cxx
parentdd0dc9e6bd55e811f69d4be9e2165be6158fe863 (diff)
downloadCMake-cc0e0d566040a46b612f019893e24281e40484a8.zip
CMake-cc0e0d566040a46b612f019893e24281e40484a8.tar.gz
CMake-cc0e0d566040a46b612f019893e24281e40484a8.tar.bz2
one rule per line so borland make does not die
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator.cxx')
-rw-r--r--Source/cmLocalUnixMakefileGenerator.cxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator.cxx b/Source/cmLocalUnixMakefileGenerator.cxx
index 0a9f313..2e6bdb7 100644
--- a/Source/cmLocalUnixMakefileGenerator.cxx
+++ b/Source/cmLocalUnixMakefileGenerator.cxx
@@ -1308,14 +1308,13 @@ bool cmLocalUnixMakefileGenerator::OutputObjectDepends(std::ostream& fout)
{
if(!(*source)->GetDepends().empty())
{
- fout << (*source)->GetSourceName() << m_ObjectFileExtension << " :";
// Iterate through all the dependencies for this source.
for(std::vector<std::string>::const_iterator dep =
(*source)->GetDepends().begin();
dep != (*source)->GetDepends().end(); ++dep)
{
- fout << " \\\n"
- << cmSystemTools::ConvertToOutputPath(dep->c_str());
+ fout << (*source)->GetSourceName() << m_ObjectFileExtension << " : "
+ << cmSystemTools::ConvertToOutputPath(dep->c_str()) << "\n";
ret = true;
}
fout << "\n\n";