Bump to docbook-xsl-stylesheets 1.79.2
[platform/upstream/docbook-xsl-stylesheets.git] / build.xml
1 <?xml version="1.0" encoding="UTF-8"?>\r
2 <project name="DocBook XSLT 1.0 stylesheets" default="all">\r
3 \r
4   <!-- \r
5        This is an attempt to rewrite build process in Ant.\r
6        This is still work in progress.\r
7 \r
8        If you want to build extensions, you must start Ant with property specifying path to your JDK, for example:\r
9 \r
10            ant -Dplatform.home=c:\jdk1.6\r
11 \r
12   -->\r
13 \r
14   <property name="dbroot.dir" value="${ant.file}/.."/>\r
15   <import file="tools/build-shared.xml"/>\r
16 \r
17   <target name="all" depends="build"/>\r
18 \r
19   <target name="build">\r
20     <ant dir="common"/>\r
21     <ant dir="lib"/>\r
22     <ant dir="html"/>\r
23     <ant dir="fo"/>\r
24     <ant dir="manpages"/>\r
25     <ant dir="htmlhelp"/>\r
26     <ant dir="javahelp"/>\r
27     <ant dir="eclipse"/>\r
28     <!-- FIXME: <ant dir="roundtrip"/> -->\r
29     <!-- FIXME: <ant dir="slides"/> -->\r
30     <ant dir="website"/>\r
31     <ant dir="extensions"/>\r
32     <ant dir="xhtml"/>\r
33     <ant dir="xhtml-1_1"/>\r
34     <!-- <ant dir="webhelp"/> --> <!-- Webhelp is excluded as it builds only demo document not files needed for runtime -->\r
35     <ant dir="xhtml5"/>\r
36     <ant dir="epub3"/>\r
37   </target>\r
38 \r
39   <target name="clean">\r
40     <ant dir="common" target="clean"/>\r
41     <ant dir="lib" target="clean"/>\r
42     <ant dir="html" target="clean"/>\r
43     <ant dir="fo" target="clean"/>\r
44     <ant dir="manpages" target="clean"/>\r
45     <ant dir="htmlhelp" target="clean"/>\r
46     <ant dir="javahelp" target="clean"/>\r
47     <ant dir="eclipse" target="clean"/>\r
48     <!-- <ant dir="roundtrip" target="clean"/> -->\r
49     <!-- <ant dir="slides" target="clean"/> -->\r
50     <ant dir="website" target="clean"/>\r
51     <ant dir="extensions" target="clean"/>\r
52     <ant dir="xhtml" target="clean"/>\r
53     <ant dir="xhtml-1_1" target="clean"/>\r
54     <!-- <ant dir="webhelp" target="clean"/> -->\r
55     <ant dir="xhtml5" target="clean"/>\r
56     <ant dir="epub3" target="clean"/>\r
57   </target>\r
58 \r
59 </project>\r