/******************************************************************************* * Copyright (c) 2000, 2006 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 *******************************************************************************/ 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$ }