doc/parsing.tex: Reorganize the parsing-syntax section.
[sod] / doc / Makefile.am
... / ...
CommitLineData
1### -*-makefile-*-
2###
3### Build script for the manual
4###
5### (c) 2015 Straylight/Edgeware
6###
7
8###----- Licensing notice ---------------------------------------------------
9###
10### This file is part of the Sensible Object Design, an object system for C.
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
31CLEANFILES += *.aux *.out *.log *.toc *.ind *.idx *.ilg
32EXTRA_DIST += $(TEX_FILES)
33
34TEXFLAGS = --interaction=nonstopmode \
35 --output-directory=$(abs_builddir)
36
37run_pdflatex = cd $(srcdir) && \
38 pdflatex $(TEXFLAGS) \
39 --jobname=$(basename $1) \
40 '\def\pkgversion{$(VERSION)}\input{$1}'
41
42###--------------------------------------------------------------------------
43### The manual.
44
45## The master file.
46TEX_FILES += sod.tex
47
48## Main document styling and definitions.
49TEX_FILES += sod.sty
50
51## The introduction.
52TEX_FILES += intro.tex
53
54## Tutorial.
55TEX_FILES += tutorial.tex
56
57## Reference.
58TEX_FILES += concepts.tex
59##TEX_FILES += cmdline.tex
60TEX_FILES += syntax.tex
61TEX_FILES += runtime.tex
62TEX_FILES += structures.tex
63
64## Lisp interface.
65TEX_FILES += lispintro.tex
66TEX_FILES += misc.tex
67TEX_FILES += parsing.tex
68TEX_FILES += clang.tex
69TEX_FILES += meta.tex
70TEX_FILES += layout.tex
71TEX_FILES += module.tex
72TEX_FILES += output.tex
73
74## Other hacks.
75TEX_FILES += cutting-room-floor.tex
76
77## Building the output documents.
78MAINTAINERCLEANFILES += sod.pdf
79EXTRA_DIST += sod.pdf
80doc_DATA += sod.pdf
81sod.pdf: $(TEX_FILES)
82 $(call run_pdflatex,sod.tex)
83 bibtex sod.aux
84 $(call run_pdflatex,sod.tex)
85 makeindex sod.idx
86 $(call run_pdflatex,sod.tex)
87
88###----- That's all, folks --------------------------------------------------