source: main/trunk/release-kits/kits/rk3/ant-scripts/compile.xml@ 21389

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

a new os-non-specific greenstone3 release kit, to replace lirk3, wirk3 and mark3

File size: 1.2 KB
Line 
1<?xml version="1.0" encoding="utf-8" ?>
2<project name="rk3-compile">
3
4 <target name="compile">
5 <antcall target="checkout-greenstone3"/>
6 <ant dir="compiled" inheritAll="false">
7 <target name="prepare"/>
8 <propertyset refid="forward.properties"/>
9 </ant>
10 <antcall target="greenstone3-set-version-numbers">
11 <param name="greenstone3basedir" value="compiled"/>
12 </antcall>
13 <antcall target="gli-set-version-numbers">
14 <param name="glibasedir" value="compiled/gli"/>
15 </antcall>
16 <antcall target="gsdl-set-version-numbers">
17 <param name="gsdl.basedir" value="compiled/gs2build"/>
18 </antcall>
19 <ant dir="compiled" inheritAll="false">
20 <target name="install"/>
21 <target name="dist-tidy"/>
22 <propertyset refid="forward.properties"/>
23 </ant>
24 <antcall target="insert-xml-parser"/>
25 <antcall target="insert-ant"/>
26 <antcall target="insert-documented-examples"/>
27 <antcall target="compile-uninstaller" />
28 <antcall target="prepare-documentation"/>
29
30 <!-- windows only -->
31 <if><bool><equals arg1="${rk.os}" arg2="windows"/></bool>
32 <antcall target="insert-windows-perl">
33 <param name="todir" value="compiled/gs2build/bin/windows"/>
34 </antcall>
35 <antcall target="insert-windows-icon"/>
36 </if>
37 </target>
38
39</project>
Note: See TracBrowser for help on using the repository browser.