r1214: Moving images folder
[bugdar.git] / locale / en_US / manual-xml / build.xml
1 <?xml version="1.0" encoding="utf-8" ?>
2
3 <project name="English (US) Manual" default="html" basedir=".">
4 <description>The Apache Ant buildfile to create the manual to simplify processing.</description>
5
6 <property name="xsltproc" value="xsltproc"/>
7 <property name="outputdir" location="../manual"/>
8 <property name="xslfile" location="../../manual.xsl"/>
9 <property name="mainfile" location="manual.xml"/>
10
11 <target name="check">
12 <exec executable="xmllint">
13 <arg line="--valid --noout --postvalid ${mainfile}"/>
14 </exec>
15 </target>
16
17 <target name="html">
18 <exec executable="${xsltproc}">
19 <arg line="--output ${outputdir}/index.html ${xslfile} ${mainfile}"/>
20 </exec>
21 </target>
22
23 <target name="clean">
24 <delete>
25 <fileset dir="${outputdir}" includes="*.html"/>
26 </delete>
27 </target>
28 </project>