<?xml version="1.0" encoding="UTF-8"?>
<project name="YUI" default="local">
<description>Resize Build</description>
<macrodef name="build-resize">
<attribute name="target"/>
<sequential>
<ant antfile="build.plugin.xml" target="@{target}"/>
<ant antfile="build-base.xml" target="@{target}"/>
<ant antfile="build-constrain.xml" target="@{target}"/>
<ant antfile="build-proxy.xml" target="@{target}"/>
</sequential>
</macrodef>
<target name="local">
<build-resize target="local"/>
</target>
<target name="deploy">
<build-resize target="deploy"/>
</target>
<target name="all">
<build-resize target="all"/>
</target>
<target name="clean">
<build-resize target="clean"/>
</target>
</project>