2006-08-21 19:05:11 +03:00
|
|
|
XMLLINT = $(xmllint) $(xmlflags)
|
|
|
|
XSLTPROC = $(xsltproc) $(xmlflags) \
|
2003-11-27 16:58:32 +02:00
|
|
|
--param section.autolabel 1 \
|
2003-12-02 17:36:49 +02:00
|
|
|
--param section.label.includes.component.label 1 \
|
2004-11-05 15:10:08 +02:00
|
|
|
--param html.stylesheet \'style.css\' \
|
2005-04-09 20:16:00 +03:00
|
|
|
--param xref.with.number.and.title 1 \
|
2006-09-29 13:31:56 +03:00
|
|
|
--param toc.section.depth 3 \
|
2006-10-04 15:20:07 +03:00
|
|
|
--param admon.style \'\' \
|
|
|
|
--param callout.graphics.extension \'.gif\'
|
|
|
|
|
|
|
|
# Note: we use GIF for now, since the PNGs shipped with Docbook aren't
|
|
|
|
# transparent.
|
2003-08-14 21:24:40 +03:00
|
|
|
|
2005-04-07 13:47:58 +03:00
|
|
|
man1_MANS = nix-env.1 nix-build.1 nix-store.1 nix-instantiate.1 \
|
2004-02-10 18:14:47 +02:00
|
|
|
nix-collect-garbage.1 nix-push.1 nix-pull.1 \
|
2006-09-28 12:10:53 +03:00
|
|
|
nix-prefetch-url.1 nix-channel.1 \
|
2006-09-29 17:16:41 +03:00
|
|
|
nix-pack-closure.1 nix-unpack-closure.1 \
|
2006-10-03 01:11:44 +03:00
|
|
|
nix-install-package.1 nix-hash.1
|
2004-02-10 18:14:47 +02:00
|
|
|
|
2004-10-31 18:13:25 +02:00
|
|
|
FIGURES = figures/user-environments.png
|
|
|
|
|
2005-03-16 12:46:33 +02:00
|
|
|
MANUAL_SRCS = manual.xml introduction.xml installation.xml \
|
2004-10-14 14:55:12 +03:00
|
|
|
package-management.xml writing-nix-expressions.xml \
|
2004-10-29 18:26:26 +03:00
|
|
|
build-farm.xml \
|
2004-02-10 18:14:47 +02:00
|
|
|
$(man1_MANS:.1=.xml) \
|
2004-02-02 12:51:54 +02:00
|
|
|
troubleshooting.xml bugs.xml opt-common.xml opt-common-syn.xml \
|
2005-04-01 18:34:23 +03:00
|
|
|
env-common.xml quick-start.xml nix-lang-ref.xml glossary.xml \
|
2005-09-16 13:35:48 +03:00
|
|
|
conf-file.xml release-notes.xml \
|
2005-04-01 18:34:23 +03:00
|
|
|
style.css images
|
2003-08-13 12:13:52 +03:00
|
|
|
|
2005-03-16 12:46:33 +02:00
|
|
|
manual.is-valid: $(MANUAL_SRCS) version.txt
|
2006-08-21 19:05:11 +03:00
|
|
|
# $(XMLLINT) --xinclude $< | $(XMLLINT) --noout --nonet --relaxng $(docbookrng)/docbook.rng -
|
|
|
|
if test "$(jing)" != "false"; then \
|
|
|
|
$(XMLLINT) --xinclude $< | $(jing) $(docbookrng)/docbook.rng /dev/stdin; \
|
|
|
|
else \
|
|
|
|
echo "Not validating."; \
|
|
|
|
fi
|
2003-08-12 16:54:42 +03:00
|
|
|
touch $@
|
|
|
|
|
2005-03-15 15:55:41 +02:00
|
|
|
version.txt:
|
|
|
|
echo -n $(VERSION) > version.txt
|
2004-01-08 12:45:23 +02:00
|
|
|
|
2005-03-16 12:46:33 +02:00
|
|
|
man $(MANS): $(MANUAL_SRCS) manual.is-valid
|
2005-04-05 14:29:46 +03:00
|
|
|
$(XSLTPROC) --nonet --xinclude $(docbookxsl)/manpages/docbook.xsl manual.xml
|
2003-08-12 16:54:42 +03:00
|
|
|
|
2005-03-16 12:46:33 +02:00
|
|
|
manual.html: $(MANUAL_SRCS) manual.is-valid images
|
2005-04-05 14:29:46 +03:00
|
|
|
$(XSLTPROC) --nonet --xinclude --output manual.html \
|
|
|
|
$(docbookxsl)/html/docbook.xsl manual.xml
|
2003-08-12 16:54:42 +03:00
|
|
|
|
2005-09-14 21:50:45 +03:00
|
|
|
|
|
|
|
NEWS_OPTS = \
|
|
|
|
--stringparam generate.toc "article nop" \
|
|
|
|
--stringparam section.autolabel.max.depth 0 \
|
|
|
|
--stringparam header.rule 0
|
|
|
|
|
|
|
|
NEWS.html: release-notes.xml
|
|
|
|
$(XSLTPROC) --nonet --xinclude --output $@ $(NEWS_OPTS) \
|
|
|
|
$(docbookxsl)/html/docbook.xsl release-notes.xml
|
|
|
|
|
|
|
|
NEWS.txt: release-notes.xml
|
|
|
|
$(XSLTPROC) --nonet --xinclude quote-literals.xsl release-notes.xml | \
|
|
|
|
$(XSLTPROC) --nonet --output $@.tmp.html $(NEWS_OPTS) \
|
|
|
|
$(docbookxsl)/html/docbook.xsl -
|
2005-09-15 23:29:08 +03:00
|
|
|
LANG=en_US $(w3m) -dump $@.tmp.html > $@
|
2005-09-15 18:21:57 +03:00
|
|
|
rm $@.tmp.html
|
2005-09-14 21:50:45 +03:00
|
|
|
|
|
|
|
|
|
|
|
all-local: manual.html NEWS.html NEWS.txt
|
2003-08-12 16:54:42 +03:00
|
|
|
|
2004-01-06 18:38:32 +02:00
|
|
|
install-data-local: manual.html
|
2003-12-30 22:09:00 +02:00
|
|
|
$(INSTALL) -d $(DESTDIR)$(datadir)/nix/manual
|
2004-01-06 18:38:32 +02:00
|
|
|
$(INSTALL_DATA) manual.html $(DESTDIR)$(datadir)/nix/manual
|
2003-12-30 22:09:00 +02:00
|
|
|
$(INSTALL_DATA) style.css $(DESTDIR)$(datadir)/nix/manual
|
2004-01-06 18:35:07 +02:00
|
|
|
cp -r images $(DESTDIR)$(datadir)/nix/manual/images
|
2004-10-31 18:13:25 +02:00
|
|
|
$(INSTALL) -d $(DESTDIR)$(datadir)/nix/manual/figures
|
|
|
|
$(INSTALL_DATA) $(FIGURES) $(DESTDIR)$(datadir)/nix/manual/figures
|
2004-01-06 18:35:07 +02:00
|
|
|
|
|
|
|
images:
|
|
|
|
mkdir images
|
2006-10-04 15:20:07 +03:00
|
|
|
# cp $(docbookxsl)/images/*.gif images
|
2004-01-06 18:35:07 +02:00
|
|
|
mkdir images/callouts
|
2006-10-04 15:20:07 +03:00
|
|
|
cp $(docbookxsl)/images/callouts/*.gif images/callouts
|
2006-08-01 15:00:37 +03:00
|
|
|
chmod -R +w images
|
2003-08-13 18:17:36 +03:00
|
|
|
|
2005-09-15 18:21:57 +03:00
|
|
|
KEEP = manual.html manual.is-valid version.txt $(MANS) NEWS.html NEWS.txt
|
2004-01-08 12:45:23 +02:00
|
|
|
|
2005-03-16 12:46:33 +02:00
|
|
|
EXTRA_DIST = $(MANUAL_SRCS) $(FIGURES) $(KEEP)
|
2003-11-26 13:24:13 +02:00
|
|
|
|
2004-01-08 12:45:23 +02:00
|
|
|
DISTCLEANFILES = $(KEEP)
|