summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalUnixMakefileGenerator2.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2005-01-19 12:23:06 (GMT)
committerBrad King <brad.king@kitware.com>2005-01-19 12:23:06 (GMT)
commit47ee00b7a589f7f80afbbcc5e7f65b66cada7d87 (patch)
tree86e6b1d01883ecbd72e5a6bc05fb6cf7ce65d90b /Source/cmLocalUnixMakefileGenerator2.h
parentb94585d45ffd1d26b3df55c60e3a77bad0dc9ada (diff)
downloadCMake-47ee00b7a589f7f80afbbcc5e7f65b66cada7d87.zip
CMake-47ee00b7a589f7f80afbbcc5e7f65b66cada7d87.tar.gz
CMake-47ee00b7a589f7f80afbbcc5e7f65b66cada7d87.tar.bz2
ENH: Removed unquoted version of OBJECTS make variable. Quoted seems to work everywhere. BUG: Fixed AppendAnyDepend to properly identify executable targets. BUG: Used CreateMakeVariable to fix variable name for OBJECTS list when target has a . in its name.
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator2.h')
-rw-r--r--Source/cmLocalUnixMakefileGenerator2.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator2.h b/Source/cmLocalUnixMakefileGenerator2.h
index 5597f66..e852ecb 100644
--- a/Source/cmLocalUnixMakefileGenerator2.h
+++ b/Source/cmLocalUnixMakefileGenerator2.h
@@ -128,7 +128,8 @@ protected:
const char* extraLinkFlags);
void WriteObjectsVariable(std::ostream& ruleFileStream,
const cmTarget& target,
- std::vector<std::string>& objects);
+ const std::vector<std::string>& objects,
+ std::string& variableName);
void WriteTargetDependsRule(std::ostream& ruleFileStream,
const char* ruleFileName,
const cmTarget& target,