ndai | cd5c508 | 2005-09-14 20:44:20 +0000 | [diff] [blame] | 1 | <project default="Build"> |
| 2 | |
| 3 | <property file="committer.properties" /> |
| 4 | |
| 5 | <target name="Build"> |
ndai | 38cec13 | 2005-09-15 16:41:20 +0000 | [diff] [blame] | 6 | |
| 7 | <property name="wtpBuilder" value="${build.home}/build-node/checkout/${build.distribution}-${buildType}/releng.wtpbuilder/build.xml"/> |
| 8 | |
ndai | cd5c508 | 2005-09-14 20:44:20 +0000 | [diff] [blame] | 9 | <antcall target="clean" /> |
ndai | 38cec13 | 2005-09-15 16:41:20 +0000 | [diff] [blame] | 10 | |
ndai | cd5c508 | 2005-09-14 20:44:20 +0000 | [diff] [blame] | 11 | <ant antfile="checkout.xml" target="all" dir="." inheritall="false"> |
david_williams | eca0f97 | 2005-11-01 19:33:18 +0000 | [diff] [blame] | 12 | <property name="codir" value="${build.home}/build-node/checkout/${build.distribution}-${buildType}" /> |
ndai | cd5c508 | 2005-09-14 20:44:20 +0000 | [diff] [blame] | 13 | <property name="buildType" value="${buildType}" /> |
| 14 | <property name="mapVersionTag" value="${mapVersionTag}" /> |
| 15 | </ant> |
| 16 | |
ndai | 38cec13 | 2005-09-15 16:41:20 +0000 | [diff] [blame] | 17 | <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" /> |
ndai | cd5c508 | 2005-09-14 20:44:20 +0000 | [diff] [blame] | 23 | </target> |
| 24 | |
| 25 | |
| 26 | |
| 27 | <target name="clean" if="build.clean"> |
| 28 | <delete dir="${build.home}/build-${build.distribution}-${buildType}" failonerror="false" /> |
ndai | df6c4ee | 2005-09-14 21:01:53 +0000 | [diff] [blame] | 29 | <delete dir="${build.home}/test-${build.distribution}-${buildType}" failonerror="false" /> |
ndai | cd5c508 | 2005-09-14 20:44:20 +0000 | [diff] [blame] | 30 | </target> |
| 31 | |
| 32 | |
| 33 | </project> |