summaryrefslogtreecommitdiffstats
path: root/Source/cmUnixMakefileGenerator.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2001-08-29 14:46:59 (GMT)
committerBrad King <brad.king@kitware.com>2001-08-29 14:46:59 (GMT)
commit82996a636eb734b101b39c4245fb4530bf6141b4 (patch)
tree0369ff0cc6811082b14669581ee4603475a5bc7e /Source/cmUnixMakefileGenerator.h
parent94337f8015c81a3f819d4d345f291ef46c7cd178 (diff)
downloadCMake-82996a636eb734b101b39c4245fb4530bf6141b4.zip
CMake-82996a636eb734b101b39c4245fb4530bf6141b4.tar.gz
CMake-82996a636eb734b101b39c4245fb4530bf6141b4.tar.bz2
ENH: Proper dependencies between shared libraries now exist in the generated makefiles. If a shared library links to another, the other will be built before the link is attempted.
Diffstat (limited to 'Source/cmUnixMakefileGenerator.h')
-rw-r--r--Source/cmUnixMakefileGenerator.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmUnixMakefileGenerator.h b/Source/cmUnixMakefileGenerator.h
index db3b450..e0a2b15 100644
--- a/Source/cmUnixMakefileGenerator.h
+++ b/Source/cmUnixMakefileGenerator.h
@@ -101,7 +101,8 @@ private:
void OutputTargets(std::ostream&);
void OutputSubDirectoryRules(std::ostream&);
void OutputDependInformation(std::ostream&);
- void OutputDependencies(std::ostream&);
+ void OutputDependLibs(std::ostream&);
+ void OutputLibDepend(std::ostream&, const char*);
void OutputCustomRules(std::ostream&);
void OutputMakeVariables(std::ostream&);
void OutputMakeRules(std::ostream&);