summaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
authormihaylov <mihaylov@epfl.ch>2007-02-13 08:35:18 +0000
committermihaylov <mihaylov@epfl.ch>2007-02-13 08:35:18 +0000
commitbd426ab6f97ad86266ea1f044f9945d76024eeac (patch)
tree2651e92216c844ddb2b2a83fed305835285bda81 /build.xml
parent78ac90b85a976a58fc5afad78be33493138fb8fe (diff)
downloadscala-bd426ab6f97ad86266ea1f044f9945d76024eeac.tar.gz
scala-bd426ab6f97ad86266ea1f044f9945d76024eeac.tar.bz2
scala-bd426ab6f97ad86266ea1f044f9945d76024eeac.zip
- renamed msil.predef build target to msil
- added clean.msil target
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml8
1 files changed, 6 insertions, 2 deletions
diff --git a/build.xml b/build.xml
index b9ac557f49..f4ea5b36c5 100644
--- a/build.xml
+++ b/build.xml
@@ -574,9 +574,9 @@ MSIL
</target>
- <target name="msil.predef" depends="setup.quick, msil.sources">
+ <target name="msil" depends="setup.quick, msil.sources">
<quick srcdir="${msil.dir}/src" usepredefs="no" target="msil"
- assemname="predef" assemrefs="${lib.dir}">
+ assemname="${msil.dir}/predef" assemrefs="${lib.dir}">
<include name="scala/Predef.scala" />
<include name="scala/Console.scala" />
<include name="scala/Application.scala" />
@@ -1152,6 +1152,10 @@ CLEAN
<remove dir="${build.dir}"/>
</target>
+ <target name="clean.msil" description="Removes all MSIL build products">
+ <remove dir="${msil.dir}"/>
+ </target>
+
<target name="clean.all"
description="Removes all build products and distributions">
<remove dir="${build.dir}"/>