forked from ome/omero-documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
39 lines (31 loc) · 1.01 KB
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!--
build.xml
Ant build file for OME Sphinx documentation.
Download Apache Ant from http://ant.apache.org/.
Type "ant -p" for a list of targets.
-->
<project name="sphinx" default="html" basedir=".">
<description>Build file for sphinx documentation</description>
<property name="root.dir" location="."/>
<target name="html">
<ant dir="omero" target="html"/>
<ant dir="formats" target="html"/>
<ant dir="contributing" target="html"/>
</target>
<target name="latexpdf">
<ant dir="omero" target="latexpdf"/>
<ant dir="formats" target="latexpdf"/>
<ant dir="contributing" target="latexpdf"/>
</target>
<target name="pdf" depends="latexpdf"/>
<target name="linkcheck">
<ant dir="omero" target="linkcheck"/>
<ant dir="formats" target="linkcheck"/>
<ant dir="contributing" target="linkcheck"/>
</target>
<target name="clean">
<ant dir="omero" target="clean"/>
<ant dir="formats" target="clean"/>
<ant dir="contributing" target="clean"/>
</target>
</project>