diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2004-06-15 20:12:16 +0000 |
---|---|---|
committer | Gerald W. Carter <jerry@samba.org> | 2008-04-23 08:45:54 -0500 |
commit | b3ac9050e629000e4bd2daa7e751d55722d58cd5 (patch) | |
tree | 137ac46a72cec32c552ce2fae76b27b80123a2b1 /docs/Makefile.in | |
parent | 41419c7f3f0779f5637787599520ae2491f033c3 (diff) | |
download | samba-b3ac9050e629000e4bd2daa7e751d55722d58cd5.tar.gz samba-b3ac9050e629000e4bd2daa7e751d55722d58cd5.tar.bz2 samba-b3ac9050e629000e4bd2daa7e751d55722d58cd5.zip |
Add initial version of Pearson stylesheet
(This used to be commit 626ea21b64d61935faf3ec211c122c90aba799e4)
Diffstat (limited to 'docs/Makefile.in')
-rw-r--r-- | docs/Makefile.in | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/docs/Makefile.in b/docs/Makefile.in index dba995785f..3a2af647cf 100644 --- a/docs/Makefile.in +++ b/docs/Makefile.in @@ -52,6 +52,7 @@ DVIDIR = $(OUTPUTDIR) FODIR = $(OUTPUTDIR) HTMLHELPDIR = $(OUTPUTDIR)/htmlhelp VALIDATEDIR = $(OUTPUTDIR)/validate +PEARSONDIR = $(OUTPUTDIR)/pearson TXTDIR = $(OUTPUTDIR)/textdocs HTMLDIR=$(OUTPUTDIR)/htmldocs PLUCKERDIR=$(OUTPUTDIR)/plucker @@ -301,13 +302,21 @@ $(MANDIR): $(MANDIR)/%: %.xml $(XSLTPROC) --output $@ xslt/man.xsl $< +$(PEARSONDIR): + mkdir $@ + +$(PEARSONDIR)/%.xml: %.xml + $(XSLTPROC) --xinclude --output $@ xslt/pearson.xsl $< + +pearson: $(PEARSONDIR) $(PEARSONDIR)/Samba-HOWTO-Collection.xml + $(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 +verify: $(VALIDATEDIR) $(VALIDATEDIR)/Samba-HOWTO-Collection.report.html $(VALIDATEDIR)/Samba-Developers-Guide.report.html $(VALIDATEDIR)/Samba-Guide.report.html $(PEARSONDIR)/Samba-HOWTO-Collection.xml # Find undocumented parameters |