summaryrefslogtreecommitdiffstats
path: root/qooxdoo/Makefile
blob: 16598db4f6dfb3723c9e06140a9278d47e72dbe2 (plain)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
################################################################################
#
#  qooxdoo - the new era of web development
#
#  http://qooxdoo.org
#
#  Copyright:
#    2006-2007 1&1 Internet AG, Germany, http://www.1and1.org
#
#  License:
#    LGPL: http://www.gnu.org/licenses/lgpl.html
#    EPL: http://www.eclipse.org/org/documents/epl-v10.php
#    See the LICENSE file in the project's top-level directory for details.
#
#  Authors:
#    * Sebastian Werner (wpbasti)
#    * Andreas Ecker (ecker)
#    * Fabian Jakobs (fjakobs)
#
################################################################################
export PATH:=/usr/pack/python-debian31-2.4.4-to/bin:$(PATH)

################################################################################
# SETTINGS
################################################################################

#
# Path to the folder of your qooxdoo distribution.
# Can either be
# a) a relative path to the location of this Makefile (preferred) or
# b) an absolute path starting at the root of your file system
# Example: If you put the skeleton folder next to the qooxdoo SDK folder,
# you can use the following relative path:
# QOOXDOO_PATH = ../../qooxdoo-0.7-sdk
# Please note that Windows users should always use relative paths.
# It should end with the last directory. Please omit a trailing slash.
#
QOOXDOO_PATH = /usr/pack/qooxdoo-0.7.2-to
QOOXDOO_URI = ../qooxdoolink
#QOOXDOO_URI = file:///Q:/$(QOOXDOO_PATH)


#
# Namespace of your application e.g. custom
# Even complexer stuff is possible like: net.sf.custom
#
APPLICATION_NAMESPACE = Smokeping

#
# Files that will be copied from the source directory into the build
# directory (space separated list). The default list is empty.
#
APPLICATION_FILES = index.html jsonrpc.cgi perl grapher.cgi
# APPLICATION_BUILD_LOG_LEVEL = debug
APPLICATION_BUILD_LOG_LEVEL = off

#-------------------------------------------------------------------------------
# For a full list and description of available application settings, please 
# see the APPLICATION variables in file 
# $(QOOXDOO_PATH)/frontend/framework/tool/make/application.mk
# Add any of those variables for your custom configuration here:
#-------------------------------------------------------------------------------
APPLICATION_LOCALES = en de fr

APPLICATION_RESOURCE_FILTER = true
APPLICATION_COMPLETE_SOURCE = false
APPLICATION_THEME_ICON = qx.theme.icon.CrystalClear

# these are set by default
#APPLICATION_OPTIMIZE_STRINGS = true
#APPLICATION_OPTIMIZE_VARIABLES = true
#APPLICATION_OPTIMIZE_BASE_CALL = true
#APPLICATION_OPTIMIZE_PRIVATE = false
#APPLICATION_OPTIMIZE_BROWSER = false
#APPLICATION_INDIVIDUAL_BROWSERS = gecko mshtml opera webkit
#APPLICATION_OPTIMIZE_REMOVE_DEBUG = true

#APPLICATION_OPTIMIZE_REMOVE_COMPATIBILITY = false
# these are changed against default


################################################################################
# INTERNALS (PLEASE DO NOT CHANGE)
################################################################################
ifneq ($(QOOXDOO_PATH),PLEASE_DEFINE_QOOXDOO_PATH)
	include $(QOOXDOO_PATH)/frontend/framework/tool/make/targets.mk
#	include $(QOOXDOO_PATH)/frontend/framework/tool/make/application.mk
	include ./my-application.mk
endif

#####################
# Additional settings
#####################

FRAMEWORK_CACHE_PATH=/tmp/qooxdoo-cache

error:
	@echo "  * Please configure QOOXDOO_PATH"