gnu: Rename module gnutls to tls.
[jackhill/guix/guix.git] / doc.am
CommitLineData
575ed8d5 1# GNU Guix --- Functional package management for GNU
54d6223d 2# Copyright © 2012, 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org>
575ed8d5
AE
3# Copyright © 2013 Andreas Enge <andreas@enge.fr>
4#
5# This file is part of GNU Guix.
6#
7# GNU Guix is free software; you can redistribute it and/or modify it
8# under the terms of the GNU General Public License as published by
9# the Free Software Foundation; either version 3 of the License, or (at
10# your option) any later version.
11#
12# GNU Guix is distributed in the hope that it will be useful, but
13# WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU General Public License for more details.
16#
17# You should have received a copy of the GNU General Public License
18# along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
19
a9424c08
LC
20info_TEXINFOS = doc/guix.texi
21EXTRA_DIST += \
8c01b9d0 22 doc/contributing.texi \
c6fabc5e 23 doc/emacs.texi \
a9424c08
LC
24 doc/fdl-1.3.texi \
25 doc/images/bootstrap-graph.dot \
02c72d16 26 doc/images/bootstrap-graph.eps \
fe36d84e
LC
27 doc/images/bootstrap-graph.pdf \
28 doc/environment-gdb.scm
575ed8d5 29
dd51caac
LC
30OS_CONFIG_EXAMPLES_TEXI = \
31 doc/os-config-bare-bones.texi \
32 doc/os-config-desktop.texi
33
931c132a 34# Bundle this file so that makeinfo finds it in out-of-source-tree builds.
dd51caac
LC
35BUILT_SOURCES += $(OS_CONFIG_EXAMPLES_TEXI)
36EXTRA_DIST += $(OS_CONFIG_EXAMPLES_TEXI)
37MAINTAINERCLEANFILES = $(OS_CONFIG_EXAMPLES_TEXI)
931c132a 38
dd51caac 39doc/os-config-%.texi: gnu/system/examples/%.tmpl
931c132a
LC
40 $(MKDIR_P) "`dirname "$@"`"
41 cp "$<" "$@"
42
575ed8d5 43infoimagedir = $(infodir)/images
a8f996c6
LC
44dist_infoimage_DATA = \
45 doc/images/bootstrap-graph.png \
46 doc/images/coreutils-size-map.png
575ed8d5
AE
47
48# Try hard to obtain an image size and aspect that's reasonable for inclusion
49# in an Info or PDF document.
54461ce7
LC
50DOT_OPTIONS = \
51 -Gratio=.9 -Gnodesep=.005 -Granksep=.00005 \
575ed8d5
AE
52 -Nfontsize=9 -Nheight=.1 -Nwidth=.1
53
54.dot.png:
cb9e50f6 55 $(DOT) -Tpng $(DOT_OPTIONS) < "$<" > "$@.tmp"
575ed8d5
AE
56 mv "$@.tmp" "$@"
57
54461ce7
LC
58.dot.pdf:
59 $(DOT) -Tpdf $(DOT_OPTIONS) < "$<" > "$@.tmp"
60 mv "$@.tmp" "$@"
61
575ed8d5 62.dot.eps:
cb9e50f6 63 $(DOT) -Teps $(DOT_OPTIONS) < "$<" > "$@.tmp"
575ed8d5
AE
64 mv "$@.tmp" "$@"
65
a9424c08
LC
66# We cannot add new dependencies to `doc/guix.pdf' & co. (info "(automake)
67# Extending"). Using the `-local' rules is imperfect, because they may be
68# triggered after the main rule. Oh, well.
02c72d16
LC
69pdf-local: $(top_srcdir)/doc/images/bootstrap-graph.pdf
70info-local: $(top_srcdir)/doc/images/bootstrap-graph.png
71ps-local: $(top_srcdir)/doc/images/bootstrap-graph.eps
52eca736
LC
72
73\f
74# Manual pages.
75
57cd353d 76doc/guix.1: scripts/guix
52eca736
LC
77 -LANGUAGE= $(top_builddir)/pre-inst-env \
78 $(HELP2MAN) --output="$@" guix
79
57cd353d 80doc/guix-daemon.1: guix-daemon
fb393cd8
LC
81 -LANGUAGE= $(top_builddir)/pre-inst-env \
82 $(HELP2MAN) --output="$@" guix-daemon
83
52eca736
LC
84define subcommand-manual-target
85
57cd353d 86doc/guix-$(1).1: scripts/guix guix/scripts/$(1).go
52eca736
LC
87 -LANGUAGE= $(top_builddir)/pre-inst-env \
88 $(HELP2MAN) --output="$$@" "guix $(1)"
89
90endef
91
92SUBCOMMANDS := \
93 archive \
94 build \
95 download \
39bee8a2 96 edit \
52eca736
LC
97 environment \
98 gc \
99 hash \
100 import \
101 lint \
102 package \
103 publish \
104 pull \
105 refresh \
fcc58db6 106 size \
52eca736
LC
107 system
108
109$(eval $(foreach subcommand,$(SUBCOMMANDS), \
110 $(call subcommand-manual-target,$(subcommand))))
111
112dist_man1_MANS = \
113 doc/guix.1 \
114 $(SUBCOMMANDS:%=doc/guix-%.1)
acec3beb
LC
115
116if BUILD_DAEMON
117
118dist_man1_MANS += \
119 doc/guix-daemon.1
120
121endif