summaryrefslogtreecommitdiff
path: root/Source/cmLocalUnixMakefileGenerator3.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2006-05-02 13:31:56 -0400
committerKen Martin <ken.martin@kitware.com>2006-05-02 13:31:56 -0400
commit4394cc80debead78dcb9a1176adf73cbe7064335 (patch)
treec6068e8d5303789d210d65c94d35f0d7bea7ce65 /Source/cmLocalUnixMakefileGenerator3.cxx
parent96b52c17877e45e73a5a8b810f653eec7d02e498 (diff)
downloadcmake-4394cc80debead78dcb9a1176adf73cbe7064335.tar.gz
BUG: add a fast version for preinstall
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.cxx')
-rw-r--r--Source/cmLocalUnixMakefileGenerator3.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx
index bfbe26b44a..efd46421fc 100644
--- a/Source/cmLocalUnixMakefileGenerator3.cxx
+++ b/Source/cmLocalUnixMakefileGenerator3.cxx
@@ -1449,6 +1449,10 @@ void cmLocalUnixMakefileGenerator3
this->Makefile->GetStartOutputDirectory());
this->WriteMakeRule(ruleFileStream, "Prepare targets for installation.",
"preinstall", depends, commands, true);
+ commands.clear();
+ depends.push_back("preinstall");
+ this->WriteMakeRule(ruleFileStream, "Prepare targets for installation.",
+ "preinstall/fast", depends, commands, true);
// write the depend rule, really a recompute depends rule
depends.clear();