1 <?xml version="1.0" encoding="UTF-8"?>
3 DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 Copyright 2008 by Sun Microsystems, Inc.
7 OpenOffice.org - a multi-platform office productivity suite
9 $RCSfile: build.xml,v $
13 This file is part of OpenOffice.org.
15 OpenOffice.org is free software: you can redistribute it and/or modify
16 it under the terms of the GNU Lesser General Public License version 3
17 only, as published by the Free Software Foundation.
19 OpenOffice.org is distributed in the hope that it will be useful,
20 but WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 GNU Lesser General Public License version 3 for more details
23 (a copy is included in the LICENSE file that accompanied this code).
25 You should have received a copy of the GNU Lesser General Public License
26 version 3 along with OpenOffice.org. If not, see
27 <http://www.openoffice.org/license.html>
28 for a copy of the LGPLv3 License.
31 <project name="xmerge" default="main" basedir=".">
33 <property environment="env"/>
34 <property name="solar.platform" value="${env.COMP_ENV}${env.PROEXT}"/>
35 <property name="out" location="${basedir}/${solar.platform}"/>
36 <property name="solar.jar" location="${env.SOLARVER}/${solar.platform}/bin${env.UPDMINOREXT}"/>
37 <property name="debug" value="yes"/>
38 <property name="optimize" value="no"/>
41 <echoproperties prefix="solar"/>
43 <mkdir dir="${out}/class"/>
46 <target name="xmerge" depends="init">
47 <ant dir="source/xmerge" target="all"/>
50 <target name="bridge" depends="xmerge, init">
51 <ant dir="source/bridge" target="all"/>
54 <target name="aportisdoc" depends="xmerge, init">
55 <ant dir="source/aportisdoc" target="all"/>
58 <target name="pexcel" depends="xmerge, init">
59 <ant dir="source/pexcel" target="all"/>
62 <target name="pocketword" depends="xmerge, init">
63 <ant dir="source/pocketword" target="all"/>
66 <target name="htmlsoff" depends="init">
67 <ant dir="source/htmlsoff" target="all"/>
70 <target name="wordsmith" depends="xmerge">
71 <echo>wordsmith filter is not supported</echo>
72 <ant dir="source/wordsmith" target="all"/>
75 <target name="minicalc" depends="xmerge">
76 <echo>minicalc filter is not supported</echo>
77 <ant dir="source/minicalc" target="all"/>
80 <target name="util" depends="xmerge, bridge, aportisdoc, pexcel, pocketword, htmlsoff">
81 <ant dir="util" target="all"/>
84 <target name="all" depends="xmerge, bridge, aportisdoc, pexcel, pocketword, htmlsoff, util">
88 <delete dir="${out}" />