-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
30 lines (27 loc) · 1.01 KB
/
build.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<project name="YUI" default="local">
<description>Build All Modules</description>
<macrodef name="build-module">
<attribute name="target"/>
<sequential>
<ant antfile="build.scrollview.xml" target="@{target}"/>
<ant antfile="build.scrollview-base.xml" target="@{target}"/>
<ant antfile="build.scrollview-base-ie.xml" target="@{target}"/>
<ant antfile="build.scrollview-list.xml" target="@{target}"/>
<ant antfile="build.scrollview-paginator.xml" target="@{target}"/>
<ant antfile="build.scrollview-scrollbars.xml" target="@{target}"/>
</sequential>
</macrodef>
<target name="local">
<build-module target="local"/>
</target>
<target name="deploy">
<build-module target="deploy"/>
</target>
<target name="all">
<build-module target="all"/>
</target>
<target name="clean">
<build-module target="clean"/>
</target>
</project>