diff options
Diffstat (limited to 'doc/fr')
-rw-r--r-- | doc/fr/Makefile.am | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/doc/fr/Makefile.am b/doc/fr/Makefile.am index 2a63e542e..01a0ec134 100644 --- a/doc/fr/Makefile.am +++ b/doc/fr/Makefile.am @@ -23,6 +23,7 @@ docdir = $(datadir)/doc/$(PACKAGE) EXTRA_DIST = CMakeLists.txt \ docinfo.html \ weechat.1.fr.adoc \ + weechat-headless.1.fr.adoc \ cmdline_options.fr.adoc \ weechat_user.fr.adoc \ weechat_plugin_api.fr.adoc \ @@ -36,7 +37,8 @@ EXTRA_DIST = CMakeLists.txt \ $(wildcard autogen/plugin_api/*.adoc) if MAN - man_targets = weechat.1 + man_targets = weechat.1 \ + weechat-headless.1 man_install = install-man man_uninstall = uninstall-man endif @@ -54,9 +56,11 @@ if DOC endif all-local: $(man_targets) $(doc_targets) -# man page +# man pages weechat.1: weechat.1.fr.adoc cmdline_options.fr.adoc $(ASCIIDOCTOR) -a revision="WeeChat $(VERSION)" -b manpage -o weechat.1 $(abs_top_srcdir)/doc/fr/weechat.1.fr.adoc +weechat-headless.1: weechat-headless.1.fr.adoc cmdline_options.fr.adoc + $(ASCIIDOCTOR) -a revision="WeeChat $(VERSION)" -b manpage -o weechat-headless.1 $(abs_top_srcdir)/doc/fr/weechat-headless.1.fr.adoc # user's guide weechat_user.fr.html: weechat_user.fr.adoc cmdline_options.fr.adoc $(wildcard autogen/user/*.adoc) $(abs_top_srcdir)/doc/docinfo.html @@ -97,7 +101,6 @@ install-data-hook: $(man_install) $(doc_install) install-man: $(mkinstalldirs) $(DESTDIR)$(mandir)/fr/man1/ $(INSTALL_DATA) *.1 $(DESTDIR)$(mandir)/fr/man1/ - (cd '$(DESTDIR)$(mandir)/fr/man1/' && $(RM) weechat-headless.1 && $(LN_S) weechat.1 weechat-headless.1) install-doc: $(mkinstalldirs) $(DESTDIR)$(docdir)/ @@ -119,4 +122,4 @@ uninstall-doc: # clean clean-local: - -$(RM) weechat.1 weechat_*.html + -$(RM) weechat.1 weechat-headless.1 weechat_*.html |