We're going to have our distclean projects not call clean which will complain that dist/ has been wiped out if you call distclean again. Look for these exciting changes in other rings near you.
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4792 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -141,18 +141,22 @@
|
|||||||
</target>
|
</target>
|
||||||
|
|
||||||
<!-- cleans out the intermediate build files -->
|
<!-- cleans out the intermediate build files -->
|
||||||
<target name="clean">
|
<target name="clean" depends="common-clean">
|
||||||
<delete dir="${deploy.dir}/classes"/>
|
<delete dir="${deploy.dir}/classes"/>
|
||||||
<delete dir="${deploy.dir}/docs"/>
|
<delete dir="${deploy.dir}/docs"/>
|
||||||
<delete failonerror="false"><fileset dir="${deploy.dir}" includes="*.jar"/></delete>
|
<delete failonerror="false"><fileset dir="${deploy.dir}" includes="*.jar"/></delete>
|
||||||
<ant dir="tests" target="clean"/>
|
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<!-- wipes the entire build directory clean -->
|
<!-- wipes the entire build directory clean -->
|
||||||
<target name="distclean" depends="clean">
|
<target name="distclean" depends="common-clean">
|
||||||
<delete dir="${deploy.dir}"/>
|
<delete dir="${deploy.dir}"/>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
<!-- common clean tasks -->
|
||||||
|
<target name="common-clean">
|
||||||
|
<ant dir="tests" target="clean"/>
|
||||||
|
</target>
|
||||||
|
|
||||||
<!-- build the java class files -->
|
<!-- build the java class files -->
|
||||||
<target name="compile" depends="prepare">
|
<target name="compile" depends="prepare">
|
||||||
<javac srcdir="src/java" destdir="${classes.dir}" includeAntRuntime="false"
|
<javac srcdir="src/java" destdir="${classes.dir}" includeAntRuntime="false"
|
||||||
|
|||||||
Reference in New Issue
Block a user