chiark / gitweb /
doc/Makefile.am: Abstract out repeated TeX arguments into a variable.
[sod] / doc / Makefile.am
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
26 include $(top_srcdir)/vars.am
27
28 doc_DATA                 =
29 TEX_FILES                =
30
31 CLEANFILES              += *.aux *.out *.log *.toc *.ind *.idx *.ilg
32 EXTRA_DIST              += $(TEX_FILES)
33
34 TEXFLAGS                 = --output-directory=$(abs_builddir)
35
36 ###--------------------------------------------------------------------------
37 ### The manual.
38
39 ## The master file.
40 TEX_FILES               += sod.tex
41
42 ## Main document styling and definitions.
43 TEX_FILES               += sod.sty
44
45 ## Tutorial.
46 TEX_FILES               += tutorial.tex
47
48 ## Reference.
49 TEX_FILES               += concepts.tex
50 ##TEX_FILES             += cmdline.tex
51 TEX_FILES               += syntax.tex
52 TEX_FILES               += runtime.tex
53 TEX_FILES               += structures.tex
54
55 ## Lisp interface.
56 TEX_FILES               += lispintro.tex
57 TEX_FILES               += misc.tex
58 TEX_FILES               += parsing.tex
59 TEX_FILES               += clang.tex
60 TEX_FILES               += meta.tex
61 TEX_FILES               += layout.tex
62 TEX_FILES               += module.tex
63 TEX_FILES               += output.tex
64
65 ## Other hacks.
66 TEX_FILES               += cutting-room-floor.tex
67
68 ## Building the output documents.
69 MAINTAINERCLEANFILES    += sod.pdf
70 EXTRA_DIST              += sod.pdf
71 doc_DATA                += sod.pdf
72 sod.pdf: $(TEX_FILES)
73         cd $(srcdir) && pdflatex $(TEXFLAGS) sod.tex
74         cd $(srcdir) && pdflatex $(TEXFLAGS) sod.tex
75         makeindex sod.idx
76         cd $(srcdir) && pdflatex $(TEXFLAGS) sod.tex
77
78 ###----- That's all, folks --------------------------------------------------