aboutsummaryrefslogtreecommitdiffstats
path: root/make
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2011-04-01 20:07:41 +0200
committerSven Gothel <[email protected]>2011-04-01 20:07:41 +0200
commit4c3aaeaa5e105b462d5212d049db9dcd058c94c7 (patch)
treed929da5cedac758fd57169013bb53b01b25dfa25 /make
parent5857d93e2d41608b247ec18cb9129f3a6624d9ac (diff)
archive tga results
Diffstat (limited to 'make')
-rw-r--r--make/build-test.xml6
-rw-r--r--make/build.xml3
2 files changed, 9 insertions, 0 deletions
diff --git a/make/build-test.xml b/make/build-test.xml
index f996ba2c1..b6c728870 100644
--- a/make/build-test.xml
+++ b/make/build-test.xml
@@ -42,6 +42,7 @@
<target name="clean" description="Remove all build products" depends="declare.common">
<delete includeEmptyDirs="true" quiet="true">
<fileset dir="${build.test}" />
+ <fileset dir="." includes="*.tga" />
</delete>
</target>
@@ -58,6 +59,7 @@
<delete quiet="true">
<fileset dir="${results.test}" includes="**"/>
<fileset file="${build}/${test.archive.name}.7z"/>
+ <fileset dir="." includes="*.tga" />
</delete>
<mkdir dir="${results.test}" />
@@ -473,6 +475,10 @@
<!-- updates / create the test results zip file -->
<target name="test-zip-archive" depends="declare.common">
+ <move todir="${results.test}">
+ <fileset dir="." includes="*.tga" />
+ </move>
+ <mkdir dir="${results.test}" />
<archive.7z destfile="${build}/${test.archive.name}.7z"
basedir="${results.test}"
includes="**" />
diff --git a/make/build.xml b/make/build.xml
index d9fdf1e5b..35ebf1ca7 100644
--- a/make/build.xml
+++ b/make/build.xml
@@ -47,8 +47,11 @@
<ant antfile="${nativewindow.build.xml}" dir="${nativewindow.make}" target="clean" inheritRefs="true" inheritAll="true"/>
<ant antfile="${jogl.build.xml}" dir="${jogl.make}" target="clean" inheritRefs="true" inheritAll="true"/>
<ant antfile="${newt.build.xml}" dir="${newt.make}" target="clean" inheritRefs="true" inheritAll="true"/>
+ <ant antfile="${newt.build.xml}" dir="${newt.make}" target="clean" inheritRefs="true" inheritAll="true"/>
+ <ant antfile="build-test.xml" target="clean" inheritRefs="true" inheritAll="true"/>
<delete includeEmptyDirs="true" quiet="true" failonerror="false">
<fileset dir="${build}" />
+ <fileset dir="." includes="*.tga" />
</delete>
</target>