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

Last change on this file since 17645 was 17596, checked in by oranfry, 15 years ago

changes to exclude sourcecode from the binary release, use nicer target names and icons

File size: 1.1 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 <!-- for the benefit of the shared scripts, set release-kit home -->
15 <property name="rk.home" value="${lirk3.home}" />
16 <property name="rk.os" value="linux" />
17 <property name="os.suffix" value="linux"/>
18
19 <!-- IMPORT OTHER ANT SCRIPTS -->
20 <import file="shared-ant-scripts/init.xml"/>
21 <import file="shared-ant-scripts/operations-on-gli.xml"/>
22 <import file="../greenstone3/ant-scripts/rk3-targets.xml"/>
23
24 <import file="compile.xml"/>
25 <import file="create-distribution.xml"/>
26 <import file="create-components.xml"/>
27 <import file="create-installer.xml"/>
28 <import file="wrap.xml"/>
29
30 <!-- THE MAIN TARGET -->
31 <target name="lirk3" depends="init">
32 <antcall target="compile"/>
33 <antcall target="create-distribution"/>
34 <antcall target="create-components"/>
35 <antcall target="create-installer"/>
36 <antcall target="wrap"/>
37 </target>
38
39</project>
Note: See TracBrowser for help on using the repository browser.