diff options
author | Stefan Schubert <schubi@suse.de> | 2022-10-21 16:07:25 +0200 |
---|---|---|
committer | Dmitry V. Levin <ldv@altlinux.org> | 2022-10-27 12:12:17 +0000 |
commit | 3790bd4aa373187a36e4667873a178ae50f7ecba (patch) | |
tree | fabb66078797da5039c7bce92a6184509803af56 /doc/mwg/Makefile.am | |
parent | f69a6042da801096c94b30465c118e17c803f5c2 (diff) | |
download | pam-3790bd4aa373187a36e4667873a178ae50f7ecba.tar.gz pam-3790bd4aa373187a36e4667873a178ae50f7ecba.tar.bz2 pam-3790bd4aa373187a36e4667873a178ae50f7ecba.zip |
doc: make stylesheets configurable
Before this change, all stylesheets were hardcoded.
With this change, stylesheets can be defined at configure stage.
* configure.ac: Add new options to configure stylesheets:
--enable-html-stylesheet=FILE
--enable-txt-stylesheet=FILE
--enable-pdf-stylesheet=FILE
--enable-man-stylesheet=FILE
* doc/custom-html.xsl: Rename to doc/custom-html.xsl.in, parametrize html
stylesheet.
* doc/custom-man.xsl: Rename to doc/custom-man.xsl.in, parametrize man
stylesheet.
* doc/.gitignore: Add custom-man.xsl and custom-html.xsl.
* doc/adg/Makefile.am: Use stylesheet variables.
* doc/mwg/Makefile.am: Likewise.
* doc/sag/Makefile.am: Likewise.
Resolves: https://github.com/linux-pam/linux-pam/pull/499
Diffstat (limited to 'doc/mwg/Makefile.am')
-rw-r--r-- | doc/mwg/Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/mwg/Makefile.am b/doc/mwg/Makefile.am index 2bbb2d0b..688e6cb3 100644 --- a/doc/mwg/Makefile.am +++ b/doc/mwg/Makefile.am @@ -21,7 +21,7 @@ if ENABLE_GENERATE_PDF --stringparam section.autolabel 1 \ --stringparam section.label.includes.component.label 1 \ --stringparam toc.max.depth 3 --xinclude --nonet \ - http://docbook.sourceforge.net/release/xsl/current/fo/docbook.xsl $< > Linux-PAM_MWG.fo + $(PDF_STYLESHEET) $< > Linux-PAM_MWG.fo $(FO2PDF) Linux-PAM_MWG.fo $@ else echo "No fo2pdf processor installed, skip PDF generation" @@ -33,7 +33,7 @@ Linux-PAM_MWG.txt: $(XMLS) $(DEP_XMLS) --stringparam section.autolabel 1 \ --stringparam section.label.includes.component.label 1 \ --stringparam toc.max.depth 3 --xinclude --nonet \ - http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl $< | $(BROWSER) > $@ + $(TXT_STYLESHEET) $< | $(BROWSER) > $@ html/Linux-PAM_MWG.html: $(XMLS) $(DEP_XMLS) @test -d html || mkdir -p html @@ -46,7 +46,7 @@ html/Linux-PAM_MWG.html: $(XMLS) $(DEP_XMLS) --stringparam section.label.includes.component.label 1 \ --stringparam toc.max.depth 3 --xinclude --nonet \ --stringparam chunker.output.encoding UTF-8 \ - http://docbook.sourceforge.net/release/xsl/current/html/chunk.xsl $< + $(HTML_STYLESHEET) $< distclean-local: -rm -rf html Linux-PAM_MWG.txt Linux-PAM_MWG.pdf |