summaryrefslogtreecommitdiffstats
path: root/Source/cmBorlandMakefileGenerator.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmBorlandMakefileGenerator.cxx')
-rw-r--r--Source/cmBorlandMakefileGenerator.cxx6
1 files changed, 5 insertions, 1 deletions
diff --git a/Source/cmBorlandMakefileGenerator.cxx b/Source/cmBorlandMakefileGenerator.cxx
index ce70055..c3a8ac9 100644
--- a/Source/cmBorlandMakefileGenerator.cxx
+++ b/Source/cmBorlandMakefileGenerator.cxx
@@ -178,7 +178,11 @@ OutputBuildObjectFromSource(std::ostream& fout,
const cmSourceFile& source,
const char* extraCompileFlags,
bool shared)
-{
+{
+ // Header files shouldn't have build rules.
+ if(source.IsAHeaderFileOnly())
+ return;
+
std::string comment = "Build ";
std::string objectFile = std::string(shortName) +
this->GetOutputExtension(source.GetSourceExtension().c_str());