lix/doc/manual/Makefile.am

44 lines
1.3 KiB
Makefile
Raw Normal View History

2003-11-26 10:47:54 +00:00
ENV = SGML_CATALOG_FILES=$(docbookcatalog)
2003-08-14 18:24:40 +00:00
XMLLINT = $(ENV) $(xmllint) $(xmlflags) --catalogs
2003-11-27 14:58:32 +00:00
XSLTPROC = $(ENV) $(xsltproc) $(xmlflags) --catalogs \
--param section.autolabel 1 \
2003-12-02 15:36:49 +00:00
--param section.label.includes.component.label 1 \
--param html.stylesheet \'style.css\'
2003-08-14 18:24:40 +00:00
2003-12-21 21:57:09 +00:00
SOURCES = book.xml introduction.xml installation.xml overview.xml \
common-options.xml nix-store.xml nix-instantiate.xml \
2003-12-02 15:36:49 +00:00
troubleshooting.xml bugs.xml \
style.css
book.is-valid: $(SOURCES)
2003-08-14 18:24:40 +00:00
$(XMLLINT) --noout --valid book.xml
2003-08-12 13:54:42 +00:00
touch $@
man1_MANS = nix-store.1 nix-instantiate.1
2003-08-12 13:54:42 +00:00
man $(MANS): $(SOURCES) book.is-valid
$(XSLTPROC) $(docbookxsl)/manpages/docbook.xsl book.xml
2003-08-12 13:54:42 +00:00
2004-01-06 16:35:07 +00:00
book.html: $(SOURCES) book.is-valid images
$(XSLTPROC) --output book.html $(docbookxsl)/html/docbook.xsl book.xml
2003-08-12 13:54:42 +00:00
all-local: book.html
install-data-local: book.html
$(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 16:35:07 +00: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
EXTRA_DIST = $(SOURCES) book.html book.is-valid $(MANS)
DISTCLEANFILES = book.html book.is-valid $(MANS)