32 lines
965 B
XML
32 lines
965 B
XML
<?xml version="1.0"?>
|
|
|
|
<!--
|
|
============================================================
|
|
|
|
This build file is merely a placeholder for the importation of the forrest.build.xml file.
|
|
'site', the default target here, is a target imported from forrest.build.xml
|
|
|
|
============================================================
|
|
-->
|
|
<project name="Beehive Forrest Site Build" default="usage" basedir=".">
|
|
|
|
<property environment="os"/>
|
|
<property name="forrest.home" location="${os.FORREST_HOME}"/>
|
|
|
|
<import file="${os.FORREST_HOME}/main/forrest.build.xml"/>
|
|
|
|
<target name="build">
|
|
<antcall target="site"/>
|
|
</target>
|
|
|
|
<target name="clean">
|
|
<delete dir="build"/>
|
|
</target>
|
|
|
|
<target name="usage" description="Print the usage for this build.xml">
|
|
<java fork="no" classname="org.apache.tools.ant.Main">
|
|
<arg line="-f build.xml -projecthelp"/>
|
|
</java>
|
|
</target>
|
|
</project>
|