diff options
author | Alasdair G Kergon <agk@redhat.com> | 2017-03-14 00:47:46 +0000 |
---|---|---|
committer | Alasdair G Kergon <agk@redhat.com> | 2017-03-14 00:47:46 +0000 |
commit | ca905681ccf9afd2b8313b5a7a89ac609c9a7ba5 (patch) | |
tree | 8816d8d92260d202f9c0edb83617b2e994ae2e1a /Makefile.in | |
parent | 38292ca1d0a78aa6b06a4180b8e87cb9dd417a22 (diff) | |
download | lvm2-ca905681ccf9afd2b8313b5a7a89ac609c9a7ba5.tar.gz |
man: Revise internal man page generation process.
For each section 8 man page, a .8_gen file is created from one of:
.8_main - Old-style man page - content used directly
.8_des and .8_end - Description and end section of a generated page
.8_pregen - Pre-generated page used if the generator fails
Other man sections are not generated and use the suffix .5_main or .7_main.
Developers should use 'make generate' to regenerate the .8_pregen files.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index b5252780d..31d428d9b 100644 --- a/Makefile.in +++ b/Makefile.in @@ -100,7 +100,7 @@ CLEAN_DIRS += autom4te.cache check check_system check_cluster check_local check_lvmetad check_lvmpolld check_lvmlockd_test check_lvmlockd_dlm check_lvmlockd_sanlock unit: all $(MAKE) -C test $(@) -conf.generate: tools +conf.generate man.generate: tools # how to use parenthesis in makefiles leftparen:=( @@ -130,8 +130,9 @@ rpm: dist $(top_srcdir)/spec/source.inc >$(rpmbuilddir)/SOURCES/source.inc rpmbuild -v --define "_topdir $(rpmbuilddir)" -ba $(top_srcdir)/spec/lvm2.spec -generate: conf.generate +generate: conf.generate man.generate $(MAKE) -C conf generate + $(MAKE) -C man generate all_man: $(MAKE) -C man all_man |