source: release-kits/mark3/ant-scripts/build.xml@ 16744

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

changes to mark3 after ant cleaned up

File size: 1.6 KB
RevLine 
[14982]1<?xml version="1.0" encoding="utf-8" ?>
2<!--
3 ..........................................................
[16655]4 July 2008
5 Mac Release Kit for Greenstone3 (mark3)
[14982]6 Oran Fry
7 ..........................................................
8-->
9
[16655]10<project name="mark3-build" default="mark3">
[14982]11
[16171]12 <!-- CONSTANTS -->
[14982]13
[16171]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 -->
[16655]19 <property name="rk.home" value="${mark3.home}" />
[16744]20 <property name="rk.os" value="linux" />
[16171]21
22 <!-- IMPORT OTHER ANT SCRIPTS -->
23 <import file="shared-ant-scripts/init.xml"/>
[16744]24 <import file="../greenstone3/ant-scripts/rk3-targets.xml"/>
[14982]25 <import file="compile.xml"/>
26 <import file="create-distribution.xml"/>
27 <import file="create-installer.xml"/>
28 <import file="wrap.xml"/>
29
[16655]30 <!-- TARGET TO PERFORM ADDITIONAL PRECONDITION CHECKS -->
31 <target name="mark3-init">
32 <if>
33 <bool>
34 <or><equals arg1="${processor}" arg2="ppc" /><equals arg1="${processor}" arg2="intel"/></or>
35 </bool>
36
37 <else>
38 <echo>Processor type not set or set wrongly. Please set the property 'processor' to either 'intel' or 'ppc' in build.properties</echo>
39 <fail>Processor not set</fail>
40 </else>
41 </if>
[16744]42 <echo>Processor: ${processor}</echo>
[16655]43 </target>
44
[16171]45 <!-- THE MAIN TARGET -->
[16655]46 <target name="mark3" depends="init,mark3-init">
[16744]47 <antcall target="compile"/>
48 <antcall target="create-distribution"/>
49 <antcall target="create-installer"/>
50 <antcall target="wrap"/>
[14982]51 </target>
52
53</project>
Note: See TracBrowser for help on using the repository browser.