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/cmGlobalUnixMakefileGenerator3.h | |
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/cmGlobalUnixMakefileGenerator3.h')
-rw-r--r-- | Source/cmGlobalUnixMakefileGenerator3.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmGlobalUnixMakefileGenerator3.h b/Source/cmGlobalUnixMakefileGenerator3.h index a006808..9e78f7a 100644 --- a/Source/cmGlobalUnixMakefileGenerator3.h +++ b/Source/cmGlobalUnixMakefileGenerator3.h @@ -159,6 +159,7 @@ protected: // Setup target names virtual const char* GetAllTargetName() { return "all"; } virtual const char* GetInstallTargetName() { return "install"; } + virtual const char* GetInstallLocalTargetName() { return "install/local"; } virtual const char* GetPreinstallTargetName() { return "preinstall"; } virtual const char* GetTestTargetName() { return "test"; } virtual const char* GetPackageTargetName() { return "package"; } |