jars target for elias

This commit is contained in:
Brian Matzon 2005-05-19 15:50:47 +00:00
parent 8d18a63f59
commit f46adbb7a8
1 changed files with 10 additions and 1 deletions

View File

@ -205,7 +205,16 @@
<antcall target="-distribute_win32" />
<antcall target="-distribute_linux" />
<antcall target="-distribute_macosx" />
</target>
</target>
<!-- Create ONLY the jar archives -->
<target name="jars" description="Creates the Java archives ONLY and places them in libs/" depends="clean, -initialize, compile, -createjars">
<move todir="libs/">
<fileset dir="${lwjgl.temp}/jar">
<include name="*.jar"/>
</fileset>
</move>
</target>
<!-- Packages the java files -->
<target name="-createjars">