1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-12 19:05:08 +02:00

* Split the book.xml into several xml files.

This commit is contained in:
Eelco Dolstra 2003-08-13 09:13:52 +00:00
parent 469f1eba56
commit b4f88d0ec3
7 changed files with 481 additions and 470 deletions

View file

@ -2,17 +2,20 @@ DOCBOOK_DTD = /nix/current/xml/dtd/docbook
DOCBOOK_XSL = /nix/current/xml/xsl/docbook
XML = /usr/share/doc/packages/sp/html-xml/xml.soc
%.is-valid: %.xml
SOURCES = book.xml introduction.xml installation.xml nix-reference.xml \
troubleshooting.xml bugs.xml
book.is-valid: $(SOURCES)
SP_CHARSET_FIXED=YES SP_ENCODING=XML \
nsgmls -wxml -c $(XML) -c $(DOCBOOK_DTD)/docbook.cat -ges $<
touch $@
man1_MANS = nix.1
man nix.1: book.is-valid
man nix.1: $(SOURCES) book.is-valid
xsltproc $(DOCBOOK_XSL)/manpages/docbook.xsl book.xml
%.html: %.xml %.is-valid
book.html: $(SOURCES) book.is-valid
xsltproc --output book.html $(DOCBOOK_XSL)/html/docbook.xsl book.xml
all-local: book.html