BUG: Work-around borland make bug that drops a rule completely if it has no dependencies or commands.

This commit is contained in:
Brad King
2006-02-16 18:50:16 -05:00
parent 53821a505e
commit f09778c4a5
3 changed files with 14 additions and 0 deletions
+6
View File
@@ -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