summaryrefslogtreecommitdiffstats
path: root/qooxdoo/my-application.mk
diff options
context:
space:
mode:
authorTobi Oetiker <tobi@oetiker.ch>2008-06-02 22:03:45 +0200
committerTobi Oetiker <tobi@oetiker.ch>2008-06-02 22:03:45 +0200
commit45e158a30e69573f044605e74d65c9f283d89569 (patch)
treef3e950785348fffd96328140522475b98ad546ba /qooxdoo/my-application.mk
parent8793d83042d5cf388a30ee5f8637fa6554334aa6 (diff)
downloadsmokeping-45e158a30e69573f044605e74d65c9f283d89569.tar.gz
smokeping-45e158a30e69573f044605e74d65c9f283d89569.tar.xz
mtr integration
Diffstat (limited to 'qooxdoo/my-application.mk')
-rw-r--r--qooxdoo/my-application.mk32
1 files changed, 27 insertions, 5 deletions
diff --git a/qooxdoo/my-application.mk b/qooxdoo/my-application.mk
index a85368a..126167d 100644
--- a/qooxdoo/my-application.mk
+++ b/qooxdoo/my-application.mk
@@ -5,7 +5,7 @@
# http://qooxdoo.org
#
# Copyright:
-# 2006-2007 1&1 Internet AG, Germany, http://www.1and1.org
+# 2006-2008 1&1 Internet AG, Germany, http://www.1und1.de
#
# License:
# LGPL: http://www.gnu.org/licenses/lgpl.html
@@ -100,7 +100,7 @@ endif
#
# Title used during the make process.
-# Default is the uppercase variant of your custom namespace.
+# Default is the uppercase variant of your normal title.
#
ifndef APPLICATION_MAKE_TITLE
APPLICATION_MAKE_TITLE := $(shell echo $(APPLICATION_NAMESPACE) | tr "[:lower:]" "[:upper:]")
@@ -492,7 +492,7 @@ endif
ifndef APPLICATION_PUBLISH_PATH
APPLICATION_PUBLISH_PATH = ./publish
endif
-
+
#
# The folder that will contain a unit test appliction for your classes, defined
# from the directory which contains the Makefile (if defined relatively). This
@@ -528,7 +528,6 @@ endif
-
################################################################################
# OUTPUT OPTIONS
################################################################################
@@ -562,6 +561,23 @@ endif
################################################################################
+# LINT OPTIONS
+################################################################################
+
+#
+# A list of valid global identifiers. These identifiers will not be reported
+# as errors.
+#
+ifndef LINT_ALLOWED_GLOBALS
+ LINT_ALLOWED_GLOBALS =
+endif
+
+
+
+
+
+
+################################################################################
# PROFILER OPTIONS
################################################################################
@@ -618,7 +634,13 @@ ifndef APPLICATION_ADDITIONAL_BUILD_OPTIONS
APPLICATION_ADDITIONAL_BUILD_OPTIONS =
endif
-
+#
+# Additional params to pass to the xgettext call in exec-*-translation.
+# e.g. "--sort-by-file" or "--no-location --sort-output"
+#
+ifndef APPLICATION_ADDITIONAL_XGETTEXT_PARAMS
+ APPLICATION_ADDITIONAL_XGETTEXT_PARAMS = --sort-by-file --add-comments=TRANSLATION
+endif