diff options
author | Brad King <brad.king@kitware.com> | 2006-08-29 14:03:47 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-08-29 14:03:47 (GMT) |
commit | eef327b944a590373faa8df4eca7dbf0387c6f5c (patch) | |
tree | 736c79794fbc57142854c6855bcb6da92b4bd281 /Source/cmLocalUnixMakefileGenerator3.cxx | |
parent | 8a761b8f96942fe586bb932fbe840a4679a35705 (diff) | |
download | CMake-eef327b944a590373faa8df4eca7dbf0387c6f5c.zip CMake-eef327b944a590373faa8df4eca7dbf0387c6f5c.tar.gz CMake-eef327b944a590373faa8df4eca7dbf0387c6f5c.tar.bz2 |
ENH: Adding install/local global target for Makefile generators. This runs installation only in the current directory and not subdirectories.
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.cxx')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator3.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx index c082625..dd706a4 100644 --- a/Source/cmLocalUnixMakefileGenerator3.cxx +++ b/Source/cmLocalUnixMakefileGenerator3.cxx @@ -1481,7 +1481,7 @@ void cmLocalUnixMakefileGenerator3 // Provide a "/fast" version of the target. depends.clear(); - if(targetName == "install") + if((targetName == "install") || (targetName == "install_local")) { // Provide a fast install target that does not depend on all // but has the same command. |