diff options
Diffstat (limited to 'make')
-rw-r--r-- | make/build-test.xml | 6 | ||||
-rw-r--r-- | make/build.xml | 3 |
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> |