source: release-kits/wirk2/ant-scripts/build.xml@ 16244

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

make use of the new docs directory

File size: 1.2 KB
RevLine 
[15023]1<?xml version="1.0" encoding="utf-8" ?>
2<!--
3 ..........................................................
[16087]4 June 2008
5 Wirk2 (Windows Release Kit for Greenstone2)
[15023]6 Oran Fry
7 ..........................................................
8-->
[16087]9<project name="wirk2-build" default="wirk2">
[15023]10
[16194]11 <!-- CONSTANTS -->
[16244]12
[16204]13 <!-- the size of the resourse chunks to be put in the wrapped installer -->
14 <property name="resources.chunksize" value="8388608"/><!-- 8MiB -->
[16194]15
[16244]16 <!-- set date !AD HOC, CHANGE SOON -->
17 <property name="current.month" value="Jun"/>
18 <property name="current.year" value="2008"/>
19
[16194]20 <!-- for the benefit of the shared scripts, set release-kit home -->
[16204]21 <property name="rk.home" value="${wirk2.home}" />
[16194]22
23
24 <!-- IMPORT OTHER ANT SCRIPTS -->
25 <import file="shared-ant-scripts/init.xml"/>
[15023]26 <import file="compile.xml"/>
27 <import file="create-distribution.xml"/>
28 <import file="create-installer.xml"/>
[16194]29 <import file="wrap.xml"/>
[15023]30
[16194]31 <!-- THE MAIN TARGET -->
[16087]32 <target name="wirk2" depends="init">
[15023]33 <addressedcall target="compile"/>
34 <addressedcall target="create-distribution"/>
35 <addressedcall target="create-installer"/>
[16194]36 <addressedcall target="wrap"/>
[15023]37 </target>
38
39</project>
Note: See TracBrowser for help on using the repository browser.