source: release-kits/mark2/ant-scripts/compile.xml@ 20721

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

created the merged rk2

File size: 1.4 KB
RevLine 
[14982]1<?xml version="1.0" encoding="utf-8" ?>
[16453]2<project name="mark2-compile" default="compile">
[14982]3
4 <target name="compile">
5
6 <!-- checkout -->
[16741]7 <antcall target="checkout-gsdl-gli" />
[18929]8 <antcall target="drop-in-docs"><param name="gsdl.basedir" value="${basedir}/compiled"/></antcall>
[17898]9 <antcall target="gsdl-set-version-numbers"><param name="gsdl.basedir" value="${basedir}/compiled"/></antcall>
[18929]10 <antcall target="gli-set-version-numbers"><param name="glibasedir" value="${basedir}/compiled/gli"/></antcall>
[15956]11
[14982]12 <!-- configure -->
[16741]13 <antcall target="run-configure"/>
14 <antcall target="tweak-makefiles"/>
[14982]15
[18929]16 <!-- make common-src and reconfigure -->
17 <!-- this is a workaround to a problem with the gsdl build code -->
18 <!-- expat needs to be compiled before the perl XML Parser is configured -->
19 <antcall target="make-common-src"/>
20 <antcall target="run-configure"/>
21
[15956]22 <!-- make -->
[16741]23 <antcall target="run-make"/>
24 <antcall target="run-make-install"/>
[18854]25 <antcall target="run-make-apache-for-dist"/>
[16741]26 <antcall target="strip-execs"/>
[14982]27
[18929]28 <!-- gli -->
29 <antcall target="compile-gli">
30 <param name="script.format" value="sh"/>
31 <param name="glibasedir" value="${basedir}/compiled/gli"/>
32 <param name="gsdlbasedir" value="${basedir}/compiled"/>
33 </antcall>
34
[17257]35 <!-- uninstaller -->
[17268]36 <antcall target="compile-uninstaller" /> <!-- from rk2-targets -->
[17257]37
[15956]38 <!-- build collections -->
[16741]39 <antcall target="build-demo-collection" />
[14982]40
41 </target>
42
43
44</project>
Note: See TracBrowser for help on using the repository browser.