diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2003-07-09 18:50:17 +0000 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2003-07-09 18:50:17 +0000 |
commit | 8ddf771a606268619e625592b2c0ddb28abda003 (patch) | |
tree | 290389be127e10dff9da0fc15fceafb9ef87ff02 | |
parent | aab24fbae0bb6f6a2b228e93169684c07a776101 (diff) | |
download | samba-8ddf771a606268619e625592b2c0ddb28abda003.tar.gz samba-8ddf771a606268619e625592b2c0ddb28abda003.tar.bz2 samba-8ddf771a606268619e625592b2c0ddb28abda003.zip |
Add make target 'undocumented'
(This used to be commit 2eaaa3fe69b282f54922b05d20d59f326740f662)
-rw-r--r-- | docs/docbook/Makefile.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/docbook/Makefile.in b/docs/docbook/Makefile.in index 23f9461ee4..ba3d0845ef 100644 --- a/docs/docbook/Makefile.in +++ b/docs/docbook/Makefile.in @@ -72,6 +72,7 @@ all: @echo "html - Build HTML version of HOWTO Collection and Developers Guide" @echo "htmlman - Build html version of manpages" @echo "htmlfaq - Build html version of the FAQ" + @echo "undocumented - Output list of undocumented smb.conf options" @echo "everything - Build all of the above" everything: manpages pdf html-single html htmlman htmlfaq txt ps @@ -222,6 +223,9 @@ $(MANDIR): $(MANDIR)/%: $(MANPROJDOC)/%.xml @$(XSLTPROC) xslt/man.xsl $< +undocumented: $(SMBDOTCONFDOC)/parameters.all.xml + $(PERL) scripts/find_missing_doc.pl ../.. + clean: @rm -f $(MANPAGES) $(MANPAGES_HTML) $(HTMLDIR)/*.html $(HTMLDIR)/*.css $(TXTDIR)/*.txt $(PSDIR)/*.ps $(PDFDIR)/*.pdf @rm -f $(MANPROJDOC)/smb.conf.5.xml $(SMBDOTCONFDOC)/parameters.*.xml $(DVIDIR)/*.dvi |