aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/awt/build.xml
diff options
context:
space:
mode:
authorendolf <[email protected]>2006-03-21 22:29:45 +0000
committerendolf <[email protected]>2006-03-21 22:29:45 +0000
commit9c18dc30639973d05b278826040bf73d485b6263 (patch)
treec1460034d44cf27a83a2133e18058e778a59c23d /plugins/awt/build.xml
parent5fdd2acbe6429e3a24c4b0eb7b9ef7739b3b6fc8 (diff)
First attempt at merging version 2 from oddlabs svn repository. Merging version 2
git-svn-id: file:///home/sven/projects/JOGL/git-svn/svn-server-sync/jinput/branches/version2@137 e343933a-64c8-49c5-92b1-88f2ce3e89e8
Diffstat (limited to 'plugins/awt/build.xml')
-rw-r--r--plugins/awt/build.xml23
1 files changed, 8 insertions, 15 deletions
diff --git a/plugins/awt/build.xml b/plugins/awt/build.xml
index 6531ec3..431ad63 100644
--- a/plugins/awt/build.xml
+++ b/plugins/awt/build.xml
@@ -9,23 +9,19 @@
<target depends="init" name="compile">
<javac debug="true" deprecation="true" destdir="classes" source="1.4" target="1.4" srcdir="src">
<classpath>
- <pathelement location="../../coreAPI/bin/jinput.jar"/>
- <pathelement location="../../coreAPI/lib/jutils.jar"/>
+ <pathelement location="../../coreAPI/bin/jinput-core.jar"/>
+ <pathelement location="../../lib/jutils.jar"/>
</classpath>
</javac>
</target>
<target depends="init,compile" name="jar">
<jar jarfile="bin/awtinput.jar" compress="true" basedir="classes">
- <exclude name="**/*.java"/>
- <exclude name="awtinput.jar"/>
- <exclude name="apidoc"/>
+ <include name="**/*.class"/>
</jar>
- <copy file="bin/awtinput.jar" todir="../../coreAPI/src/tests/controller" />
</target>
<target depends="jar" description="Build everything." name="all">
- <echo message="Application built."/>
</target>
<target name="javadoc" depends="init" description="Javadoc for AWT plugin for JInput.">
@@ -38,21 +34,18 @@
<pathelement location="src"/>
</sourcepath>
<classpath>
- <pathelement location="../../coreAPI/bin/jinput.jar"/>
- <pathelement location="../../coreAPI/lib/jutils.jar"/>
+ <pathelement location="../../coreAPI/bin/jinput-core.jar"/>
+ <pathelement location="../../lib/jutils.jar"/>
</classpath>
</javadoc>
</target>
<target description="Clean all build products." name="clean">
<delete failonerror="no">
- <fileset dir="classes">
- <include name="**/*.class"/>
- </fileset>
+ <fileset dir="classes"/>
</delete>
- <delete file="bin/awtinput.jar" failonerror="no"/>
- <delete file="../../coreAPI/src/tests/controller/awtinput.jar" failonerror="no" />
- <delete file="apidoc" failonerror="no"/>
+ <delete dir="bin/awtinput.jar" failonerror="no"/>
+ <delete dir="apidoc" failonerror="no"/>
</target>
</project>