diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2004-05-20 20:33:00 +0000 |
---|---|---|
committer | Gerald W. Carter <jerry@samba.org> | 2008-04-23 08:45:51 -0500 |
commit | 0e4d73b9e00c7ba12379dcbc4738ff85501ccdfd (patch) | |
tree | ff8bbfe17364d3c56a2ee459852db2b703766139 /docs/Makefile.in | |
parent | ef9b7ebe9f88d856df76c6da112b23495319f564 (diff) | |
download | samba-0e4d73b9e00c7ba12379dcbc4738ff85501ccdfd.tar.gz samba-0e4d73b9e00c7ba12379dcbc4738ff85501ccdfd.tar.bz2 samba-0e4d73b9e00c7ba12379dcbc4738ff85501ccdfd.zip |
- Support validating against the DocBook DTD
- Fix typo in printcapcachetime
(This used to be commit 1f6ec86c55b36143b7e232a3853a09e546ecddda)
Diffstat (limited to 'docs/Makefile.in')
-rw-r--r-- | docs/Makefile.in | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/Makefile.in b/docs/Makefile.in index 6d5568e5b7..d3993e44ae 100644 --- a/docs/Makefile.in +++ b/docs/Makefile.in @@ -14,6 +14,7 @@ # Programs WGET = @WGET@ XSLTPROC = @XSLTPROC@ +XMLLINT = @XMLLINT@ DVIPS = @DVIPS@ PNGTOPNM = @PNGTOPNM@ EPSTOPNM = @EPSTOPNM@ @@ -48,6 +49,7 @@ SMBDOTCONFDOC = $(TOPDIR)/smbdotconf PSDIR = $(OUTPUTDIR) PDFDIR = $(OUTPUTDIR) DVIDIR = $(OUTPUTDIR) +VALIDATEDIR = $(OUTPUTDIR)/validate TXTDIR = $(OUTPUTDIR)/textdocs HTMLDIR=$(OUTPUTDIR)/htmldocs PLUCKERDIR=$(OUTPUTDIR)/plucker @@ -267,6 +269,14 @@ $(MANDIR): $(MANDIR)/%: %.xml $(XSLTPROC) --output $@ xslt/man.xsl $< +$(VALIDATEDIR): + mkdir $@ + +$(VALIDATEDIR)/%.report.html: %.xml + $(XMLLINT) --valid --noout --htmlout $< 2> $@ + +verify: $(VALIDATEDIR) $(VALIDATEDIR)/Samba-HOWTO-Collection.report.html $(VALIDATEDIR)/Samba-Developers-Guide.report.html $(VALIDATEDIR)/Samba-Guide.report.html + # Find undocumented parameters undocumented: $(SMBDOTCONFDOC)/parameters.all.xml |