chiark / gitweb /
doc/Makefile.am: Enable `\nonstopmode' in TeX processing.
[sod] / doc / Makefile.am
CommitLineData
3f725f73
MW
1### -*-makefile-*-
2###
3### Build script for the manual
4###
5### (c) 2015 Straylight/Edgeware
6###
7
8###----- Licensing notice ---------------------------------------------------
9###
e0808c47 10### This file is part of the Sensible Object Design, an object system for C.
3f725f73
MW
11###
12### SOD is free software; you can redistribute it and/or modify
13### it under the terms of the GNU General Public License as published by
14### the Free Software Foundation; either version 2 of the License, or
15### (at your option) any later version.
16###
17### SOD is distributed in the hope that it will be useful,
18### but WITHOUT ANY WARRANTY; without even the implied warranty of
19### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20### GNU General Public License for more details.
21###
22### You should have received a copy of the GNU General Public License
23### along with SOD; if not, write to the Free Software Foundation,
24### Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25
26include $(top_srcdir)/vars.am
27
28doc_DATA =
29TEX_FILES =
30
ddfe4265 31CLEANFILES += *.aux *.out *.log *.toc *.ind *.idx *.ilg
3f725f73
MW
32EXTRA_DIST += $(TEX_FILES)
33
c64f50f5
MW
34TEXFLAGS = --interaction=nonstopmode \
35 --output-directory=$(abs_builddir)
7ad0d250 36
3f725f73
MW
37###--------------------------------------------------------------------------
38### The manual.
39
40## The master file.
41TEX_FILES += sod.tex
42
43## Main document styling and definitions.
44TEX_FILES += sod.sty
45
46## Tutorial.
47TEX_FILES += tutorial.tex
48
49## Reference.
50TEX_FILES += concepts.tex
51##TEX_FILES += cmdline.tex
52TEX_FILES += syntax.tex
53TEX_FILES += runtime.tex
54TEX_FILES += structures.tex
55
56## Lisp interface.
57TEX_FILES += lispintro.tex
58TEX_FILES += misc.tex
59TEX_FILES += parsing.tex
60TEX_FILES += clang.tex
756f4928
MW
61TEX_FILES += meta.tex
62TEX_FILES += layout.tex
bca101d9 63TEX_FILES += module.tex
999a0e35 64TEX_FILES += output.tex
3f725f73
MW
65
66## Other hacks.
67TEX_FILES += cutting-room-floor.tex
68
69## Building the output documents.
70MAINTAINERCLEANFILES += sod.pdf
71EXTRA_DIST += sod.pdf
72doc_DATA += sod.pdf
73sod.pdf: $(TEX_FILES)
7ad0d250
MW
74 cd $(srcdir) && pdflatex $(TEXFLAGS) sod.tex
75 cd $(srcdir) && pdflatex $(TEXFLAGS) sod.tex
ddfe4265 76 makeindex sod.idx
7ad0d250 77 cd $(srcdir) && pdflatex $(TEXFLAGS) sod.tex
3f725f73
MW
78
79###----- That's all, folks --------------------------------------------------