Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: a923078261e6751e5aeb9cb3bb61fe8a80c4fc13 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
###############################################################################
# Copyright (c) 2003, 2006 QNX Software Systems and others.
#
# This program and the accompanying materials
# are made available under the terms of the Eclipse Public License 2.0
# which accompanies this distribution, and is available at
# https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
#
# Contributors:
#     QNX Software Systems - initial API and implementation
###############################################################################

MakefileValidator.errorBuild=Error Build
MakefileValidator.errorResource=Error resource
MakefileValidator.warningInfo=Warning info
MakefileValidator.warning=Warning
MakefileValidator.unknown=unknown
MakefileValidator.checkingFile=Checking file :\u0020
MakefileValidator.fileChecked=File checked
MakefileValidator.error.elseMissingIfCondition=else missing if condition
MakefileValidator.error.endifMissingIfElseCondition=Endif missing if/else condition
MakefileValidator.error.endefMissingOverrideDefine=endef missing [override] define
MakefileValidator.error.unknownDirective=unknow directive
MakefileValidator.error.noMatchingEndifForCondition=No matching endif for condition
MakefileValidator.error.noMatchingEndefForOverrideDefine=No matching endef for [override] define
GNUMakefile.automaticVariable.at=Target of the rule
GNUMakefile.automaticVariable.percent=Target member name, when the target is an archive member
GNUMakefile.automaticVariable.less=First prerequisite of the rule
GNUMakefile.automaticVariable.question=All prerequisites that are newer than the target
GNUMakefile.automaticVariable.carrot=All prerequisites
GNUMakefile.automaticVariable.plus=All prerequisites in order
GNUMakefile.automaticVariable.pipe= Order-only prerequisites
GNUMakefile.automaticVariable.star=Stem with which an implicit rule matches

Back to the top