2003-11-26 11:47:54 +01:00
|
|
|
ENV = SGML_CATALOG_FILES=$(docbookcatalog)
|
2003-08-14 20:24:40 +02:00
|
|
|
|
2003-11-26 11:41:21 +01:00
|
|
|
XMLLINT = $(ENV) $(xmllint) $(xmlflags) --catalogs
|
2003-11-27 15:58:32 +01:00
|
|
|
XSLTPROC = $(ENV) $(xsltproc) $(xmlflags) --catalogs \
|
|
|
|
--param section.autolabel 1 \
|
|
|
|
--param section.label.includes.component.label 1
|
2003-08-14 20:24:40 +02:00
|
|
|
|
2003-11-26 12:24:13 +01:00
|
|
|
SOURCES = book.xml introduction.xml installation.xml \
|
2003-11-26 15:25:39 +01:00
|
|
|
overview.xml \
|
|
|
|
nix-store-reference.xml nix-instantiate-reference.xml \
|
2003-08-13 11:13:52 +02:00
|
|
|
troubleshooting.xml bugs.xml
|
|
|
|
|
|
|
|
book.is-valid: $(SOURCES)
|
2003-08-14 20:24:40 +02:00
|
|
|
$(XMLLINT) --noout --valid book.xml
|
2003-08-12 15:54:42 +02:00
|
|
|
touch $@
|
|
|
|
|
2003-11-26 12:24:13 +01:00
|
|
|
man1_MANS = nix-store.1 nix-instantiate.1
|
2003-08-12 15:54:42 +02:00
|
|
|
|
2003-11-26 12:24:13 +01:00
|
|
|
man $(MANS): $(SOURCES) book.is-valid
|
2003-11-26 11:41:21 +01:00
|
|
|
$(XSLTPROC) $(docbookxsl)/manpages/docbook.xsl book.xml
|
2003-08-12 15:54:42 +02:00
|
|
|
|
2003-08-13 11:13:52 +02:00
|
|
|
book.html: $(SOURCES) book.is-valid
|
2003-11-26 11:41:21 +01:00
|
|
|
$(XSLTPROC) --output book.html $(docbookxsl)/html/docbook.xsl book.xml
|
2003-08-12 15:54:42 +02:00
|
|
|
|
|
|
|
all-local: book.html
|
|
|
|
|
|
|
|
install-data-local: book.html
|
|
|
|
$(INSTALL) -d $(datadir)/nix/manual
|
|
|
|
$(INSTALL_DATA) book.html $(datadir)/nix/manual
|
2003-08-13 17:17:36 +02:00
|
|
|
|
2003-11-26 12:24:13 +01:00
|
|
|
EXTRA_DIST = $(SOURCES) book.html book.is-valid $(MANS)
|
|
|
|
|
|
|
|
DISTCLEANFILES = book.html book.is-valid $(MANS)
|