source: Makefile @ 3:957bfa456237

Last change on this file since 3:957bfa456237 was 3:957bfa456237, checked in by fnevgeny, 17 years ago

More additions.

File size: 2.4 KB
Line 
1################################################################################
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#
37QOOXDOO_PATH = ../qooxdoo-0.7.1-sdk
38
39#
40# Namespace of your application
41#
42APPLICATION_NAMESPACE = pf
43
44#
45# Files that will be copied from the source directory into the build
46# directory (space separated list). The default list is empty.
47#
48APPLICATION_FILES = index.html
49
50#-------------------------------------------------------------------------------
51# For a full list and description of available application settings, please
52# see the APPLICATION variables in file
53# $(QOOXDOO_PATH)/frontend/framework/tool/make/application.mk
54# Add any of those variables for your custom configuration here:
55#-------------------------------------------------------------------------------
56
57
58
59
60################################################################################
61# INTERNALS (PLEASE DO NOT CHANGE)
62################################################################################
63
64ifneq ($(QOOXDOO_PATH),PLEASE_DEFINE_QOOXDOO_PATH)
65        include $(QOOXDOO_PATH)/frontend/framework/tool/make/targets.mk
66        include $(QOOXDOO_PATH)/frontend/framework/tool/make/application.mk
67endif
68
69error:
70        @echo "  * Please configure QOOXDOO_PATH"
Note: See TracBrowser for help on using the repository browser.