blob: ffe1e1eb4d1dc83727d7af4681971f62b12aa12f [file] [log] [blame]
ndaicd5c5082005-09-14 20:44:20 +00001<project default="Build">
2
3 <property file="committer.properties" />
4
5 <target name="Build">
ndai38cec132005-09-15 16:41:20 +00006
7 <property name="wtpBuilder" value="${build.home}/build-node/checkout/${build.distribution}-${buildType}/releng.wtpbuilder/build.xml"/>
8
ndaicd5c5082005-09-14 20:44:20 +00009 <antcall target="clean" />
ndai38cec132005-09-15 16:41:20 +000010
ndaicd5c5082005-09-14 20:44:20 +000011 <ant antfile="checkout.xml" target="all" dir="." inheritall="false">
david_williamseca0f972005-11-01 19:33:18 +000012 <property name="codir" value="${build.home}/build-node/checkout/${build.distribution}-${buildType}" />
ndaicd5c5082005-09-14 20:44:20 +000013 <property name="buildType" value="${buildType}" />
14 <property name="mapVersionTag" value="${mapVersionTag}" />
15 </ant>
16
ndai38cec132005-09-15 16:41:20 +000017 <ant antfile="${wtpBuilder}" target="build" />
18 <ant antfile="${wtpBuilder}" target="site" />
19 <ant antfile="${wtpBuilder}" target="upload" />
20 <ant antfile="${wtpBuilder}" target="test" />
21 <ant antfile="${wtpBuilder}" target="site" />
22 <ant antfile="${wtpBuilder}" target="upload" />
ndaicd5c5082005-09-14 20:44:20 +000023 </target>
24
25
26
27 <target name="clean" if="build.clean">
28 <delete dir="${build.home}/build-${build.distribution}-${buildType}" failonerror="false" />
ndaidf6c4ee2005-09-14 21:01:53 +000029 <delete dir="${build.home}/test-${build.distribution}-${buildType}" failonerror="false" />
ndaicd5c5082005-09-14 20:44:20 +000030 </target>
31
32
33</project>