doc/Makefile.am: Preserve `~' correctly in the version string.
[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 BIB_FILES =
31
32 CLEANFILES += *.aux *.out *.log *.toc *.ind *.idx *.ilg
33 EXTRA_DIST += $(TEX_FILES) $(BIB_FILES)
34
35 TEXFLAGS = --interaction=batchmode \
36 --output-directory=$(abs_builddir)
37 BIBTEXFLAGS = --terse
38 MAKEINDEXFLAGS = -q
39
40 V_LATEX = $(V_LATEX_@AM_V@)
41 V_LATEX_ = $(V_LATEX_@AM_DEFAULT_V@)
42 V_LATEX_0 = @echo " LATEX $@";
43
44 V_BIBTEX = $(V_BIBTEX_@AM_V@)
45 V_BIBTEX_ = $(V_BIBTEX_@AM_DEFAULT_V@)
46 V_BIBTEX_0 = @echo " BIBTEX $@";
47
48 V_MAKEINDEX = $(V_MAKEINDEX_@AM_V@)
49 V_MAKEINDEX_ = $(V_MAKEINDEX_@AM_DEFAULT_V@)
50 V_MAKEINDEX_0 = @echo " MAKEIDX $@";
51
52 run_pdflatex = $(V_LATEX)cd $(srcdir) && \
53 version=$$(echo '$(VERSION)' | sed 's/~/\\textasciitilde /g') && \
54 $(PDFLATEX) $(TEXFLAGS) \
55 --jobname=$(basename $1) \
56 "\def\pkgversion{$$version}\input{$1}"
57
58 ###--------------------------------------------------------------------------
59 ### The manual.
60
61 ## The master file.
62 TEX_FILES += sod.tex
63
64 ## Main document styling and definitions.
65 TEX_FILES += sod.sty
66
67 ## The introduction.
68 TEX_FILES += intro.tex
69
70 ## Tutorial.
71 TEX_FILES += tutorial.tex
72
73 ## Reference.
74 TEX_FILES += refintro.tex
75 TEX_FILES += concepts.tex
76 ##TEX_FILES += cmdline.tex
77 TEX_FILES += syntax.tex
78 TEX_FILES += runtime.tex
79 TEX_FILES += structures.tex
80
81 ## Lisp interface.
82 TEX_FILES += lispintro.tex
83 TEX_FILES += misc.tex
84 TEX_FILES += parsing.tex
85 TEX_FILES += clang.tex
86 TEX_FILES += meta.tex
87 TEX_FILES += layout.tex
88 TEX_FILES += module.tex
89 TEX_FILES += output.tex
90
91 ## Other hacks.
92 TEX_FILES += cutting-room-floor.tex
93
94 ## Bibliography database.
95 BIB_FILES += sod.bib
96
97 ## Building the bibliography style.
98 EXTRA_DIST += mdwalpha.dbj
99
100 ## Building the output documents.
101 MAINTAINERCLEANFILES += sod.pdf sod.bst babelbst.tex
102
103 if HAVE_LATEX
104 doc_DATA += sod.pdf
105 EXTRA_DIST += sod.pdf
106 sod.pdf: $(TEX_FILES) $(BIB_FILES)
107 $(call run_pdflatex,sod.tex)
108 $(V_BIBTEX)env \
109 BIBINPUTS=$(srcdir):$$BIBINPUTS \
110 BSTINPUTS=$(srcdir):$$BSTINPUTS \
111 $(BIBTEX) $(BIBTEXFLAGS) sod.aux
112 $(call run_pdflatex,sod.tex)
113 $(V_MAKEINDEX)$(MAKEINDEX) $(MAKEINDEXFLAGS) sod.idx
114 $(call run_pdflatex,sod.tex)
115
116 if HAVE_CUSTOM_BIB
117 BIB_FILES += mdwalpha.bst babelbst.tex
118 babelbst.tex: mdwalpha.bst
119 mdwalpha.bst: mdwalpha.dbj
120 (cd $(srcdir) && $(TEX) \
121 --jobname=mdwalpha \
122 --interaction=batchmode \
123 --output-directory=$(abs_builddir) \
124 '\let\ifbatching\iftrue \input mdwalpha.dbj')
125 endif
126 endif
127
128 ###----- That's all, folks --------------------------------------------------