diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-01-07 16:04:34 +0000 |
---|---|---|
committer | Gerald W. Carter <jerry@samba.org> | 2008-04-23 08:46:10 -0500 |
commit | 6db046c01d0aa1f19a188760297285cb81198c6a (patch) | |
tree | ea8ee00864350b7ce945c9a3cd01cc993a354bd4 /docs/Makefile.in | |
parent | 18926ba2a2fc1aa967d70bf2db9ceafe720c702e (diff) | |
download | samba-6db046c01d0aa1f19a188760297285cb81198c6a.tar.gz samba-6db046c01d0aa1f19a188760297285cb81198c6a.tar.bz2 samba-6db046c01d0aa1f19a188760297285cb81198c6a.zip |
Add support for HTML version of smb.conf in chunks
(This used to be commit 9a49f47d3bf323f60618c33c0948103ed7999ed4)
Diffstat (limited to 'docs/Makefile.in')
-rw-r--r-- | docs/Makefile.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/Makefile.in b/docs/Makefile.in index f19fa05d81..4d84d1ca10 100644 --- a/docs/Makefile.in +++ b/docs/Makefile.in @@ -229,6 +229,13 @@ $(MANDIR)/%: $(DOCBOOKDIR)/%.xml xslt/man.xsl mkdir -p $(@D) $(XSLTPROC) --output $@ xslt/man.xsl $< +# Individual smb.conf parameters +smb.conf-chunks: $(patsubst $(SMBDOTCONFDOC)/%.xml,$(HTMLDIR)/smb.conf/%.html,$(wildcard $(SMBDOTCONFDOC)/*/*.xml)) + +$(HTMLDIR)/smb.conf/%.html: $(SMBDOTCONFDOC)/%.xml + mkdir -p $(@D) + $(XSLTPROC) --output $@ xslt/smb.conf-html.xsl $< + # Pearson compatible XML $(PEARSONDIR)/%.xml: %/index.xml xslt/pearson.xsl |