Project

General

Profile

Statistics
| Branch: | Tag: | Revision:

vigigraph / javascript / Makefile @ 20908c48

History | View | Annotate | Download (2.83 KB)

1 079f14f1 Thomas BURGUIERE
################################################################################
2
#
3
#  qooxdoo - the new era of web development
4
#
5
#  http://qooxdoo.org
6
#
7
#  Copyright:
8
#    2006-2007 1&1 Internet AG, Germany, http://www.1and1.org
9
#
10
#  License:
11
#    LGPL: http://www.gnu.org/licenses/lgpl.html
12
#    EPL: http://www.eclipse.org/org/documents/epl-v10.php
13
#    See the LICENSE file in the project's top-level directory for details.
14
#
15
#  Authors:
16
#    * Sebastian Werner (wpbasti)
17
#    * Andreas Ecker (ecker)
18
#    * Fabian Jakobs (fjakobs)
19
#
20
################################################################################
21
22
################################################################################
23
# SETTINGS
24
################################################################################
25
26
#
27
# Path to the folder of your qooxdoo distribution.
28
# Can either be
29
# a) a relative path to the location of this Makefile (preferred) or
30
# b) an absolute path starting at the root of your file system
31
# Example: If you put the skeleton folder next to the qooxdoo SDK folder,
32
# you can use the following relative path:
33
# QOOXDOO_PATH = ../../qooxdoo-0.7-sdk
34
# Please note that Windows users should always use relative paths.
35
# It should end with the last directory. Please omit a trailing slash.
36
#
37
QOOXDOO_PATH = ./qooxdoo-0.7.3-sdk
38
39
#
40
# Namespace of your application e.g. custom
41
# Even complexer stuff is possible like: net.sf.custom
42
#
43
APPLICATION_NAMESPACE = vigigraph
44
45
#
46
# Files that will be copied from the source directory into the build
47
# directory (space separated list). The default list is empty.
48
#
49
APPLICATION_FILES = index.html
50
51
#-------------------------------------------------------------------------------
52
# For a full list and description of available application settings, please 
53
# see the APPLICATION variables in file 
54
# $(QOOXDOO_PATH)/frontend/framework/tool/make/application.mk
55
# Add any of those variables for your custom configuration here:
56
#-------------------------------------------------------------------------------
57
58
# Translations
59
APPLICATION_LOCALES=fr
60
61
# Logging
62
APPLICATION_SOURCE_LOG_LEVEL=debug
63
APPLICATION_BUILD_LOG_LEVEL=error
64
65
# Theme
66
APPLICATION_THEME=vigigraph.theme.Vigilo
67
68
69
70
71
################################################################################
72
# INTERNALS (PLEASE DO NOT CHANGE)
73
################################################################################
74
75
ifneq ($(QOOXDOO_PATH),PLEASE_DEFINE_QOOXDOO_PATH)
76
	include $(QOOXDOO_PATH)/frontend/framework/tool/make/targets.mk
77
	include $(QOOXDOO_PATH)/frontend/framework/tool/make/application.mk
78
endif
79
80
error:
81
	@echo "  * Please configure QOOXDOO_PATH"
82
83
84
################################################################################
85
# Vigilo-specific
86
################################################################################
87
88
89
clean:
90
	find $(CURDIR) -name "*~" -exec rm {} \;
91
92
.PHONY: clean