summaryrefslogtreecommitdiff
path: root/Source/cmUnixMakefileGenerator.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2001-03-09 10:53:32 -0500
committerBrad King <brad.king@kitware.com>2001-03-09 10:53:32 -0500
commit5fc83004761394476f22d38fb75ed69bd6d7b16d (patch)
tree98765948d265b50366e992f1e40883fb0c7a5381 /Source/cmUnixMakefileGenerator.h
parent60507258c786eb7b04f9248825659b47dc617c63 (diff)
downloadcmake-5fc83004761394476f22d38fb75ed69bd6d7b16d.tar.gz
ENH: Added utility dependency support. Now a project can depend on other executables as well as link libraries.
Diffstat (limited to 'Source/cmUnixMakefileGenerator.h')
-rw-r--r--Source/cmUnixMakefileGenerator.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmUnixMakefileGenerator.h b/Source/cmUnixMakefileGenerator.h
index 0a5b17a93b..5a3925dab1 100644
--- a/Source/cmUnixMakefileGenerator.h
+++ b/Source/cmUnixMakefileGenerator.h
@@ -38,7 +38,7 @@ public:
* in the makefile. These would have been generated
* by the class cmMakeDepend.
*/
- void OutputDepends(std::ostream&);
+ void OutputObjectDepends(std::ostream&);
protected:
void OutputMakefile(const char* file);
@@ -48,7 +48,7 @@ protected:
void OutputExecutableRules(std::ostream&);
void OutputSubDirectoryRules(std::ostream&);
void OutputDependInformation(std::ostream&);
- void OutputDependLibraries(std::ostream&);
+ void OutputDependencies(std::ostream&);
void OutputCustomRules(std::ostream&);
};