diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2004-04-23 16:52:48 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2004-04-23 16:52:48 (GMT) |
commit | 8b0b749a11138107189f9264494f828778c0cf8b (patch) | |
tree | 08419721f7f8169515c3ebf1bb7cae6179c935e8 /Source/cmLocalUnixMakefileGenerator.h | |
parent | eae3d4cf0679212099204db7dc40514a28b1c493 (diff) | |
download | CMake-8b0b749a11138107189f9264494f828778c0cf8b.zip CMake-8b0b749a11138107189f9264494f828778c0cf8b.tar.gz CMake-8b0b749a11138107189f9264494f828778c0cf8b.tar.bz2 |
ENH: add SUBDIR PREORDER and fix clean for non-relative paths
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator.h')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator.h b/Source/cmLocalUnixMakefileGenerator.h index 713d1b5..c5a8a73 100644 --- a/Source/cmLocalUnixMakefileGenerator.h +++ b/Source/cmLocalUnixMakefileGenerator.h @@ -151,7 +151,7 @@ protected: const char* target1, const char* target2, bool silent = false); - + ///! order == 0, then all subdirs are output, 1 = post order, 2 = preorder virtual void OutputSubDirectoryVars(std::ostream& fout, const char* var, const char* target, @@ -160,7 +160,7 @@ protected: const char* depend, const std::vector<std::pair<cmStdString, bool> >& SubDirectories, - bool silent = false); + bool silent = false, int order = 0); virtual void OutputMakeRule(std::ostream&, const char* comment, |