summaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
authorGilles Dubochet <gilles.dubochet@epfl.ch>2007-04-12 14:49:30 +0000
committerGilles Dubochet <gilles.dubochet@epfl.ch>2007-04-12 14:49:30 +0000
commit837c8180bdaea7f4547d7bc530a916f33fc80ced (patch)
tree953962f16476d4bf3e0c566c1f372e66a27850c9 /build.xml
parentb519e9c79252770e9b923b6a08744f7864ae277f (diff)
downloadscala-837c8180bdaea7f4547d7bc530a916f33fc80ced.tar.gz
scala-837c8180bdaea7f4547d7bc530a916f33fc80ced.tar.bz2
scala-837c8180bdaea7f4547d7bc530a916f33fc80ced.zip
Fixed dependencies for some clean targets in SA...
Fixed dependencies for some clean targets in SABBUS.
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml12
1 files changed, 6 insertions, 6 deletions
diff --git a/build.xml b/build.xml
index 2b2eccb634..227109c48a 100644
--- a/build.xml
+++ b/build.xml
@@ -72,7 +72,7 @@ PROPERTIES
INITIALISATION
============================================================================ -->
- <target name="deps">
+ <target name="ant-init">
<!-- Making sure lib/ contains everything that is needed -->
<fail message="A required library is missing in 'lib/'. The README file describes what should be there.">
<condition><not><and>
@@ -93,7 +93,7 @@ INITIALISATION
</fail>
</target>
- <target name="init" depends="deps" unless="init.avail">
+ <target name="init" depends="ant-init" unless="init.avail">
<!-- Making sure enough memory is available -->
<propertyregex
property="memory.set" input="${env.ANT_OPTS}" select="\1"
@@ -1202,22 +1202,22 @@ CLEAN
</sequential>
</macrodef>
- <target name="clean" description="Removes QUICK, STRAP and API build products">
+ <target name="clean" depends="ant-init" description="Removes QUICK, STRAP and API build products">
<remove dir="${quick.dir}"/>
<remove dir="${strap.dir}"/>
<remove dir="${api.dir}"/>
</target>
- <target name="clean.build" depends="deps"
+ <target name="clean.build" depends="ant-init"
description="Removes all build products">
<remove dir="${build.dir}"/>
</target>
- <target name="clean.msil" description="Removes all MSIL build products">
+ <target name="clean.msil" depends="ant-init" description="Removes all MSIL build products">
<remove dir="${msil.dir}"/>
</target>
- <target name="clean.all" depends="deps"
+ <target name="clean.all" depends="ant-init"
description="Removes all build products and distributions">
<remove dir="${build.dir}"/>
<remove dir="${dist.dir}"/>