Merge branch 'master' into core-updates
[jackhill/guix/guix.git] / doc / local.mk
1 # GNU Guix --- Functional package management for GNU
2 # Copyright © 2016 Eric Bavier <bavier@member.fsf.org>
3 # Copyright © 2012, 2013, 2014, 2015, 2016 Ludovic Courtès <ludo@gnu.org>
4 # Copyright © 2013 Andreas Enge <andreas@enge.fr>
5 # Copyright © 2016 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
6 # Copyright © 2016 Mathieu Lirzin <mthl@gnu.org>
7 #
8 # This file is part of GNU Guix.
9 #
10 # GNU Guix is free software; you can redistribute it and/or modify it
11 # under the terms of the GNU General Public License as published by
12 # the Free Software Foundation; either version 3 of the License, or (at
13 # your option) any later version.
14 #
15 # GNU Guix is distributed in the hope that it will be useful, but
16 # WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 # GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License
21 # along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
22
23 info_TEXINFOS = %D%/guix.texi
24
25 DOT_FILES = \
26 %D%/images/bootstrap-graph.dot \
27 %D%/images/bootstrap-packages.dot \
28 %D%/images/coreutils-graph.dot \
29 %D%/images/coreutils-bag-graph.dot \
30 %D%/images/service-graph.dot \
31 %D%/images/shepherd-graph.dot
32
33 DOT_VECTOR_GRAPHICS = \
34 $(DOT_FILES:%.dot=%.eps) \
35 $(DOT_FILES:%.dot=%.pdf)
36
37 EXTRA_DIST += \
38 %D%/htmlxref.cnf \
39 %D%/contributing.texi \
40 %D%/emacs.texi \
41 %D%/fdl-1.3.texi \
42 $(DOT_FILES) \
43 $(DOT_VECTOR_GRAPHICS) \
44 %D%/images/coreutils-size-map.eps \
45 %D%/environment-gdb.scm \
46 %D%/package-hello.scm
47
48 OS_CONFIG_EXAMPLES_TEXI = \
49 %D%/os-config-bare-bones.texi \
50 %D%/os-config-desktop.texi \
51 %D%/os-config-lightweight-desktop.texi
52
53 # Bundle this file so that makeinfo finds it in out-of-source-tree builds.
54 BUILT_SOURCES += $(OS_CONFIG_EXAMPLES_TEXI)
55 EXTRA_DIST += $(OS_CONFIG_EXAMPLES_TEXI)
56 MAINTAINERCLEANFILES = $(OS_CONFIG_EXAMPLES_TEXI)
57
58 %D%/os-config-%.texi: gnu/system/examples/%.tmpl
59 $(AM_V_GEN)$(MKDIR_P) "`dirname $@`"; \
60 cp "$<" "$@"
61
62 infoimagedir = $(infodir)/images
63 dist_infoimage_DATA = \
64 $(DOT_FILES:%.dot=%.png) \
65 %D%/images/coreutils-size-map.png
66
67 # Try hard to obtain an image size and aspect that's reasonable for inclusion
68 # in an Info or PDF document.
69 DOT_OPTIONS = \
70 -Gratio=.9 -Gnodesep=.005 -Granksep=.00005 \
71 -Nfontsize=9 -Nheight=.1 -Nwidth=.1
72
73 .dot.png:
74 $(AM_V_DOT)$(DOT) -Tpng $(DOT_OPTIONS) < "$<" > "$(srcdir)/$@.tmp"; \
75 mv "$(srcdir)/$@.tmp" "$(srcdir)/$@"
76
77 .dot.pdf:
78 $(AM_V_DOT)$(DOT) -Tpdf $(DOT_OPTIONS) < "$<" > "$(srcdir)/$@.tmp"; \
79 mv "$(srcdir)/$@.tmp" "$(srcdir)/$@"
80
81 .dot.eps:
82 $(AM_V_DOT)$(DOT) -Teps $(DOT_OPTIONS) < "$<" > "$(srcdir)/$@.tmp"; \
83 mv "$(srcdir)/$@.tmp" "$(srcdir)/$@"
84
85 .png.eps:
86 $(AM_V_GEN)convert "$<" "$@-tmp.eps"; \
87 mv "$@-tmp.eps" "$@"
88
89 # We cannot add new dependencies to `%D%/guix.pdf' & co. (info "(automake)
90 # Extending"). Using the `-local' rules is imperfect, because they may be
91 # triggered after the main rule. Oh, well.
92 pdf-local: $(DOT_FILES=%.dot=$(top_srcdir)/%.pdf)
93 info-local: $(DOT_FILES=%.dot=$(top_srcdir)/%.png)
94 ps-local: $(DOT_FILES=%.dot=$(top_srcdir)/%.eps) \
95 $(top_srcdir)/%D%/images/coreutils-size-map.eps
96 dvi-local: ps-local
97
98 ## ----------- ##
99 ## Man pages. ##
100 ## ----------- ##
101
102 # The man pages are generated using GNU Help2man. In makefiles rules they
103 # depend not on the binary, but on the source files. This usage allows a
104 # manual page to be generated by the maintainer and included in the
105 # distribution without requiring the end-user to have 'help2man' installed.
106 # They are built in $(srcdir) like info manuals.
107
108 sub_commands_mans = \
109 $(srcdir)/%D%/guix-archive.1 \
110 $(srcdir)/%D%/guix-build.1 \
111 $(srcdir)/%D%/guix-challenge.1 \
112 $(srcdir)/%D%/guix-download.1 \
113 $(srcdir)/%D%/guix-edit.1 \
114 $(srcdir)/%D%/guix-environment.1 \
115 $(srcdir)/%D%/guix-gc.1 \
116 $(srcdir)/%D%/guix-hash.1 \
117 $(srcdir)/%D%/guix-import.1 \
118 $(srcdir)/%D%/guix-lint.1 \
119 $(srcdir)/%D%/guix-package.1 \
120 $(srcdir)/%D%/guix-publish.1 \
121 $(srcdir)/%D%/guix-pull.1 \
122 $(srcdir)/%D%/guix-refresh.1 \
123 $(srcdir)/%D%/guix-size.1 \
124 $(srcdir)/%D%/guix-system.1
125
126 dist_man1_MANS = \
127 $(srcdir)/%D%/guix.1 \
128 $(sub_commands_mans)
129
130 gen_man = \
131 LANGUAGE= $(top_builddir)/pre-inst-env $(HELP2MAN) \
132 $(HELP2MANFLAGS)
133
134 HELP2MANFLAGS = --source=GNU --info-page=$(PACKAGE_TARNAME)
135
136 $(srcdir)/%D%/guix.1: scripts/guix.in $(sub_commands_mans)
137 -$(AM_V_HELP2MAN)$(gen_man) --output="$@" `basename "$@" .1`
138
139 # The 'case' ensures the man pages are only generated if the corresponding
140 # source script (the first prerequisite) has been changed. The $(GOBJECTS)
141 # prerequisite is solely meant to force these docs to be made only after all
142 # Guile modules have been compiled.
143 $(srcdir)/%D%/guix-%.1: guix/scripts/%.scm $(GOBJECTS)
144 -@case '$?' in \
145 *$<*) $(AM_V_P) && set -x || echo " HELP2MAN $@"; \
146 $(gen_man) --output="$@" "guix $*";; \
147 *) : ;; \
148 esac
149
150 if BUILD_DAEMON
151
152 dist_man1_MANS += $(srcdir)/%D%/guix-daemon.1
153
154 $(srcdir)/%D%/guix-daemon.1: nix/nix-daemon/guix-daemon.cc
155 -$(AM_V_HELP2MAN)$(gen_man) --output="$@" `basename "$@" .1`
156
157 endif