summaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
authorGilles Dubochet <gilles.dubochet@epfl.ch>2007-05-01 16:18:11 +0000
committerGilles Dubochet <gilles.dubochet@epfl.ch>2007-05-01 16:18:11 +0000
commit61da956077db2335a5d7fd9290ad31dc3bfe9e92 (patch)
tree91033116a0c84ebeab18ec506ca828d102ab90ad /build.xml
parentd977e2f2fac2a27cd35c16e6abce116c973bd42f (diff)
downloadscala-61da956077db2335a5d7fd9290ad31dc3bfe9e92.tar.gz
scala-61da956077db2335a5d7fd9290ad31dc3bfe9e92.tar.bz2
scala-61da956077db2335a5d7fd9290ad31dc3bfe9e92.zip
New STARR based on rev.
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml19
1 files changed, 13 insertions, 6 deletions
diff --git a/build.xml b/build.xml
index c4f7bc8490..9439602ffc 100644
--- a/build.xml
+++ b/build.xml
@@ -67,7 +67,7 @@ PROPERTIES
<property name="comp.prop.name" value="compiler.properties"/>
<!-- ===========================================================================
-INITIALISATION
+ANT INITIALISATION
============================================================================ -->
<target name="ant-init">
@@ -91,6 +91,10 @@ INITIALISATION
</fail>
</target>
+<!-- ===========================================================================
+INITIALISATION
+============================================================================ -->
+
<target name="init" depends="ant-init" unless="init.avail">
<!-- Making sure enough memory is available -->
<propertyregex
@@ -105,11 +109,6 @@ INITIALISATION
<format property="human" pattern="EEEE, d MMMM yyyy, HH:mm:ss (zz)"/>
<format property="short" pattern="yyyyMMdd-HHmmss"/>
</tstamp>
- <!-- Creating class-pathes -->
- <path id="starr.classpath">
- <pathelement location="${lib.starr.jar}"/>
- <pathelement location="${comp.starr.jar}"/>
- </path>
<!-- Finding out what system architecture is being used -->
<condition property="os.win"><os family="windows"/></condition>
<if><isset property="os.win"/><then>
@@ -168,6 +167,14 @@ SETUP
============================================================================ -->
<target name="setup" depends="init">
+ <!-- Creating class-pathes -->
+ <path id="starr.classpath">
+ <pathelement location="${lib.starr.jar}"/>
+ <pathelement location="${comp.starr.jar}"/>
+ <pathelement location="${fjbg.jar}"/>
+ <pathelement location="${msil.jar}"/>
+ <pathelement location="${ant.jar}"/>
+ </path>
<!-- Creating boot-level tasks -->
<taskdef
name="starr"