diff options
author | Kenneth Russel <[email protected]> | 2007-03-31 02:35:25 +0000 |
---|---|---|
committer | Kenneth Russel <[email protected]> | 2007-03-31 02:35:25 +0000 |
commit | 5b543c792f28e79e1b15da6747e68d9e0f5c8ce9 (patch) | |
tree | a230ef9c04b4039d369e05b18243c218d4f93323 /make | |
parent | 2ad36ffe9cf48e70c3143bbda4ae25947f7374ea (diff) |
Added msg.jar target. Added dispose() method to Texture2. Fixed small
bug just introduced in DisplayShelf causing half the images to be
skipped.
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/joglutils/trunk@53 83d24430-9974-4f80-8418-2cc3294053b9
Diffstat (limited to 'make')
-rw-r--r-- | make/build.xml | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/make/build.xml b/make/build.xml index b407cf9..afd1433 100644 --- a/make/build.xml +++ b/make/build.xml @@ -37,12 +37,23 @@ </javadoc> </target> - <target name="all"> + <target name="compile"> <mkdir dir="${output.tmp.dir}" /> <javac destdir="${output.tmp.dir}" source="5" debug="true" debuglevel="source,lines"> <src path="${src.dir}" /> <classpath refid="build.classpath" /> </javac> + </target> + + <target name="msg.jar" depends="compile"> + <jar destfile="${output.dir}/msg.jar"> + <fileset dir="${output.tmp.dir}" + includes="net/java/joglutils/msg/**" + excludes="net/java/joglutils/msg/test/**" /> + </jar> + </target> + + <target name="all" depends="compile"> <jar destfile="${output.jar}"> <fileset dir="${output.tmp.dir}" /> </jar> |