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

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

made lirk2 work under the new shared code scheme

File size: 901 bytes
Line 
1<?xml version="1.0" encoding="utf-8" ?>
2
3<!--
4 ..........................................................
5 June 2008
6 Linux Release Kit for Greenstone3 (lirk3)
7 Oran Fry
8 ..........................................................
9-->
10
11<project name="lirk2-build" default="lirk2">
12
13 <!-- CONSTANTS -->
14
15 <!-- for the benefit of the shared scripts, set release-kit home -->
16 <property name="rk.home" value="${lirk2.home}" />
17
18 <!-- IMPORT OTHER ANT SCRIPTS -->
19 <import file="shared-ant-scripts/init.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 <addressedcall target="compile"/>
28 <addressedcall target="create-distribution"/>
29 <addressedcall target="create-installer"/>
30 <addressedcall target="wrap"/>
31 </target>
32
33</project>
Note: See TracBrowser for help on using the repository browser.