aboutsummaryrefslogtreecommitdiff
path: root/doc/tutorial/Makefile.am
diff options
context:
space:
mode:
Diffstat (limited to 'doc/tutorial/Makefile.am')
-rw-r--r--doc/tutorial/Makefile.am15
1 files changed, 14 insertions, 1 deletions
diff --git a/doc/tutorial/Makefile.am b/doc/tutorial/Makefile.am
index f3908aa99..8525563a2 100644
--- a/doc/tutorial/Makefile.am
+++ b/doc/tutorial/Makefile.am
@@ -7,8 +7,21 @@ docdir = $(datadir)/doc/gnunet/
7# $(DOT_FILES:%.dot=%.eps) \ 7# $(DOT_FILES:%.dot=%.eps) \
8# $(DOT_FILES:%.dot=%.pdf) 8# $(DOT_FILES:%.dot=%.pdf)
9 9
10# See ../handbook/Makefile.am comment! 10if ACTIVATE_TEXINFO4
11# NOTE: While GNU makeinfo 6.5 supports --css-ref=URL,
12# makeinfo 4.8 (in NetBSD 8.0, macOS, and maybe other
13# base) does only support --css-include=FILE.
14# The only difference is a shorter html output and
15# in 6.5 the ability to use refs instead of include.
16# We prefer not to break builds in this case, so
17# we use the include version which is backwards compatible
18# and upwards compatible, while the ref variant is neither.
11AM_MAKEINFOHTMLFLAGS = --no-split --css-include=style.css --css-include=manual.css 19AM_MAKEINFOHTMLFLAGS = --no-split --css-include=style.css --css-include=manual.css
20else
21# In the 5.x version they added `--split=chapters|sections` in
22# addition to `--split=nodes`.
23AM_MAKEINFOHTMLFLAGS = --split=sections --css-ref=style.css --css-ref=manual.css
24endif
12 25
13#DOT_OPTIONS = \ 26#DOT_OPTIONS = \
14# -Gratio=.9 -Gnodesep=.005 -Granksep=.00005 \ 27# -Gratio=.9 -Gnodesep=.005 -Granksep=.00005 \