This repository was archived by the owner on Mar 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
44 lines (37 loc) · 1.46 KB
/
build.xml
File metadata and controls
44 lines (37 loc) · 1.46 KB
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
40
41
42
43
44
<project name="Compose*/ARM" default="build">
<description>Compose* Annotated Reference Manual</description>
<!-- the main file -->
<property name="tex.main" value="ARM" />
<property name="verbose" value="true" />
<taskdef name="latex" classname="de.dokutransdata.antlatex.LaTeX" />
<taskdef name="bibtex" classname="de.dokutransdata.antlatex.BibTeXTask" />
<taskdef name="makeindex" classname="de.dokutransdata.antlatex.MakeindexTask" />
<target name="build">
<latex latexfile="${tex.main}.tex" pdftex="true" verbose="${verbose}" passThruLaTeXParameters="-include-directory=style${file.separator}contrib;-include-directory=style">
<bibtex run="true" />
<makeindex run="true" outFile="${tex.main}.nls" idxstyle="nomencl.ist">
<fileset dir="${basedir}">
<include name="*.nlo" />
</fileset>
</makeindex>
</latex>
</target>
<target name="clean">
<delete>
<fileset dir="${basedir}">
<include name="**/*.aux" />
<include name="${tex.main}.tps" />
<include name="${tex.main}.nlo" />
<include name="${tex.main}.lof" />
<include name="${tex.main}.log" />
<include name="${tex.main}.out" />
<include name="${tex.main}.toc" />
<include name="${tex.main}.bbl" />
<include name="${tex.main}.blg" />
<include name="${tex.main}.nls" />
<include name="${tex.main}.ilg" />
</fileset>
</delete>
</target>
<target name="rebuild" depends="clean,build" />
</project>