diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2001-12-28 22:00:05 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2001-12-28 22:00:05 (GMT) |
commit | e4843d83a4a7523f4f2c0c5912fb4b01f0b74830 (patch) | |
tree | 4a1828ff714a7488281ca703f92114d9a3ae0338 /Source/cmUnixMakefileGenerator.h | |
parent | a9cdcba66063fcc00e9687ced74a5fb9dfdaaf03 (diff) | |
download | CMake-e4843d83a4a7523f4f2c0c5912fb4b01f0b74830.zip CMake-e4843d83a4a7523f4f2c0c5912fb4b01f0b74830.tar.gz CMake-e4843d83a4a7523f4f2c0c5912fb4b01f0b74830.tar.bz2 |
ENH: remove the rule to run make depend from the top with each change in any cmakelist file. Instead, run make depend in the current directory if a source file changes, or if a .h file changes or is removed
Diffstat (limited to 'Source/cmUnixMakefileGenerator.h')
-rw-r--r-- | Source/cmUnixMakefileGenerator.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/Source/cmUnixMakefileGenerator.h b/Source/cmUnixMakefileGenerator.h index e7f771e..f30c535 100644 --- a/Source/cmUnixMakefileGenerator.h +++ b/Source/cmUnixMakefileGenerator.h @@ -91,7 +91,14 @@ public: * in the makefile. These would have been generated * by the class cmMakeDepend. */ - virtual void OutputObjectDepends(std::ostream&); + virtual bool OutputObjectDepends(std::ostream&); + + /** + * Output the check depend information for all the classes + * in the makefile. These would have been generated + * by the class cmMakeDepend. + */ + virtual void OutputCheckDepends(std::ostream&); /** * Try to determine system infomation such as shared library |