source: release-kits/lirk2/ant-scripts/build.xml@ 16739

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

changes to lirk2 after ant hack cleaned up

File size: 935 bytes
Line 
1<?xml version="1.0" encoding="utf-8" ?>
2<!--
3 ..........................................................
4 June 2008
5 Linux Release Kit for Greenstone2 (lirk2)
6 Oran Fry
7 ..........................................................
8-->
9
10<project name="lirk2-build" default="lirk2">
11
12 <!-- CONSTANTS -->
13
14 <!-- for the benefit of the shared scripts, set release-kit home -->
15 <property name="rk.home" value="${lirk2.home}" />
16
17 <!-- IMPORT OTHER ANT SCRIPTS -->
18 <import file="shared-ant-scripts/init.xml"/>
19 <import file="shared-ant-scripts/operations-on-gli.xml"/>
20 <import file="compile.xml"/>
21 <import file="create-distribution.xml"/>
22 <import file="create-installer.xml"/>
23 <import file="wrap.xml"/>
24
25 <!-- THE MAIN TARGET -->
26 <target name="lirk2" depends="init">
27 <antcall target="compile"/>
28 <antcall target="create-distribution"/>
29 <antcall target="create-installer"/>
30 <antcall target="wrap"/>
31 </target>
32
33</project>
Note: See TracBrowser for help on using the repository browser.