summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalUnixMakefileGenerator3.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2006-08-09 15:43:35 (GMT)
committerBrad King <brad.king@kitware.com>2006-08-09 15:43:35 (GMT)
commitdd37d0652f6e0d0355e5d81011ae2a97a045d2eb (patch)
tree0944685eb1459ae2302f563cff8fa4faae3eb0c1 /Source/cmLocalUnixMakefileGenerator3.cxx
parentfe3d8078c5dc9b1bd762a0d0f51966bc78a14a79 (diff)
downloadCMake-dd37d0652f6e0d0355e5d81011ae2a97a045d2eb.zip
CMake-dd37d0652f6e0d0355e5d81011ae2a97a045d2eb.tar.gz
CMake-dd37d0652f6e0d0355e5d81011ae2a97a045d2eb.tar.bz2
ENH: Changed preprocessed source extension to .i and assembly extension to .s for more portability.
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.cxx')
-rw-r--r--Source/cmLocalUnixMakefileGenerator3.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx
index 94cbdf1..0640e0d 100644
--- a/Source/cmLocalUnixMakefileGenerator3.cxx
+++ b/Source/cmLocalUnixMakefileGenerator3.cxx
@@ -306,13 +306,13 @@ void cmLocalUnixMakefileGenerator3::WriteLocalMakefile()
{
this->WriteObjectConvenienceRule(
ruleFileStream, "target to preprocess a source file",
- (base + ".E").c_str(), lo->second);
+ (base + ".i").c_str(), lo->second);
}
if(do_assembly_rules)
{
this->WriteObjectConvenienceRule(
ruleFileStream, "target to generate assembly for a file",
- (base + ".S").c_str(), lo->second);
+ (base + ".s").c_str(), lo->second);
}
}
}