source: release-kits/mark2/ant-scripts/build.xml@ 16453

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

the bulk of the work on the compile logic for mark2

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