source: release-kits/lirk3/ant-scripts/build.xml@ 17243

Last change on this file since 17243 was 17243, checked in by oranfry, 16 years ago

have lirk2 include the uninstaller

File size: 1.5 KB
Line 
1<?xml version="1.0" encoding="utf-8" ?>
2<!--
3 ..........................................................
4 February 2008
5 Linux Release Kit for Greenstone3 (lirk3)
6 Oran Fry
7 ..........................................................
8-->
9
10<project name="lirk3-build" default="lirk3">
11
12 <!-- CONSTANTS -->
13
14 <!-- the version numbers of bundled things -->
15 <property name="bundled.version.tomcat" value="5.5.25"/>
16 <property name="bundled.version.ant" value="1.6.5"/>
17
18 <!-- for the benefit of the shared scripts, set release-kit home -->
19 <property name="rk.home" value="${lirk3.home}" />
20 <property name="rk.os" value="linux" />
21
22
23 <!-- IMPORT OTHER ANT SCRIPTS -->
24 <import file="shared-ant-scripts/init.xml"/>
25 <import file="shared-ant-scripts/operations-on-gli.xml"/>
26 <import file="shared-ant-scripts/global-targets.xml"/>
27 <import file="../greenstone3/ant-scripts/rk3-targets.xml"/>
28
29 <import file="compile.xml"/>
30 <import file="create-distribution.xml"/>
31 <import file="create-installer.xml"/>
32 <import file="wrap.xml"/>
33
34 <!-- THE MAIN TARGET -->
35 <target name="lirk3" depends="init">
36 <antcall target="compile"/>
37 <antcall target="create-distribution"/>
38 <antcall target="create-installer"/>
39 <antcall target="wrap"/>
40 </target>
41
42 <target name="a">
43 <echo>some code in a</echo>
44 <antcall target="a-a"/>
45 <echo>some code in a</echo>
46 </target>
47 <target name="a-a">
48 <echo>some code in a-a</echo>
49 </target>
50 <target name="b">
51 <echo>some code in b</echo>
52 </target>
53 <target name="c">
54 <echo>some code in c</echo>
55 </target>
56
57
58</project>
Note: See TracBrowser for help on using the repository browser.