1
0
mirror of https://github.com/nerzhul/nrz-androidlib.git synced 2025-06-07 16:06:21 +00:00

Update build.xml

This commit is contained in:
Ner'zhul 2015-04-02 12:20:59 +02:00
parent bc3df54080
commit 3764725980

View File

@ -10,15 +10,13 @@
<target name="compile" depends="init">
<!-- Compile the java code from ${src} into ${build} -->
<javac srcdir="${src}" destdir="${build}"/>
<javac srcdir="${src}" destdir="${build.dir}"/>
</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}" />