summaryrefslogtreecommitdiffstats
path: root/make
diff options
context:
space:
mode:
authorkrishna_gadepalli <[email protected]>2007-02-03 01:56:07 +0000
committerkrishna_gadepalli <[email protected]>2007-02-03 01:56:07 +0000
commitd525d92e77bd3d33342d4fdb77cc54797f17bdd1 (patch)
treec5ea0a79be519e697356dccac0823bf54c926186 /make
parent49b57bace3b45f87b152d8ce0d63750f078f6eec (diff)
- modified the build to use the minimal needed jars from j-ogg instead of using
the combined j-ogg-all.jar which was causing problems with other tutorials - removed the old huge crickets.ogg file and replaced it with broken_glass.ogg git-svn-id: file:///home/mbien/NetBeansProjects/JOGAMP/joal-sync/svn-server-sync-demos/joal-demos/trunk@57 235fdd13-0e8c-4fed-b5ee-0a390d04b286
Diffstat (limited to 'make')
-rwxr-xr-xmake/build.xml12
1 files changed, 7 insertions, 5 deletions
diff --git a/make/build.xml b/make/build.xml
index 7ea5595..da33735 100755
--- a/make/build.xml
+++ b/make/build.xml
@@ -37,7 +37,6 @@
<property name="src.dir" value="../src" />
<property name="classes.dir" value="${build.dir}/classes" />
<property name="joal.demos.jar" value="${build.dir}/joal-demos.jar" />
- <property name="joal.demos.ogg.jar" value="${build.dir}/j-ogg.jar" />
<property name="joal.demos.src.zip" value="${build.dir}/joal-demos-src.zip" />
</target>
@@ -64,13 +63,15 @@
<target name="compile" depends="init">
<mkdir dir="${classes.dir}" />
- <copy file="${src.dir}/java/demos/lib/j-ogg-all.jar"
- tofile="${joal.demos.ogg.jar}"/>
+ <copy todir="${build.dir}">
+ <fileset dir="${src.dir}/java/demos/lib" includes="j-ogg-*.jar" />
+ </copy>
<path id="joal.classpath">
<pathelement path="${classpath}" />
<pathelement location="${joal.jar}" />
- <pathelement location="${joal.demos.ogg.jar}" />
+ <pathelement location="${build.dir}/j-ogg-oggd.jar" />
+ <pathelement location="${build.dir}/j-ogg-vorbisd.jar" />
</path>
<javac destdir="${classes.dir}" source="1.4" debug="true" debuglevel="source,lines">
<src path="${src.dir}" />
@@ -125,7 +126,8 @@
<classpath>
<pathelement location="${joal.jar}" />
<pathelement location="${joal.demos.jar}" />
- <pathelement location="${joal.demos.ogg.jar}" />
+ <pathelement location="${build.dir}/j-ogg-oggd.jar" />
+ <pathelement location="${build.dir}/j-ogg-vorbisd.jar" />
</classpath>
</java>
</target>