1<?xml version="1.0" encoding="UTF-8"?>
2<project name="DocBook XSLT 1.0 stylesheets - HTML5" default="all">
3
4  <property name="dbroot.dir" value="${ant.file}/../.."/>
5  <import file="../tools/build-shared.xml"/>
6
7  <target name="all" depends="html5">
8  </target>
9
10  <target name="html5">
11    <echo>Building HTML5 stylesheet...</echo>
12    <xslt in="../xhtml/docbook.xsl" out="xhtml-docbook.xsl" style="xhtml2xhtml5.xsl">
13      <factory name="com.icl.saxon.TransformerFactoryImpl"/>
14      <classpath refid="saxon.classpath"/>
15    </xslt>
16  </target>
17
18  <target name="clean">
19    <delete>
20      <fileset dir=".">
21	<include name="xhtml-docbook.xsl"/>
22      </fileset>
23    </delete>
24  </target>
25
26</project>
27