aboutsummaryrefslogtreecommitdiffstats
path: root/make
diff options
context:
space:
mode:
authorKenneth Russel <[email protected]>2009-03-16 19:06:19 +0000
committerKenneth Russel <[email protected]>2009-03-16 19:06:19 +0000
commit7ce93a744dc51ad3447c54c4bac1d493191a6fc4 (patch)
treefdce3b387e7fb528e6ba95ead7c2a56b0d96e3d6 /make
parent4e1e08de62a4e3067ea66b5c8f0ded568d2f46b9 (diff)
Added back "clean" target
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/branches/JOGL_2_SANDBOX@1876 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'make')
-rw-r--r--make/build.xml6
1 files changed, 6 insertions, 0 deletions
diff --git a/make/build.xml b/make/build.xml
index a37885173..2980d4139 100644
--- a/make/build.xml
+++ b/make/build.xml
@@ -61,6 +61,12 @@
<target name="all" description="Build nwi, jogl and newt projects" depends="init,build.nwi,build.jogl,build.newt" />
+ <target name="clean" depends="init">
+ <ant antfile="${nwi.build.xml}" dir="${nwi.make.dir}" target="clean" inheritAll="false"/>
+ <ant antfile="${jogl.build.xml}" dir="${jogl.make.dir}" target="clean" inheritAll="false"/>
+ <ant antfile="${newt.build.xml}" dir="${newt.make.dir}" target="clean" inheritAll="false"/>
+ </target>
+
<target name="javadoc" depends="init">
<!-- Build the general Javadoc -->
<javadoc packagenames="${javadoc.packagenames}"