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

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

getting rid of unneeded if wrappers to each target as hacked ant now takes care of that, and replacing calls to custom task addressed calls to builtin antcall, which has been hacked in ant

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