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

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

finishing the split up of compile-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="../greenstone3/ant-scripts/rk3-targets.xml"/>
27
28 <import file="compile.xml"/>
29 <import file="create-distribution.xml"/>
30 <import file="create-installer.xml"/>
31 <import file="wrap.xml"/>
32
33 <!-- THE MAIN TARGET -->
34 <target name="lirk3" depends="init">
35 <antcall target="compile"/>
36 <antcall target="create-distribution"/>
37 <antcall target="create-installer"/>
38 <antcall target="wrap"/>
39 </target>
40
41 <target name="a">
42 <echo>some code in a</echo>
43 <antcall target="a-a"/>
44 <echo>some code in a</echo>
45 </target>
46 <target name="a-a">
47 <echo>some code in a-a</echo>
48 </target>
49 <target name="b">
50 <echo>some code in b</echo>
51 </target>
52 <target name="c">
53 <echo>some code in c</echo>
54 </target>
55
56
57</project>
Note: See TracBrowser for help on using the repository browser.