Merged features branch

git-svn-id: https://svn.code.sf.net/p/turtle/code/trunk@112 860be788-9bd5-4423-9f1e-828f051e677b
This commit is contained in:
mat007 2010-02-01 23:54:20 +00:00
parent 05f7625d1c
commit 05654f9f5f
5 changed files with 266 additions and 1 deletions

View file

@ -18,6 +18,12 @@
</build-test>
</target>
<target name="bench" description="run benchmark">
<build-app name="turtle_bench" mode="all">
<includepath path="${applications.dir}/turtle_bench"/>
</build-app>
</target>
<target name="export" description="export the distribution">
<deploy>
<module name="turtle">
@ -26,6 +32,12 @@
</deploy>
</target>
<target name="all" depends="configure,test,export" description="build, run tests and package application"/>
<target name="package" depends="export" description="package the distribution">
<mkdir dir="${dist.dir}"/>
<zip destfile="${dist.dir}/${ant.project.name}.zip" basedir="${dist.dir}" includes="include/**"/>
<tar destfile="${dist.dir}/${ant.project.name}.tar.bz2" basedir="${dist.dir}" includes="include/**" compression="bzip2"/>
</target>
<target name="all" depends="configure,test,export,package" description="build, run tests and package application"/>
</project>