Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'autotools/org.eclipse.linuxtools.cdt.autotools.ui/src/org/eclipse/linuxtools/internal/cdt/autotools/ui/editors/automake/GNUMakefileConstants.java')
-rw-r--r--autotools/org.eclipse.linuxtools.cdt.autotools.ui/src/org/eclipse/linuxtools/internal/cdt/autotools/ui/editors/automake/GNUMakefileConstants.java44
1 files changed, 44 insertions, 0 deletions
diff --git a/autotools/org.eclipse.linuxtools.cdt.autotools.ui/src/org/eclipse/linuxtools/internal/cdt/autotools/ui/editors/automake/GNUMakefileConstants.java b/autotools/org.eclipse.linuxtools.cdt.autotools.ui/src/org/eclipse/linuxtools/internal/cdt/autotools/ui/editors/automake/GNUMakefileConstants.java
new file mode 100644
index 0000000000..a9ccdfb231
--- /dev/null
+++ b/autotools/org.eclipse.linuxtools.cdt.autotools.ui/src/org/eclipse/linuxtools/internal/cdt/autotools/ui/editors/automake/GNUMakefileConstants.java
@@ -0,0 +1,44 @@
+/*******************************************************************************
+ * Copyright (c) 2000, 2006, 2007 QNX Software Systems and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * QNX Software Systems - Initial API and implementation
+ * Red Hat Inc. - modified for Automake editor usage
+ *******************************************************************************/
+package org.eclipse.linuxtools.internal.cdt.autotools.ui.editors.automake;
+
+
+public class GNUMakefileConstants extends MakeFileConstants {
+ static final String CONDITIONAL_ELSE = "else"; //$NON-NLS-1$
+ static final String CONDITIONAL_IF = "if"; //$NON-NLS-1$
+ static final String AT_CONDITIONAL_IF = "@if"; //$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$
+
+ static final String TERMINAL_ENDEF = "endef"; //$NON-NLS-1$
+ static final String TERMINAL_ENDIF = "endif"; //$NON-NLS-1$
+ static final String AT_TERMINAL_ENDIF = "@endif"; //$NON-NLS-1$
+
+ static final String DIRECTIVE_VPATH = "vpath"; //$NON-NLS-1$
+ 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$
+
+ 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$
+}

Back to the top