|
From: <eli...@us...> - 2007-04-03 10:06:13
|
Revision: 2756
http://svn.sourceforge.net/java-game-lib/?rev=2756&view=rev
Author: elias_naur
Date: 2007-04-03 03:06:12 -0700 (Tue, 03 Apr 2007)
Log Message:
-----------
Removed generated files from version control - all platforms have support for the java 1.5 apt tool
Modified Paths:
--------------
trunk/LWJGL/build.xml
Removed Paths:
-------------
trunk/LWJGL/src/generated/
trunk/LWJGL/src/native/generated/
Modified: trunk/LWJGL/build.xml
===================================================================
--- trunk/LWJGL/build.xml 2007-04-03 08:21:46 UTC (rev 2755)
+++ trunk/LWJGL/build.xml 2007-04-03 10:06:12 UTC (rev 2756)
@@ -255,7 +255,7 @@
</target>
<!-- Cleans up any files created during the execution of this script -->
- <target name="clean" description="Cleans the diectories controlled by this ant script">
+ <target name="clean" description="Cleans the diectories controlled by this ant script" depends="clean-generated">
<delete dir="${lwjgl.temp}" quiet="true" failonerror="false" taskname="cleaning temp folder" />
<delete dir="${lwjgl.docs}/javadoc" quiet="true" failonerror="false" taskname="cleaning javadoc folder" />
<delete dir="${lwjgl.bin}" quiet="true" failonerror="false" taskname="cleaning bin folder" />
@@ -307,7 +307,7 @@
<target name="all" description="Creates the Java archives and the natives for the current platform" depends="jars, compile_native"/>
<!-- Create ONLY the jar archives -->
- <target name="jars" description="Creates the Java archives ONLY and places them in libs/" depends="-initialize, compile, -createjars">
+ <target name="jars" description="Creates the Java archives ONLY and places them in libs/" depends="-initialize, generate-all, compile, -createjars">
<move todir="libs/">
<fileset dir="${lwjgl.temp}/jar">
<include name="*.jar"/>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|