1
0
mirror of https://github.com/nerzhul/nrz-androidlib.git synced 2025-06-24 00:06:09 +00:00
nrz-androidlib/build.xml
2015-04-02 12:20:24 +02:00

27 lines
714 B
XML

<project name="nrz-androidlib" default="dist" basedir=".">
<property name="dist.dir" location="dist" />
<property name="src" location="src"/>
<property name="build.dir" location="build"/>
<target name="init">
<mkdir dir="${build.dir}" />
<mkdir dir="${dist.dir}" />
</target>
<target name="compile" depends="init">
<!-- Compile the java code from ${src} into ${build} -->
<javac srcdir="${src}" destdir="${build}"/>
</target>
<target name="dist" depends="compile">
<jar destfile="${dist.dir}/nrz-androidlib.jar" basedir="${build.dir}" />
</target>
<target name="clean">
<delete dir="${build.dir}" />
<delete dir="${dist.dir}" />
</target>
</project>