summaryrefslogtreecommitdiffstats
path: root/docs-xml
diff options
context:
space:
mode:
Diffstat (limited to 'docs-xml')
-rw-r--r--docs-xml/.gitignore2
-rw-r--r--docs-xml/Makefile10
2 files changed, 1 insertions, 11 deletions
diff --git a/docs-xml/.gitignore b/docs-xml/.gitignore
index 6dab9bbb02..8beaa2d485 100644
--- a/docs-xml/.gitignore
+++ b/docs-xml/.gitignore
@@ -11,8 +11,6 @@ configure
test.d
tmp
smbdotconf/parameters.all.xml
-smbdotconf/parameters.global.xml
-smbdotconf/parameters.service.xml
*.d
output/manpages
Samba3-ByExample.tex
diff --git a/docs-xml/Makefile b/docs-xml/Makefile
index 98b1a71c8c..d9ae92b494 100644
--- a/docs-xml/Makefile
+++ b/docs-xml/Makefile
@@ -221,19 +221,11 @@ $(MANPAGEDIR)/smb.conf.5.xml: parameters
# any smbdotconf/*/*.xml file ...
.PHONY: parameters
-parameters: $(SMBDOTCONFDOC)/parameters.all.xml $(SMBDOTCONFDOC)/parameters.service.xml $(SMBDOTCONFDOC)/parameters.global.xml
+parameters: $(SMBDOTCONFDOC)/parameters.all.xml
$(SMBDOTCONFDOC)/parameters.all.xml: $(wildcard $(SMBDOTCONFDOC)/*/*.xml) $(SMBDOTCONFDOC)/generate-file-list.sh
$(SMBDOTCONFDOC)/generate-file-list.sh $(SMBDOTCONFDOC) > $@
-$(SMBDOTCONFDOC)/parameters.global.xml: $(SMBDOTCONFDOC)/parameters.all.xml $(SMBDOTCONFDOC)/generate-context.xsl
- @echo "Generating list of global smb.conf options"
- $(XSLTPROC) --xinclude --param smb.context "'G'" --output $(SMBDOTCONFDOC)/parameters.global.xml $(SMBDOTCONFDOC)/generate-context.xsl $<
-
-$(SMBDOTCONFDOC)/parameters.service.xml: $(SMBDOTCONFDOC)/parameters.all.xml $(SMBDOTCONFDOC)/generate-context.xsl
- @echo "Generating list of share-mode smb.conf options"
- $(XSLTPROC) --xinclude --param smb.context "'S'" --output $(SMBDOTCONFDOC)/parameters.service.xml $(SMBDOTCONFDOC)/generate-context.xsl $<
-
$(OUTPUTDIR):
test -d $@ || mkdir $@