diff options
author | Alexander Neundorf <neundorf@kde.org> | 2007-11-25 12:34:53 (GMT) |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2007-11-25 12:34:53 (GMT) |
commit | 4ed64cf73a389ff139649bce37e4eefae93329cd (patch) | |
tree | 6e83e5dca92110eec984908a5f61361ab3c881d9 /Source/cmGlobalUnixMakefileGenerator3.h | |
parent | 153810cd829656383a8edc82adecf7463800d419 (diff) | |
download | CMake-4ed64cf73a389ff139649bce37e4eefae93329cd.zip CMake-4ed64cf73a389ff139649bce37e4eefae93329cd.tar.gz CMake-4ed64cf73a389ff139649bce37e4eefae93329cd.tar.bz2 |
ENH: add GetCleanTargetName() which returns "clean" for makefiles, so it can
be used by the eclipse generator
Alex
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 0ca930f..6f10e71 100644 --- a/Source/cmGlobalUnixMakefileGenerator3.h +++ b/Source/cmGlobalUnixMakefileGenerator3.h @@ -177,6 +177,7 @@ protected: virtual const char* GetPackageSourceTargetName(){ return "package_source"; } virtual const char* GetEditCacheTargetName() { return "edit_cache"; } virtual const char* GetRebuildCacheTargetName() { return "rebuild_cache"; } + virtual const char* GetCleanTargetName() { return "clean"; } // Some make programs (Borland) do not keep a rule if there are no // dependencies or commands. This is a problem for creating rules |