diff options
author | Ken Martin <ken.martin@kitware.com> | 2006-05-02 17:31:56 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2006-05-02 17:31:56 (GMT) |
commit | 4394cc80debead78dcb9a1176adf73cbe7064335 (patch) | |
tree | c6068e8d5303789d210d65c94d35f0d7bea7ce65 /Source | |
parent | 96b52c17877e45e73a5a8b810f653eec7d02e498 (diff) | |
download | CMake-4394cc80debead78dcb9a1176adf73cbe7064335.zip CMake-4394cc80debead78dcb9a1176adf73cbe7064335.tar.gz CMake-4394cc80debead78dcb9a1176adf73cbe7064335.tar.bz2 |
BUG: add a fast version for preinstall
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator3.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx index bfbe26b..efd4642 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(); |