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 \
|
2003-12-02 16:36:49 +01:00
|
|
|
--param section.label.includes.component.label 1 \
|
|
|
|
--param html.stylesheet \'style.css\'
|
2003-08-14 20:24:40 +02:00
|
|
|
|
2003-12-21 22:57:09 +01:00
|
|
|
SOURCES = book.xml introduction.xml installation.xml overview.xml \
|
|
|
|
common-options.xml nix-store.xml nix-instantiate.xml \
|
2003-12-02 16:36:49 +01:00
|
|
|
troubleshooting.xml bugs.xml \
|
|
|
|
style.css
|
2003-08-13 11:13:52 +02:00
|
|
|
|
|
|
|
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
|
|
|
|
2004-01-06 17:35:07 +01:00
|
|
|
book.html: $(SOURCES) book.is-valid images
|
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
|
2003-12-30 21:09:00 +01:00
|
|
|
$(INSTALL) -d $(DESTDIR)$(datadir)/nix/manual
|
|
|
|
$(INSTALL_DATA) book.html $(DESTDIR)$(datadir)/nix/manual
|
|
|
|
$(INSTALL_DATA) style.css $(DESTDIR)$(datadir)/nix/manual
|
2004-01-06 17:35:07 +01:00
|
|
|
cp -r images $(DESTDIR)$(datadir)/nix/manual/images
|
|
|
|
|
|
|
|
images:
|
|
|
|
mkdir images
|
|
|
|
cp $(docbookxsl)/images/*.png images
|
|
|
|
mkdir images/callouts
|
|
|
|
cp $(docbookxsl)/images/callouts/*.png images/callouts
|
|
|
|
chmod +w -R images
|
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)
|