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