diff options
author | Brad King <brad.king@kitware.com> | 2006-02-16 23:50:16 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-02-16 23:50:16 (GMT) |
commit | f09778c4a5484d8d26cecdf31c02e44bdb881f9d (patch) | |
tree | 5b51055c7c6b6305aa78c46483ac19c624d697f0 /Source/cmGlobalUnixMakefileGenerator3.h | |
parent | 53821a505ee7b9baee2337c0a93e176d64304896 (diff) | |
download | CMake-f09778c4a5484d8d26cecdf31c02e44bdb881f9d.zip CMake-f09778c4a5484d8d26cecdf31c02e44bdb881f9d.tar.gz CMake-f09778c4a5484d8d26cecdf31c02e44bdb881f9d.tar.bz2 |
BUG: Work-around borland make bug that drops a rule completely if it has no dependencies or commands.
Diffstat (limited to 'Source/cmGlobalUnixMakefileGenerator3.h')
-rw-r--r-- | Source/cmGlobalUnixMakefileGenerator3.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/cmGlobalUnixMakefileGenerator3.h b/Source/cmGlobalUnixMakefileGenerator3.h index 66e4c68..d2e9d0f 100644 --- a/Source/cmGlobalUnixMakefileGenerator3.h +++ b/Source/cmGlobalUnixMakefileGenerator3.h @@ -119,6 +119,12 @@ protected: // does this generator need a requires step for any of its targets bool NeedRequiresStep(cmLocalUnixMakefileGenerator3 *lg, const char *); + // Some make programs (Borland) do not keep a rule if there are no + // dependencies or commands. This is a problem for creating rules + // that might not do anything but might have other dependencies + // added later. If non-empty this variable holds a fake dependency + // that can be added. + std::string m_EmptyRuleHackDepends; }; #endif |