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

62 lines
1.9 KiB
Makefile
Raw Normal View History

2005-03-15 08:55:41 -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 \
2004-11-05 08:10:08 -05:00
--param html.stylesheet \'style.css\' \
2005-04-09 13:16:00 -04:00
--param xref.with.number.and.title 1 \
2005-04-07 06:47:58 -04:00
--param toc.section.depth 3
2003-08-14 14:24:40 -04:00
2005-04-07 06:47:58 -04:00
man1_MANS = nix-env.1 nix-build.1 nix-store.1 nix-instantiate.1 \
nix-collect-garbage.1 nix-push.1 nix-pull.1 \
2005-04-09 13:16:00 -04:00
nix-prefetch-url.1 nix-channel.1
FIGURES = figures/user-environments.png
2005-03-16 05:46:33 -05:00
MANUAL_SRCS = manual.xml introduction.xml installation.xml \
package-management.xml writing-nix-expressions.xml \
2004-10-29 11:26:26 -04:00
build-farm.xml \
$(man1_MANS:.1=.xml) \
troubleshooting.xml bugs.xml opt-common.xml opt-common-syn.xml \
2005-04-01 10:34:23 -05:00
env-common.xml quick-start.xml nix-lang-ref.xml glossary.xml \
conf-file.xml \
2005-04-01 10:34:23 -05:00
style.css images
2005-03-16 05:46:33 -05:00
manual.is-valid: $(MANUAL_SRCS) version.txt
2005-04-05 07:29:46 -04:00
$(XMLLINT) --xinclude $< | $(XMLLINT) --noout --nonet --valid -
2003-08-12 09:54:42 -04:00
touch $@
2005-03-15 08:55:41 -05:00
version.txt:
echo -n $(VERSION) > version.txt
2004-01-08 05:45:23 -05:00
2005-03-16 05:46:33 -05:00
man $(MANS): $(MANUAL_SRCS) manual.is-valid
2005-04-05 07:29:46 -04:00
$(XSLTPROC) --nonet --xinclude $(docbookxsl)/manpages/docbook.xsl manual.xml
2003-08-12 09:54:42 -04:00
2005-03-16 05:46:33 -05:00
manual.html: $(MANUAL_SRCS) manual.is-valid images
2005-04-05 07:29:46 -04:00
$(XSLTPROC) --nonet --xinclude --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
$(INSTALL) -d $(DESTDIR)$(datadir)/nix/manual/figures
$(INSTALL_DATA) $(FIGURES) $(DESTDIR)$(datadir)/nix/manual/figures
2004-01-06 11:35:07 -05:00
images:
mkdir images
cp $(docbookxsl)/images/*.png images
mkdir images/callouts
cp $(docbookxsl)/images/callouts/*.png images/callouts
chmod +w -R images
2005-03-15 08:55:41 -05:00
KEEP = manual.html manual.is-valid version.txt $(MANS)
2004-01-08 05:45:23 -05:00
2005-03-16 05:46:33 -05:00
EXTRA_DIST = $(MANUAL_SRCS) $(FIGURES) $(KEEP)
2004-01-08 05:45:23 -05:00
DISTCLEANFILES = $(KEEP)