Moved java dir into build dir.

This commit is contained in:
Michael Mathews 2010-07-07 13:00:30 +01:00
parent a5c342a395
commit c50a5aa14d
3 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
<target name="clean">
<delete dir="build" />
<delete file="../jsdoc.jar" />
<delete file="../../jsdoc.jar" />
</target>
<target name="compile">
@ -25,7 +25,7 @@
</target>
<target name="install">
<copy file="build/jar/jsdoc.jar" tofile="../jsdoc.jar" overwrite="true" />
<copy file="build/jar/jsdoc.jar" tofile="../../jsdoc.jar" overwrite="true" />
</target>
<target name="clean-install" depends="clean,compile,jar,install" />