Ignore:
Timestamp:
2009-08-03T11:49:27+12:00 (15 years ago)
Author:
oranfry
Message:

more generalisation, and wrok on mark3

File:
1 edited

Legend:

Unmodified
Added
Removed
  • release-kits/mark3/ant-scripts/compile.xml

    r19936 r20112  
    11<?xml version="1.0" encoding="utf-8" ?>
    22<project name="mark3-compile" default="compile">
    3 
    4     <target name="compile">
    5 
    6         <!-- checkout -->
    7         <antcall target="checkout-greenstone3" />
    8 
    9         <!-- preparation -->
    10         <antcall target="greenstone3-set-version-numbers">
    11             <param name="greenstone3basedir" value="${basedir}/compiled"/>
    12         </antcall>
    13         <ant target="prepare-unix" dir="compiled" antfile="${mark3.home}/ant-scripts/operations-on-gs3home.xml" inheritAll="false"/>
    14        
    15         <!-- update -->
    16         <ant target="update-unix" dir="compiled" antfile="${mark3.home}/ant-scripts/operations-on-gs3home.xml" inheritAll="false"/>
    17 
    18         <!-- configure -->
    19         <ant target="configure-unix" dir="compiled" antfile="${mark3.home}/ant-scripts/operations-on-gs3home.xml" inheritAll="false"/>
    20         <antcall target="tweak-makefiles" />
    21 
    22         <!-- build -->
    23         <ant target="build-unix" dir="compiled" antfile="${mark3.home}/ant-scripts/operations-on-gs3home.xml" inheritAll="false"/>
    24         <antcall target="linux-strip-execs" />
    25 
    26         <!-- uninstaller -->
    27         <antcall target="compile-uninstaller" /> <!-- from rk3-targets -->
    28 
    29         <!-- documentation -->
    30         <antcall target="prepare-documentation" />
    31 
    32     </target>
    33 
    34     <target name="set-version-number-property">
    35         <rsr file="compiled/resources/java/global.properties.in" pattern="(.*)@gsdl3version@(.*)" replacement="$1${version}$2" />
    36     </target>
    37 
    38 
    39     <target name="linux-strip-execs">
    40         <exec dir="compiled/gs2build/bin/darwin" executable="find">
    41             <arg line=". ! -name . -exec strip {} &#59;"/>
    42         </exec>
    43     </target>
    44 
     3    <target name="compile" depends="greenstone3-compile"/>
    454</project>
    465
    47 
Note: See TracChangeset for help on using the changeset viewer.