update dev300-m58
[ooovba.git] / xmerge / build.xml
blob330639fc83c0bbb905be2931bb456649919c1c26
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4   
5   Copyright 2008 by Sun Microsystems, Inc.
6  
7   OpenOffice.org - a multi-platform office productivity suite
8  
9   $RCSfile: build.xml,v $
11   $Revision: 1.8 $
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.
30 -->
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"/>
39     
40     <target name="init">
41         <echoproperties prefix="solar"/>
42         <mkdir dir="${out}"/>
43         <mkdir dir="${out}/class"/>
44     </target>
45     
46     <target name="xmerge" depends="init">
47         <ant dir="source/xmerge" target="all"/>
48     </target>       
50     <target name="bridge" depends="xmerge, init">
51         <ant dir="source/bridge" target="all"/>
52     </target>       
53     
54     <target name="aportisdoc" depends="xmerge, init">
55         <ant dir="source/aportisdoc" target="all"/>
56     </target>       
58     <target name="pexcel" depends="xmerge, init">
59         <ant dir="source/pexcel" target="all"/>
60     </target>       
62     <target name="pocketword" depends="xmerge, init">
63         <ant dir="source/pocketword" target="all"/>
64     </target>       
66     <target name="htmlsoff" depends="init">
67         <ant dir="source/htmlsoff" target="all"/>
68     </target>       
69     
70     <target name="wordsmith" depends="xmerge">
71         <echo>wordsmith filter is not supported</echo>
72         <ant dir="source/wordsmith" target="all"/>
73     </target>       
75     <target name="minicalc" depends="xmerge">
76         <echo>minicalc filter is not supported</echo>
77         <ant dir="source/minicalc" target="all"/>
78     </target>           
79         
80     <target name="util" depends="xmerge, bridge, aportisdoc, pexcel, pocketword, htmlsoff">
81         <ant dir="util" target="all"/>
82     </target>       
83                         
84     <target name="all" depends="xmerge, bridge, aportisdoc, pexcel, pocketword, htmlsoff, util">
85     </target>
86     
87     <target name="clean">
88         <delete dir="${out}" />
89     </target>
90     
91 </project>