]> git.lyx.org Git - lyx.git/blob - lib/docbook/common/build.xml
Use same find-dialogs as other bind-files also for x?emacs
[lyx.git] / lib / docbook / common / build.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project name="DocBook XSLT 1.0 stylesheets - Gentext &amp; Localization" default="all">
3
4   <property name="dbroot.dir" value="${ant.file}/../.."/>
5   <import file="../tools/build-shared.xml"/>
6
7   <target name="all">
8     <echo>Adding missing translations from English master localization...</echo>
9     <xslt style="../../gentext/xsl/xsl-primary-is-locale.xsl" destdir="." basedir="../../gentext/locale" force="true">
10       <factory name="com.icl.saxon.TransformerFactoryImpl"/>
11       <classpath refid="saxon.classpath"/>
12       <param name="en.locale.file" expression="en.xml"/>
13       <include name="*.xml"/>
14       <mapper type="flatten"/>
15     </xslt>
16   </target>
17
18   <target name="clean">
19     <delete>
20       <fileset dir=".">
21         <include name="*.xml"/>
22         <exclude name="build.xml"/>
23         <exclude name="l10n.xml"/>
24       </fileset>
25     </delete>
26   </target>
27
28 </project>