sessiond: notification: add support for async commands
[lttng-tools.git] / doc / man / Makefile.am
CommitLineData
9d16b343
MJ
1# SPDX-License-Identifier: GPL-2.0-only
2
6f6794a6 3# Man pages are only built if they are enabled at configure time.
ceb84f55
PP
4#
5# They should always be built before creating a distribution tarball.
6
7# function which adds the source directory prefix and adds a given suffix
8manaddsuffix = $(addsuffix $(1),$(addprefix $(srcdir)/,$(2)))
9
10# List only the names without the .*.txt extension here:
11MAN1_NAMES = \
ba50d967 12 lttng \
7bf169bd 13 lttng-create \
9d4408b8 14 lttng-destroy \
b3903b3a 15 lttng-set-session \
44f5039e 16 lttng-save \
30ec772c 17 lttng-load \
fb58d659 18 lttng-start \
e85eccc8 19 lttng-stop \
79e094df 20 lttng-version \
b4867b3b 21 lttng-view \
4bf0a332 22 lttng-enable-channel \
2e4886b8 23 lttng-disable-channel \
882108c6 24 lttng-add-context \
89dbeff8 25 lttng-list \
882443a6 26 lttng-track \
18d6fa61 27 lttng-untrack \
afaad15a 28 lttng-status \
12397c59 29 lttng-help \
e9b06e2b 30 lttng-snapshot \
290294e8 31 lttng-enable-event \
aec4668a 32 lttng-disable-event \
11533074 33 lttng-crash \
eded6438 34 lttng-metadata \
980bb5fd
PP
35 lttng-regenerate \
36 lttng-rotate \
37 lttng-enable-rotation \
73b818e7
JR
38 lttng-disable-rotation \
39 lttng-clear
ceb84f55 40MAN3_NAMES =
f5595c32 41MAN8_NAMES = lttng-sessiond lttng-relayd
aec4668a 42MAN1_NO_ASCIIDOC_NAMES =
23225252 43MAN3_NO_ASCIIDOC_NAMES = lttng-health-check
f5595c32 44MAN8_NO_ASCIIDOC_NAMES =
ceb84f55 45
ceb84f55
PP
46# AsciiDoc sources and outputs
47MAN1_TXT = $(call manaddsuffix,.1.txt,$(MAN1_NAMES))
48MAN3_TXT = $(call manaddsuffix,.3.txt,$(MAN3_NAMES))
49MAN8_TXT = $(call manaddsuffix,.8.txt,$(MAN8_NAMES))
50MAN_TXT = $(MAN1_TXT) $(MAN3_TXT) $(MAN8_TXT)
51MAN_XML = $(patsubst $(srcdir)/%.txt,%.xml,$(MAN_TXT))
52
53# common AsciiDoc source files
54COMMON_TXT = \
55 $(srcdir)/common-footer.txt \
83f27f71 56 $(srcdir)/common-cmd-footer.txt \
ba50d967
PP
57 $(srcdir)/common-cmd-options-head.txt \
58 $(srcdir)/common-cmd-help-options.txt
ceb84f55
PP
59
60# config
767ab8b2 61ASCIIDOC_CONF = $(srcdir)/asciidoc.conf
c4ee4984 62ASCIIDOC_ATTRS_CONF = $(builddir)/asciidoc-attrs.conf
360c4f63 63XSL_FILE = $(srcdir)/manpage.xsl
ceb84f55
PP
64
65# common dependencies
fd3e1238 66COMMON_DEPS = $(ASCIIDOC_CONF) $(COMMON_TXT)
ceb84f55 67
a3eae3c9
PP
68# man pages destinations
69MAN1 = $(addsuffix .1,$(MAN1_NAMES))
70MAN3 = $(addsuffix .3,$(MAN3_NAMES))
71MAN8 = $(addsuffix .8,$(MAN8_NAMES))
72MAN1_NO_ASCIIDOC = $(addsuffix .1,$(MAN1_NO_ASCIIDOC_NAMES))
73MAN3_NO_ASCIIDOC = $(addsuffix .3,$(MAN3_NO_ASCIIDOC_NAMES))
74MAN8_NO_ASCIIDOC = $(addsuffix .8,$(MAN8_NO_ASCIIDOC_NAMES))
75MAN = $(MAN1) $(MAN3) $(MAN8)
76
4fc83d94
PP
77# initially empty
78CLEANFILES =
79
80if EMBED_HELP
98477e49
MJ
81mantoh_verbose = $(mantoh_verbose_@AM_V@)
82mantoh_verbose_ = $(mantoh_verbose_@AM_DEFAULT_V@)
83mantoh_verbose_0 = @echo " MANTOH " $@;
84
4fc83d94
PP
85MAN1_H = $(addsuffix .1.h,$(MAN1_NAMES))
86MAN3_H = $(addsuffix .3.h,$(MAN3_NAMES))
87MAN8_H = $(addsuffix .8.h,$(MAN8_NAMES))
88MAN_H = $(MAN1_H) $(MAN3_H) $(MAN8_H)
89MAN_H_RECIPE = \
98477e49 90 $(mantoh_verbose_0)\
4fc83d94
PP
91 MANWIDTH=80 @MANPROG@ --encoding=UTF-8 --no-hyphenation --no-justification --local-file $< > $@ ; \
92 $(SED) -i 's/\\/\\\\/g' $@ ; \
93 $(SED) -i 's/"/\\"/g' $@ ; \
94 $(SED) -i 's/^\(.*\)$$/"\1\\n"/' $@
95
96%.1.h: %.1
97 $(MAN_H_RECIPE)
98
99%.3.h: %.3
100 $(MAN_H_RECIPE)
101
102%.8.h: %.8
103 $(MAN_H_RECIPE)
104
105all-local: $(MAN_H)
106
107CLEANFILES += $(MAN_H)
108endif # EMBED_HELP
109
a3eae3c9
PP
110if MAN_PAGES_OPT
111# at this point, we know the user asked to build the man pages
112if HAVE_ASCIIDOC_XMLTO
98477e49
MJ
113
114asciidoc_verbose = $(asciidoc_verbose_@AM_V@)
115asciidoc_verbose_ = $(asciidoc_verbose_@AM_DEFAULT_V@)
116asciidoc_verbose_0 = @echo " ASCIIDOC " $@;
117
118xmlto_verbose = $(xmlto_verbose_@AM_V@)
119xmlto_verbose_ = $(xmlto_verbose_@AM_DEFAULT_V@)
120xmlto_verbose_0 = @echo " XMLTO " $@;
121
ceb84f55 122# tools
98477e49 123ADOC = $(asciidoc_verbose)$(ASCIIDOC) -f $(ASCIIDOC_CONF) -f $(ASCIIDOC_ATTRS_CONF) -d manpage
ceb84f55 124ADOC_DOCBOOK = $(ADOC) -b docbook
360c4f63 125XTO = $(xmlto_verbose)$(XMLTO) -m $(XSL_FILE) man
ceb84f55 126
fd3e1238
PP
127# only add this dependency if we can build the man pages because it's
128# a file generated by the configure script, so it's more recent than
129# the pregenerated man pages in a tarball
130COMMON_DEPS += $(ASCIIDOC_ATTRS_CONF)
131
ceb84f55
PP
132# recipes
133%.1.xml: $(srcdir)/%.1.txt $(COMMON_DEPS)
134 $(ADOC_DOCBOOK) -o $@ $<
135
360c4f63 136%.1: %.1.xml $(XSL_FILE)
98477e49 137 $(XTO) $< 2>/dev/null
ceb84f55
PP
138
139%.3.xml: $(srcdir)/%.3.txt $(COMMON_DEPS)
140 $(ADOC_DOCBOOK) -o $@ $<
141
360c4f63 142%.3: %.3.xml $(XSL_FILE)
98477e49 143 $(XTO) $< 2>/dev/null
ceb84f55
PP
144
145%.8.xml: $(srcdir)/%.8.txt $(COMMON_DEPS)
146 $(ADOC_DOCBOOK) -o $@ $<
147
360c4f63 148%.8: %.8.xml $(XSL_FILE)
98477e49 149 $(XTO) $< 2>/dev/null
ceb84f55 150
a3eae3c9 151# only clean the generated files if we have the tools to generate them again
4fc83d94 152CLEANFILES += $(MAN_XML) $(MAN)
a3eae3c9
PP
153else # HAVE_ASCIIDOC_XMLTO
154# create man page targets used to stop the build if we want to
155# build the man pages, but we don't have the necessary tools to do so
156ERR_MSG = "Error: Cannot build target because asciidoc or xmlto tool is missing."
157ERR_MSG += "Make sure both tools are installed and run the configure script again."
158
159%.1: $(srcdir)/%.1.txt $(COMMON_DEPS)
160 @echo $(ERR_MSG)
161 @false
162
163%.3: $(srcdir)/%.3.txt $(COMMON_DEPS)
164 @echo $(ERR_MSG)
165 @false
166
167%.8: $(srcdir)/%.8.txt $(COMMON_DEPS)
168 @echo $(ERR_MSG)
ceb84f55 169 @false
a3eae3c9
PP
170endif # HAVE_ASCIIDOC_XMLTO
171endif # MAN_PAGES_OPT
172
173# those are always installed since they are directly written in troff
174dist_man1_MANS = $(MAN1_NO_ASCIIDOC)
175dist_man3_MANS = $(MAN3_NO_ASCIIDOC)
176dist_man8_MANS = $(MAN8_NO_ASCIIDOC)
177
178if MAN_PAGES_OPT
179# building man pages: we can install and distribute them
ceb84f55
PP
180dist_man1_MANS += $(MAN1)
181dist_man3_MANS += $(MAN3)
182dist_man8_MANS += $(MAN8)
a3eae3c9
PP
183endif # MAN_PAGES_OPT
184
2f1c0906
PP
185if !MAN_PAGES_OPT
186dist-hook:
187 @echo "Error: Please enable the man pages before creating a distribution tarball."
188 @false
189endif # !MAN_PAGES_OPT
190
a3eae3c9 191# always distribute the source files
360c4f63 192EXTRA_DIST = $(MAN_TXT) $(COMMON_TXT) $(XSL_FILE) \
c4ee4984 193 $(ASCIIDOC_CONF) $(ASCIIDOC_ATTRS_CONF).in
4fc83d94
PP
194
195# keep generated man pages that can be considered intermediate files
196.PRECIOUS: %.1 %.3 %.8
This page took 0.052723 seconds and 5 git commands to generate.