diff options
author | Brad King <brad.king@kitware.com> | 2001-08-29 14:46:59 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2001-08-29 14:46:59 (GMT) |
commit | 82996a636eb734b101b39c4245fb4530bf6141b4 (patch) | |
tree | 0369ff0cc6811082b14669581ee4603475a5bc7e /Source/cmUnixMakefileGenerator.h | |
parent | 94337f8015c81a3f819d4d345f291ef46c7cd178 (diff) | |
download | CMake-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.h | 3 |
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&); |