build.xml revision 8ebea46a72db798f14907a09fa8ce99422f01809
<?xml version="1.0" encoding="UTF-8"?>
<project name="YUI" default="local">
<description>Build All Modules</description>
<macrodef name="build-submodules">
<attribute name="target"/>
<sequential>
<subant target="@{target}">
<fileset dir="." includes="build.*.xml"/>
</subant>
</sequential>
</macrodef>
<target name="local">
<build-submodules target="local"/>
</target>
<target name="deploy">
<build-submodules target="deploy"/>
</target>
<target name="all">
<build-submodules target="all"/>
</target>
<target name="clean">
<build-submodules target="clean"/>
</target>
<target name="tests">
<build-submodules target="clean"/>
</target>
</project>