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