Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'build/org.eclipse.cdt.make.core/src/org/eclipse/cdt/make/internal/core/makefile/gnu/GNUMakefileConstants.java')
-rw-r--r--build/org.eclipse.cdt.make.core/src/org/eclipse/cdt/make/internal/core/makefile/gnu/GNUMakefileConstants.java42
1 files changed, 0 insertions, 42 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
deleted file mode 100644
index 4accb4aaa59..00000000000
--- a/build/org.eclipse.cdt.make.core/src/org/eclipse/cdt/make/internal/core/makefile/gnu/GNUMakefileConstants.java
+++ /dev/null
@@ -1,42 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2000, 2004 QNX Software Systems and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Common Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/cpl-v10.html
- *
- * Contributors:
- * QNX Software Systems - Initial API and implementation
- *******************************************************************************/
-package org.eclipse.cdt.make.internal.core.makefile.gnu;
-
-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$
-
- static final String TERMINAL_ENDEF = "endef"; //$NON-NLS-1$
- 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$
-
- 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