forked from mihaisucan/PaintWeb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig-default.mk
81 lines (65 loc) · 2.62 KB
/
config-default.mk
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
# PaintWeb Makefile
#
# Copyright (C) 2008, 2009 Mihai Şucan
#
# This file is part of PaintWeb.
#
# PaintWeb is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# PaintWeb is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with PaintWeb. If not, see <http://www.gnu.org/licenses/>.
#
# $URL: http://code.google.com/p/paintweb $
# $Date: 2009-11-07 14:31:42 +0200 $
# The tools you want to have packaged
TOOLS=bcurve cbucket cpicker ellipse eraser hand insertimg line pencil polygon rectangle selection text
# The extensions you want.
EXTENSIONS=colormixer mousekeys
# The interface you want packaged.
INTERFACE=default
# The PHP binary for running PHP scripts.
# Make sure that the php binary is in the global $PATH, or else please point to
# the location of your php binary.
BIN_PHP=php
# Make sure you have the YUI Compressor package available. Update this path to
# point to the location of your package.
export FOLDER_YUIC=$(HOME)/src/yuicompressor
# Make sure you have the jsdoc-toolkit package available. Update this path to
# point to the location of your package.
export FOLDER_JSDOCT=$(HOME)/src/jsdoc-toolkit
# The JSON encoder script.
BIN_JSON=$(BIN_PHP) scripts/json_encode.php
# The XHTML minifier script.
BIN_XHTML=$(BIN_PHP) scripts/xhtml_minify.php
# The script used for compressing/minifying CSS files.
# Note that the scripts/yuicompressor script is a wrapper for YUI Compressor.
BIN_CSS=scripts/yuicompressor
# The CSS images inliner script.
BIN_CSS_IMAGES=$(BIN_PHP) scripts/css_images.php
# The script used for compressing/minifying JavaScript files
BIN_JS=scripts/yuicompressor
# The script used for generating the JavaScript documentation / the API
# reference based on the source code. Note that the scripts/jsdoc script is
# a wrapper for jsdoc-toolkit.
BIN_JSDOC=scripts/jsdoc
# PaintWeb folders.
# Generally, you don't have to change these.
FOLDER_BUILD=build
FOLDER_SRC=src
FOLDER_INCLUDES=includes
FOLDER_TOOLS=tools
FOLDER_EXTENSIONS=extensions
FOLDER_INTERFACES=interfaces
FOLDER_LANG=lang
FOLDER_COLORS=colors
FOLDER_DOCS_API=docs/api-ref
FOLDER_TINYMCE_PLUGIN=ext/tinymce-plugin/paintweb
# vim:set spell spl=en fo=wan1croql tw=80 ts=2 sw=2 sts=0 sta noet ai cin fenc=utf-8 ff=unix: