summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalUnixMakefileGenerator3.h
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2005-05-17 18:39:18 (GMT)
committerKen Martin <ken.martin@kitware.com>2005-05-17 18:39:18 (GMT)
commit8575d2369d4fe95cc51d992b3747034693f32a7d (patch)
tree4d3537a3a77c46868e16a7923b715ab14bfa5b45 /Source/cmLocalUnixMakefileGenerator3.h
parent185b6f0b02808a807654e5d08b0300361b36e77c (diff)
downloadCMake-8575d2369d4fe95cc51d992b3747034693f32a7d.zip
CMake-8575d2369d4fe95cc51d992b3747034693f32a7d.tar.gz
CMake-8575d2369d4fe95cc51d992b3747034693f32a7d.tar.bz2
COMP: some warning fixes and cleanup
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.h')
-rw-r--r--Source/cmLocalUnixMakefileGenerator3.h21
1 files changed, 7 insertions, 14 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.h b/Source/cmLocalUnixMakefileGenerator3.h
index e6ec5fc..6dbbea8 100644
--- a/Source/cmLocalUnixMakefileGenerator3.h
+++ b/Source/cmLocalUnixMakefileGenerator3.h
@@ -181,8 +181,7 @@ protected:
// create the rule files for an object
void WriteObjectRuleFiles(const cmTarget& target,
const cmSourceFile& source,
- std::vector<std::string>& objects,
- std::vector<std::string>& provides_requires);
+ std::vector<std::string>& objects);
// write the build rule for an object
void WriteObjectBuildFile(std::string &obj,
@@ -190,8 +189,7 @@ protected:
const cmTarget& target,
const cmSourceFile& source,
std::vector<std::string>& depends,
- std::string &depMakeFile,
- std::vector<std::string>& provides_requires);
+ std::string &depMakeFile);
// write the depend.make file for an object
void WriteObjectDependRules(std::ostream& ruleFileStream,
@@ -221,28 +219,24 @@ protected:
const char* ruleFileName,
const cmTarget& target,
const std::vector<std::string>& objects,
- const std::vector<std::string>& external_objects,
- const std::vector<std::string>& provides_requires);
+ const std::vector<std::string>& external_objects);
void WriteSharedLibraryRule(std::ostream& ruleFileStream,
const char* ruleFileName,
const cmTarget& target,
const std::vector<std::string>& objects,
- const std::vector<std::string>& external_objects,
- const std::vector<std::string>& provides_requires);
+ const std::vector<std::string>& external_objects);
void WriteModuleLibraryRule(std::ostream& ruleFileStream,
const char* ruleFileName,
const cmTarget& target,
const std::vector<std::string>& objects,
- const std::vector<std::string>& external_objects,
- const std::vector<std::string>& provides_requires);
+ const std::vector<std::string>& external_objects);
// the main code for writing the Executable target rules
void WriteExecutableRule(std::ostream& ruleFileStream,
const char* ruleFileName,
const cmTarget& target,
const std::vector<std::string>& objects,
- const std::vector<std::string>& external_objects,
- const std::vector<std::string>& provides_requires);
+ const std::vector<std::string>& external_objects);
// the main method for writing library rules
void WriteLibraryRule(std::ostream& ruleFileStream,
@@ -251,8 +245,7 @@ protected:
const std::vector<std::string>& objects,
const std::vector<std::string>& external_objects,
const char* linkRuleVar,
- const char* extraLinkFlags,
- const std::vector<std::string>& provides_requires);
+ const char* extraLinkFlags);
void WriteLocalMakefile();