1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-19 23:03:53 -04:00
nix/doc/manual/Makefile.am

49 lines
1.4 KiB
Makefile
Raw Normal View History

2003-11-26 05:47:54 -05:00
ENV = SGML_CATALOG_FILES=$(docbookcatalog)
2003-08-14 14:24:40 -04:00
XMLLINT = $(ENV) $(xmllint) $(xmlflags) --catalogs
2003-11-27 09:58:32 -05:00
XSLTPROC = $(ENV) $(xsltproc) $(xmlflags) --catalogs \
--param section.autolabel 1 \
2003-12-02 10:36:49 -05:00
--param section.label.includes.component.label 1 \
--param html.stylesheet \'style.css\'
2003-08-14 14:24:40 -04:00
2004-01-06 11:38:32 -05:00
SOURCES = manual.xml introduction.xml installation.xml overview.xml \
nix-env.xml nix-store.xml nix-instantiate.xml \
troubleshooting.xml bugs.xml opt-common.xml opt-common-syn.xml \
2004-01-20 10:37:55 -05:00
quick-start.xml style.css images
2004-01-08 05:45:23 -05:00
manual.is-valid: $(SOURCES) version.xml
2004-01-06 11:38:32 -05:00
$(XMLLINT) --noout --valid manual.xml
2003-08-12 09:54:42 -04:00
touch $@
2004-01-08 05:45:23 -05:00
version.xml:
echo -n $(VERSION) > version.xml
man1_MANS = nix-env.1 nix-store.1 nix-instantiate.1
2003-08-12 09:54:42 -04:00
2004-01-06 11:38:32 -05:00
man $(MANS): $(SOURCES) manual.is-valid
$(XSLTPROC) $(docbookxsl)/manpages/docbook.xsl manual.xml
2003-08-12 09:54:42 -04:00
2004-01-06 11:38:32 -05:00
manual.html: $(SOURCES) manual.is-valid images
$(XSLTPROC) --output manual.html $(docbookxsl)/html/docbook.xsl manual.xml
2003-08-12 09:54:42 -04:00
2004-01-06 11:38:32 -05:00
all-local: manual.html
2003-08-12 09:54:42 -04:00
2004-01-06 11:38:32 -05:00
install-data-local: manual.html
$(INSTALL) -d $(DESTDIR)$(datadir)/nix/manual
2004-01-06 11:38:32 -05:00
$(INSTALL_DATA) manual.html $(DESTDIR)$(datadir)/nix/manual
$(INSTALL_DATA) style.css $(DESTDIR)$(datadir)/nix/manual
2004-01-06 11:35:07 -05: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
2004-01-08 05:45:23 -05:00
KEEP = manual.html manual.is-valid version.xml $(MANS)
EXTRA_DIST = $(SOURCES) $(KEEP)
2004-01-08 05:45:23 -05:00
DISTCLEANFILES = $(KEEP)