forked from emmetio/emmet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
65 lines (58 loc) · 2.39 KB
/
build.xml
File metadata and controls
65 lines (58 loc) · 2.39 KB
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
<?xml version="1.0" encoding="utf-8"?>
<project name="Zen Coding" default="main" basedir=".">
<property file="build.properties"/>
<import file="${basedir}/ant-tools/webtasks.xml"/>
<import file="${zencoding_plugins_source}/TextMate/build.xml"/>
<import file="${zencoding_plugins_source}/textarea/build.xml"/>
<import file="${zencoding_plugins_source}/aptana/build.xml"/>
<import file="${zencoding_plugins_source}/komodo/build.xml"/>
<import file="${zencoding_plugins_source}/pspad/build.xml"/>
<import file="${zencoding_plugins_source}/npp/build.xml"/>
<import file="${zencoding_plugins_source}/e2/build.xml"/>
<import file="${zencoding_plugins_source}/codemirror/build.xml"/>
<import file="${zencoding_plugins_source}/coda/build.xml"/>
<import file="${zencoding_plugins_source}/espresso/build.xml"/>
<!-- List of Zen Coding JavaScript files -->
<filelist dir="${zencoding_javascript}" id="javascript.files">
<file name="zen_settings.js"/>
<file name="zen_resources.js"/>
<file name="zen_parser.js"/>
<file name="zen_coding.js"/>
<file name="zen_actions.js"/>
<file name="html_matcher.js"/>
<file name="base64.js"/>
<file name="parsers/parsexml.js"/>
<file name="parsers/sex.js"/>
<file name="parsers/parserutils.js"/>
<file name="parsers/actions.js"/>
<file name="parsers/traverse-actions.js"/>
</filelist>
<fileset dir="${zencoding_javascript_filters}" id="javascript.filters">
<include name="*.js"/>
</fileset>
<target name="init">
<mkdir dir="${zencoding_build_dir}"/>
<mkdir dir="${zencoding_plugins}"/>
</target>
<target name="create_javascript" depends="init">
<concat destfile="${zencoding_build_dir}/zencoding.js">
<filelist refid="javascript.files"/>
</concat>
</target>
<target name="generic_java" description="Builds generic package for Java usage">
<mkdir dir="${zencoding_plugins}/java"/>
<concat destfile="${zencoding_plugins}/java/zencoding.js">
<filelist refid="javascript.files" />
<fileset refid="javascript.filters" />
<fileset dir="${zencoding_plugins_source}/java">
<include name="*.js"/>
</fileset>
</concat>
</target>
<!-- Main build routine -->
<target name="main" depends="create_javascript, komodo_plugin, pspad_plugin,
npp_plugin, generic_java, e2_bundle, textarea_plugin, codemirror_plugin,
coda_bundle, espresso_bundle, textmate_bundle">
<echo>Done</echo>
</target>
</project>