Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Gvozdev2013-07-05 17:33:57 +0000
committerAndrew Gvozdev2013-07-05 17:49:48 +0000
commitcb5b5c955aa30e45cb7a6753ab56b4ecbc83109e (patch)
tree57890ef91c5894d276adcb5c9430ef1eabeb5f57 /build/org.eclipse.cdt.make.core/src/org/eclipse/cdt/make/internal
parent01bfa48d40bbb3d2b2f7d658afee8c1379788d00 (diff)
downloadorg.eclipse.cdt-cb5b5c955aa30e45cb7a6753ab56b4ecbc83109e.tar.gz
org.eclipse.cdt-cb5b5c955aa30e45cb7a6753ab56b4ecbc83109e.tar.xz
org.eclipse.cdt-cb5b5c955aa30e45cb7a6753ab56b4ecbc83109e.zip
Bug 412346: Makefile Editor: F3 navigation to user defined functions from $(call user-fun)
Diffstat (limited to 'build/org.eclipse.cdt.make.core/src/org/eclipse/cdt/make/internal')
-rw-r--r--build/org.eclipse.cdt.make.core/src/org/eclipse/cdt/make/internal/core/makefile/gnu/GNUMakefileConstants.java44
1 files changed, 23 insertions, 21 deletions
diff --git a/build/org.eclipse.cdt.make.core/src/org/eclipse/cdt/make/internal/core/makefile/gnu/GNUMakefileConstants.java b/build/org.eclipse.cdt.make.core/src/org/eclipse/cdt/make/internal/core/makefile/gnu/GNUMakefileConstants.java
index cb50a7e8b4c..b3b7b78edb6 100644
--- a/build/org.eclipse.cdt.make.core/src/org/eclipse/cdt/make/internal/core/makefile/gnu/GNUMakefileConstants.java
+++ b/build/org.eclipse.cdt.make.core/src/org/eclipse/cdt/make/internal/core/makefile/gnu/GNUMakefileConstants.java
@@ -14,29 +14,31 @@ import org.eclipse.cdt.make.internal.core.makefile.MakeFileConstants;
public class GNUMakefileConstants extends MakeFileConstants {
- static final String CONDITIONAL_ELSE = "else"; //$NON-NLS-1$
- static final String CONDITIONAL_IFNEQ = "ifneq"; //$NON-NLS-1$
- static final String CONDITIONAL_IFNDEF = "ifndef"; //$NON-NLS-1$
- static final String CONDITIONAL_IFEQ = "ifeq"; //$NON-NLS-1$
- static final String CONDITIONAL_IFDEF = "ifdef"; //$NON-NLS-1$
+ public static final String CONDITIONAL_ELSE = "else"; //$NON-NLS-1$
+ public static final String CONDITIONAL_IFNEQ = "ifneq"; //$NON-NLS-1$
+ public static final String CONDITIONAL_IFNDEF = "ifndef"; //$NON-NLS-1$
+ public static final String CONDITIONAL_IFEQ = "ifeq"; //$NON-NLS-1$
+ public static final String CONDITIONAL_IFDEF = "ifdef"; //$NON-NLS-1$
- static final String TERMINAL_ENDEF = "endef"; //$NON-NLS-1$
- static final String TERMINAL_ENDIF = "endif"; //$NON-NLS-1$
+ public static final String TERMINAL_ENDEF = "endef"; //$NON-NLS-1$
+ public static final String TERMINAL_ENDIF = "endif"; //$NON-NLS-1$
- static final String DIRECTIVE_VPATH = "vpath"; //$NON-NLS-1$
- static final String DIRECTIVE_UNEXPORT = "unexport"; //$NON-NLS-1$
+ public static final String DIRECTIVE_VPATH = "vpath"; //$NON-NLS-1$
+ public static final String DIRECTIVE_UNEXPORT = "unexport"; //$NON-NLS-1$
- static final String VARIABLE_DEFINE = "define"; //$NON-NLS-1$
- static final String VARIABLE_EXPORT = "export"; //$NON-NLS-1$
- static final String VARIABLE_OVERRIDE = "override"; //$NON-NLS-1$
-
- static final String DIRECTIVE_INCLUDE = "include"; //$NON-NLS-1$
+ public static final String VARIABLE_DEFINE = "define"; //$NON-NLS-1$
+ public static final String VARIABLE_EXPORT = "export"; //$NON-NLS-1$
+ public static final String VARIABLE_OVERRIDE = "override"; //$NON-NLS-1$
+
+ public static final String FUNCTION_CALL = "call"; //$NON-NLS-1$
+
+ public static final String DIRECTIVE_INCLUDE = "include"; //$NON-NLS-1$
- static final String RULE_DELETE_ON_ERROR = ".DELETE_ON_ERROR"; //$NON-NLS-1$
- static final String RULE_PHONY = ".PHONY"; //$NON-NLS-1$
- static final String RULE_SECONDARY = ".SECONDARY"; //$NON-NLS-1$
- static final String RULE_LOW_RESOLUTION_TIME = ".LOW_RESOLUTION_TIME"; //$NON-NLS-1$
- static final String RULE_NOT_PARALLEL = ".NOTPARALLEL"; //$NON-NLS-1$
- static final String RULE_EXPORT_ALL_VARIABLES = ".EXPORT_ALL_VARIABLES"; //$NON-NLS-1$
- static final String RULE_INTERMEDIATE = ".INTERMEDIATE"; //$NON-NLS-1$
+ public static final String RULE_DELETE_ON_ERROR = ".DELETE_ON_ERROR"; //$NON-NLS-1$
+ public static final String RULE_PHONY = ".PHONY"; //$NON-NLS-1$
+ public static final String RULE_SECONDARY = ".SECONDARY"; //$NON-NLS-1$
+ public static final String RULE_LOW_RESOLUTION_TIME = ".LOW_RESOLUTION_TIME"; //$NON-NLS-1$
+ public static final String RULE_NOT_PARALLEL = ".NOTPARALLEL"; //$NON-NLS-1$
+ public static final String RULE_EXPORT_ALL_VARIABLES = ".EXPORT_ALL_VARIABLES"; //$NON-NLS-1$
+ public static final String RULE_INTERMEDIATE = ".INTERMEDIATE"; //$NON-NLS-1$
}

Back to the top