2004-01-05 02:09:42 -05:00
|
|
|
<project name="sandbox" default="build-tree">
|
|
|
|
|
2004-01-05 11:35:10 -05:00
|
|
|
<property name="dist.dir" location="dist"/>
|
|
|
|
|
2004-02-15 14:19:55 -05:00
|
|
|
<macrodef name="crawl">
|
2004-02-23 10:25:48 -05:00
|
|
|
<attribute name="target" default=""/>
|
2004-02-15 14:19:55 -05:00
|
|
|
<sequential>
|
|
|
|
<subant target="@{target}" failonerror="false">
|
|
|
|
<property name="dist.dir" location="${dist.dir}"/>
|
|
|
|
|
|
|
|
<fileset dir="."
|
|
|
|
includes="*/build.xml"
|
2004-12-17 23:50:42 -05:00
|
|
|
excludes="taglib/build.xml"
|
2004-02-15 14:19:55 -05:00
|
|
|
/>
|
|
|
|
</subant>
|
|
|
|
</sequential>
|
|
|
|
</macrodef>
|
2004-01-05 11:35:10 -05:00
|
|
|
|
2004-02-15 14:19:55 -05:00
|
|
|
<target name="clean">
|
|
|
|
<crawl target="clean"/>
|
2004-01-05 10:54:53 -05:00
|
|
|
</target>
|
|
|
|
|
2004-01-05 02:09:42 -05:00
|
|
|
<target name="build-tree">
|
2004-02-23 10:25:48 -05:00
|
|
|
<crawl/>
|
2004-01-05 02:09:42 -05:00
|
|
|
</target>
|
2004-02-15 14:19:55 -05:00
|
|
|
</project>
|