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-01-05 15:54:53 +00:00
|
|
|
<target name="clean">
|
|
|
|
<subant target="clean">
|
2004-01-05 16:35:10 +00:00
|
|
|
<property name="dist.dir" location="${dist.dir}"/>
|
|
|
|
|
2004-01-05 15:54:53 +00:00
|
|
|
<fileset dir="."
|
|
|
|
includes="*/build.xml"
|
|
|
|
/>
|
|
|
|
</subant>
|
|
|
|
</target>
|
|
|
|
|
2004-01-05 07:09:42 +00:00
|
|
|
<target name="build-tree">
|
|
|
|
<subant target="">
|
2004-01-05 16:35:10 +00:00
|
|
|
<property name="dist.dir" location="${dist.dir}"/>
|
|
|
|
|
2004-01-05 15:54:53 +00:00
|
|
|
<!-- Exclude LARM for now,
|
|
|
|
until its build is brought up to speed
|
|
|
|
-->
|
|
|
|
<fileset dir="."
|
|
|
|
includes="*/build.xml"
|
|
|
|
excludes="webcrawler-LARM/build.xml"
|
|
|
|
/>
|
2004-01-05 07:09:42 +00:00
|
|
|
</subant>
|
|
|
|
</target>
|
|
|
|
</project>
|