source: release-kits/wirk3/ant-scripts/compile.xml@ 19935

Last change on this file since 19935 was 19935, checked in by oranfry, 15 years ago

it's all good stuff

File size: 1.1 KB
Line 
1<?xml version="1.0" encoding="utf-8" ?>
2<project name="wirk3-compile" default="compile">
3
4 <target name="compile">
5 <antcall target="checkout-greenstone3" />
6 <antcall target="generate-build-properties"><param name="greenstone3.basedir" value="compiled"/></antcall>
7 <antcall target="greenstone3-set-version-numbers"><param name="greenstone3basedir" value="${basedir}/compiled" /></antcall>
8
9 <ant target="prepare" dir="compiled" inheritAll="false">
10 <property name="app.version" value="${version}"/>
11 <property name="branch.path" value="${branch.path}"/>
12 <property name="branch.revision" value="${branch.revision}"/>
13 </ant>
14
15 <antcall target="insert-windows-perl"><param name="todir" value="compiled/gs2build/bin/windows"/></antcall>
16
17 <ant target="install" dir="compiled" inheritAll="false">
18 <property name="app.version" value="${version}"/>
19 <property name="branch.path" value="${branch.path}"/>
20 <property name="branch.revision" value="${branch.revision}"/>
21 </ant>
22
23 <antcall target="compile-uninstaller"/> <!-- from rk3-targets -->
24 <antcall target="prepare-documentation"/> <!-- from rk3-targets -->
25 </target>
26
27</project>
Note: See TracBrowser for help on using the repository browser.