add clean-libs target to build.xml files

This commit is contained in:
Ben Fry
2022-08-04 10:37:44 -04:00
parent 1cbcb73c57
commit a8bb758f9e
5 changed files with 35 additions and 22 deletions
+15 -13
View File
@@ -3,19 +3,6 @@
<property environment="env" />
<target name="clean" description="Clean out the build directories">
<delete dir="bin" />
<delete dir="bin-test" />
<delete file="library/core.jar" />
</target>
<target name="clean-jogl" description="Clean out the JOGL binaries">
<delete>
<fileset dir="library" includes="gluegen-rt*.jar" />
<fileset dir="library" includes="jogl-all*.jar" />
</delete>
</target>
<target name="methods-check">
<available file="methods/methods.jar" property="methods.present" />
</target>
@@ -216,4 +203,19 @@
<echo message="Wrote source jar to ${source.jar.path}" />
</target>
<target name="clean-libs" description="Clean out the JOGL binary downloads">
<delete>
<fileset dir="library" includes="gluegen-rt*.jar" />
<fileset dir="library" includes="jogl-all*.jar" />
</delete>
<!-- <antcall target="download-jogl" /> -->
</target>
<target name="clean" description="Clean out the build directories">
<delete dir="bin" />
<delete dir="bin-test" />
<delete file="library/core.jar" />
</target>
</project>