Implement LTTNG_UST_BLOCKING_RETRY_TIMEOUT
[lttng-ust.git] / doc / man / Makefile.am
CommitLineData
4ddbd0b7
PP
1# Man pages are only built if they are enabled at configure time.
2#
3# They should always be built before creating a distribution tarball.
4
5# Function which adds the source directory prefix and adds a given suffix:
6manaddsuffix = $(addsuffix $(1),$(addprefix $(srcdir)/,$(2)))
7
8# List only the names without the .*.txt extension here:
9MAN1_NAMES = \
10 lttng-gen-tp
11MAN3_NAMES = \
12 lttng-ust \
13 tracef \
14 tracelog \
15 lttng-ust-dl \
16 lttng-ust-cyg-profile
17
18# troff man pages:
19MAN3_TROFF = do_tracepoint.3 tracepoint.3 tracepoint_enabled.3
20
21# AsciiDoc sources and outputs:
22MAN1_TXT = $(call manaddsuffix,.1.txt,$(MAN1_NAMES))
23MAN3_TXT = $(call manaddsuffix,.3.txt,$(MAN3_NAMES))
24MAN_TXT = $(MAN1_TXT) $(MAN3_TXT) $(MAN8_TXT)
25MAN_XML = $(patsubst $(srcdir)/%.txt,%.xml,$(MAN_TXT))
26
27# Common AsciiDoc source files:
28COMMON_TXT = \
29 $(srcdir)/common-footer.txt \
30 $(srcdir)/common-authors.txt \
31 $(srcdir)/common-copyrights.txt \
32 $(srcdir)/log-levels.txt \
33 $(srcdir)/tracef-tracelog-limitations.txt
34
35# AsciiDoc configuration and XSL files:
36ASCIIDOC_CONF = $(srcdir)/asciidoc.conf
37XSL_FILES = \
38 manpage.xsl \
39 manpage-callouts.xsl \
40 manpage-bold-literal.xsl \
41 manpage-links.xsl \
42 manpage-headings.xsl
43XSL_SRC_FILES = $(addprefix $(srcdir)/xsl/,$(XSL_FILES))
44
45# Common dependencies:
46COMMON_DEPS = $(ASCIIDOC_CONF) $(COMMON_TXT)
47
48# Man pages destinations:
49MAN1 = $(addsuffix .1,$(MAN1_NAMES))
50MAN3 = $(addsuffix .3,$(MAN3_NAMES))
51MAN = $(MAN1) $(MAN3)
52
53if MAN_PAGES_OPT
54# At this point, we know the user asked to build the man pages.
55if HAVE_ASCIIDOC_XMLTO
56# Tools to execute:
57ADOC = $(ASCIIDOC) -f $(ASCIIDOC_CONF) -d manpage \
2b4444ce 58 -a lttng_version="$(PACKAGE_VERSION)" \
6f97f9c2
MD
59 -a lttng_ust_register_timeout="@LTTNG_UST_DEFAULT_CONSTRUCTOR_TIMEOUT_MS@" \
60 -a lttng_ust_blocking_retry_timeout="@LTTNG_UST_DEFAULT_BLOCKING_RETRY_TIMEOUT_MS@"
61
4ddbd0b7
PP
62ADOC_DOCBOOK = $(ADOC) -b docbook
63XTO = $(XMLTO) -m $(firstword $(XSL_SRC_FILES)) man
64
65# Recipes:
66%.1.xml: $(srcdir)/%.1.txt $(COMMON_DEPS)
67 $(ADOC_DOCBOOK) -o $@ $<
68
69%.1: %.1.xml $(XSL_SRC_FILES)
70 $(XTO) $<
71
72%.3.xml: $(srcdir)/%.3.txt $(COMMON_DEPS)
73 $(ADOC_DOCBOOK) -o $@ $<
74
75%.3: %.3.xml $(XSL_SRC_FILES)
76 $(XTO) $<
77
78# Only clean the generated files if we have the tools to generate them again.
79CLEANFILES = $(MAN_XML) $(MAN)
80else # HAVE_ASCIIDOC_XMLTO
81# Create man page targets used to stop the build if we want to
82# build the man pages, but we don't have the necessary tools to do so.
83ERR_MSG = "Error: Cannot build target because asciidoc or xmlto tool is missing."
84ERR_MSG += "Make sure both tools are installed and run the configure script again."
85
86%.1: $(srcdir)/%.1.txt $(COMMON_DEPS)
87 @echo $(ERR_MSG)
88 @false
89
90%.3: $(srcdir)/%.3.txt $(COMMON_DEPS)
91 @echo $(ERR_MSG)
92 @false
93endif # HAVE_ASCIIDOC_XMLTO
94endif # MAN_PAGES_OPT
95
96# Start with empty distributed/installed man pages:
97dist_man1_MANS =
98dist_man3_MANS =
99EXTRA_DIST =
100
101if MAN_PAGES_OPT
102# Building man pages: we can install and distribute them.
103dist_man1_MANS += $(MAN1)
104dist_man3_MANS += $(MAN3) $(MAN3_TROFF)
105else # MAN_PAGES_OPT
106# Those are not known by automake yet because dist_man3_MANS is empty
107# at this point, so make sure they are distributed.
108EXTRA_DIST += $(MAN3_TROFF)
109endif # MAN_PAGES_OPT
110
111if !MAN_PAGES_OPT
112dist-hook:
113 @echo "Error: Please enable the man pages before creating a distribution tarball."
114 @false
115endif # !MAN_PAGES_OPT
116
117# Always distribute the source files.
118EXTRA_DIST += $(MAN_TXT) $(COMMON_TXT) $(XSL_SRC_FILES) $(ASCIIDOC_CONF)
This page took 0.026987 seconds and 4 git commands to generate.