summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalUnixMakefileGenerator3.cxx
diff options
context:
space:
mode:
authorAlexander Neundorf <neundorf@kde.org>2007-05-18 17:43:39 (GMT)
committerAlexander Neundorf <neundorf@kde.org>2007-05-18 17:43:39 (GMT)
commitdf8f550029dc35ccbf39daf2733dbe2ca79e3d79 (patch)
treeaf68579b51e98d3ab6ad386ebabb11923b4cf0a9 /Source/cmLocalUnixMakefileGenerator3.cxx
parenta18d286635aed4feac32d64b589b528422e7eb6c (diff)
downloadCMake-df8f550029dc35ccbf39daf2733dbe2ca79e3d79.zip
CMake-df8f550029dc35ccbf39daf2733dbe2ca79e3d79.tar.gz
CMake-df8f550029dc35ccbf39daf2733dbe2ca79e3d79.tar.bz2
ENH: add install/strip target for makefile generators if strip was found
Alex
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.cxx')
-rw-r--r--Source/cmLocalUnixMakefileGenerator3.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx
index 425997b..252314e 100644
--- a/Source/cmLocalUnixMakefileGenerator3.cxx
+++ b/Source/cmLocalUnixMakefileGenerator3.cxx
@@ -1456,7 +1456,9 @@ void cmLocalUnixMakefileGenerator3
// Provide a "/fast" version of the target.
depends.clear();
- if((targetName == "install") || (targetName == "install_local"))
+ if((targetName == "install")
+ || (targetName == "install_local")
+ || (targetName == "install_strip"))
{
// Provide a fast install target that does not depend on all
// but has the same command.