aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorng0 <ng0@infotropique.org>2017-09-06 08:24:46 +0000
committerng0 <ng0@infotropique.org>2017-09-06 08:24:46 +0000
commitc0445ad1258469470c2158184bee8c88ed42615b (patch)
tree6f3d96c91fd1ee2930ecc5ba8af92dd86024ee0a /doc
parent0e0e6e3594655a92532f32c46bf2abf5a5d4c0c2 (diff)
downloadgnunet-c0445ad1258469470c2158184bee8c88ed42615b.tar.gz
gnunet-c0445ad1258469470c2158184bee8c88ed42615b.zip
doc: Makefile: Add gnunet-c-tutorial.
Diffstat (limited to 'doc')
-rw-r--r--doc/Makefile.am45
1 files changed, 39 insertions, 6 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am
index 8caacb2bd..1e5a12321 100644
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
@@ -32,11 +32,37 @@ gnunet_doc_images = \
32 images/service_stack.png \ 32 images/service_stack.png \
33 images/gnunet-gtk-0-10-fs-search.png 33 images/gnunet-gtk-0-10-fs-search.png
34 34
35info_TEXINFOS = \ 35gnunet_tutorial_examples = \
36 gnunet.texi 36 001.c \
37 002.c \
38 003.c \
39 004.c \
40 005.c \
41 006.c \
42 007.c \
43 008.c \
44 009.c \
45 010.c \
46 011.c \
47 012.c \
48 013.c \
49 014.c \
50 015.c \
51 016.c \
52 017.c \
53 018.c \
54 019.c \
55 020.c \
56 021.c \
57 022.c \
58 023.c \
59 024.c \
60 025.c \
61 026.c
37 62
38# FIXME: include this file in the documentation: 63info_TEXINFOS = \
39# gnunet-c-tutorial.tex 64 gnunet.texi \
65 gnunet-c-tutorial.texi
40 66
41gnunet_TEXINFOS = \ 67gnunet_TEXINFOS = \
42 chapters/developer.texi \ 68 chapters/developer.texi \
@@ -48,7 +74,8 @@ gnunet_TEXINFOS = \
48 74
49EXTRA_DIST = \ 75EXTRA_DIST = \
50 $(gnunet_TEXINFOS) \ 76 $(gnunet_TEXINFOS) \
51 $(gnunet_doc_images) 77 $(gnunet_doc_images) \
78 $(gnunet_tutorial_examples)
52 79
53version.texi: 80version.texi:
54 echo "@set UPDATED $(date +'%d %B %Y')" > $@ 81 echo "@set UPDATED $(date +'%d %B %Y')" > $@
@@ -58,17 +85,23 @@ version.texi:
58 85
59doc-pdf: version.texi 86doc-pdf: version.texi
60 @makeinfo --pdf --quiet gnunet.texi 87 @makeinfo --pdf --quiet gnunet.texi
88doc-pdf-tutorial: version.texi
89 @makeinfo --pdf --quiet gnunet-c-tutorial.texi
61 90
62doc-html: version.texi 91doc-html: version.texi
63 @makeinfo --html gnunet.texi 92 @makeinfo --html gnunet.texi
93doc-html-tutorial: version.texi
94 @makeinfo --html gnunet-c-tutorial.texi
64 95
65doc-info: version.texi 96doc-info: version.texi
66 @makeinfo --no-split gnunet.texi 97 @makeinfo --no-split gnunet.texi
98doc-info-tutorial: version.texi
99 @makeinfo --no-split gnunet-c-tutorial.texi
67 100
68# FIXME: rm *.html and *.pdf 101# FIXME: rm *.html and *.pdf
69doc-clean: 102doc-clean:
70 @rm *.aux *.log *.toc *.cp *.cps 103 @rm *.aux *.log *.toc *.cp *.cps
71 104
72doc-all: doc-pdf doc-html doc-info 105doc-all: doc-pdf doc-html doc-info doc-pdf-tutorial doc-html-tutorial doc-info-tutorial
73 106
74.PHONY: version.texi 107.PHONY: version.texi