forked from lix-project/lix
* Use a catalog when calling xsltproc.
This commit is contained in:
parent
a24cb19361
commit
161aab582b
|
@ -1,21 +1,25 @@
|
||||||
DOCBOOK_DTD = /nix/current/xml/dtd/docbook
|
DOCBOOK_DTD = /nix/current/xml/dtd/docbook
|
||||||
DOCBOOK_XSL = /nix/current/xml/xsl/docbook
|
DOCBOOK_XSL = /nix/current/xml/xsl/docbook
|
||||||
|
|
||||||
|
ENV = SGML_CATALOG_FILES=$(DOCBOOK_DTD)/docbook.cat
|
||||||
|
|
||||||
|
XMLLINT = $(ENV) xmllint --catalogs
|
||||||
|
XSLTPROC = $(ENV) xsltproc --catalogs
|
||||||
|
|
||||||
SOURCES = book.xml introduction.xml installation.xml nix-reference.xml \
|
SOURCES = book.xml introduction.xml installation.xml nix-reference.xml \
|
||||||
troubleshooting.xml bugs.xml
|
troubleshooting.xml bugs.xml
|
||||||
|
|
||||||
book.is-valid: $(SOURCES)
|
book.is-valid: $(SOURCES)
|
||||||
SGML_CATALOG_FILES=$(DOCBOOK_DTD)/docbook.cat \
|
$(XMLLINT) --noout --valid book.xml
|
||||||
xmllint --catalogs --noout --valid book.xml
|
|
||||||
touch $@
|
touch $@
|
||||||
|
|
||||||
man1_MANS = nix.1 fix.1
|
man1_MANS = nix.1 fix.1
|
||||||
|
|
||||||
man nix.1 fix.1: $(SOURCES) book.is-valid
|
man nix.1 fix.1: $(SOURCES) book.is-valid
|
||||||
xsltproc $(DOCBOOK_XSL)/manpages/docbook.xsl book.xml
|
$(XSLTPROC) $(DOCBOOK_XSL)/manpages/docbook.xsl book.xml
|
||||||
|
|
||||||
book.html: $(SOURCES) book.is-valid
|
book.html: $(SOURCES) book.is-valid
|
||||||
xsltproc --output book.html $(DOCBOOK_XSL)/html/docbook.xsl book.xml
|
$(XSLTPROC) --output book.html $(DOCBOOK_XSL)/html/docbook.xsl book.xml
|
||||||
|
|
||||||
all-local: book.html
|
all-local: book.html
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue