2006-08-21 18:05:11 +02:00
|
|
|
XMLLINT = $(xmllint) $(xmlflags)
|
|
|
|
XSLTPROC = $(xsltproc) $(xmlflags) \
|
2003-11-27 15:58:32 +01:00
|
|
|
--param section.autolabel 1 \
|
2003-12-02 16:36:49 +01:00
|
|
|
--param section.label.includes.component.label 1 \
|
2004-11-05 14:10:08 +01:00
|
|
|
--param html.stylesheet \'style.css\' \
|
2005-04-09 19:16:00 +02:00
|
|
|
--param xref.with.number.and.title 1 \
|
2006-09-29 12:31:56 +02:00
|
|
|
--param toc.section.depth 3 \
|
2006-10-04 14:20:07 +02: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 20:24:40 +02:00
|
|
|
|
2005-04-07 12:47:58 +02:00
|
|
|
man1_MANS = nix-env.1 nix-build.1 nix-store.1 nix-instantiate.1 \
|
2004-02-10 17:14:47 +01:00
|
|
|
nix-collect-garbage.1 nix-push.1 nix-pull.1 \
|
2006-09-28 11:10:53 +02:00
|
|
|
nix-prefetch-url.1 nix-channel.1 \
|
2007-09-19 16:01:41 +02:00
|
|
|
nix-install-package.1 nix-hash.1 nix-copy-closure.1
|
2004-02-10 17:14:47 +01:00
|
|
|
|
2008-11-19 16:20:46 +01:00
|
|
|
man8_MANS = nix-worker.8
|
|
|
|
|
2004-10-31 17:13:25 +01:00
|
|
|
FIGURES = figures/user-environments.png
|
|
|
|
|
2005-03-16 11:46:33 +01:00
|
|
|
MANUAL_SRCS = manual.xml introduction.xml installation.xml \
|
2007-10-22 14:58:28 +02:00
|
|
|
package-management.xml writing-nix-expressions.xml builtins.xml \
|
2004-10-29 17:26:26 +02:00
|
|
|
build-farm.xml \
|
2008-11-19 16:20:46 +01:00
|
|
|
$(man1_MANS:.1=.xml) $(man8_MANS:.8=.xml) \
|
2004-02-02 11:51:54 +01:00
|
|
|
troubleshooting.xml bugs.xml opt-common.xml opt-common-syn.xml \
|
2005-04-01 17:34:23 +02:00
|
|
|
env-common.xml quick-start.xml nix-lang-ref.xml glossary.xml \
|
2005-09-16 12:35:48 +02:00
|
|
|
conf-file.xml release-notes.xml \
|
2005-04-01 17:34:23 +02:00
|
|
|
style.css images
|
2003-08-13 11:13:52 +02:00
|
|
|
|
2005-03-16 11:46:33 +01:00
|
|
|
manual.is-valid: $(MANUAL_SRCS) version.txt
|
2006-08-21 18:05:11 +02:00
|
|
|
# $(XMLLINT) --xinclude $< | $(XMLLINT) --noout --nonet --relaxng $(docbookrng)/docbook.rng -
|
|
|
|
if test "$(jing)" != "false"; then \
|
2007-09-19 16:01:41 +02:00
|
|
|
$(XMLLINT) --xinclude $< | $(jing) $(docbookrng)/docbook.rng /dev/fd/0; \
|
2006-08-21 18:05:11 +02:00
|
|
|
else \
|
|
|
|
echo "Not validating."; \
|
|
|
|
fi
|
2003-08-12 15:54:42 +02:00
|
|
|
touch $@
|
|
|
|
|
2005-03-15 14:55:41 +01:00
|
|
|
version.txt:
|
|
|
|
echo -n $(VERSION) > version.txt
|
2004-01-08 11:45:23 +01:00
|
|
|
|
2005-03-16 11:46:33 +01:00
|
|
|
man $(MANS): $(MANUAL_SRCS) manual.is-valid
|
2005-04-05 13:29:46 +02:00
|
|
|
$(XSLTPROC) --nonet --xinclude $(docbookxsl)/manpages/docbook.xsl manual.xml
|
2003-08-12 15:54:42 +02:00
|
|
|
|
2005-03-16 11:46:33 +01:00
|
|
|
manual.html: $(MANUAL_SRCS) manual.is-valid images
|
2005-04-05 13:29:46 +02:00
|
|
|
$(XSLTPROC) --nonet --xinclude --output manual.html \
|
|
|
|
$(docbookxsl)/html/docbook.xsl manual.xml
|
2003-08-12 15:54:42 +02:00
|
|
|
|
2007-11-01 15:42:44 +01:00
|
|
|
manual.pdf: $(MANUAL_SRCS) manual.is-valid images
|
|
|
|
if test "$(dblatex)" != ""; then \
|
|
|
|
$(dblatex) manual.xml; \
|
|
|
|
else \
|
|
|
|
echo "Please install dblatex and rerun configure."; \
|
|
|
|
exit 1; \
|
|
|
|
fi
|
|
|
|
|
2005-09-14 20:50:45 +02: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 22:29:08 +02:00
|
|
|
LANG=en_US $(w3m) -dump $@.tmp.html > $@
|
2005-09-15 17:21:57 +02:00
|
|
|
rm $@.tmp.html
|
2005-09-14 20:50:45 +02:00
|
|
|
|
|
|
|
|
|
|
|
all-local: manual.html NEWS.html NEWS.txt
|
2003-08-12 15:54:42 +02:00
|
|
|
|
2004-01-06 17:38:32 +01:00
|
|
|
install-data-local: manual.html
|
2008-11-19 14:19:09 +01:00
|
|
|
$(INSTALL) -d $(DESTDIR)$(docdir)/manual
|
|
|
|
$(INSTALL_DATA) manual.html $(DESTDIR)$(docdir)/manual
|
|
|
|
$(INSTALL_DATA) style.css $(DESTDIR)$(docdir)/manual
|
|
|
|
cp -r images $(DESTDIR)$(docdir)/manual/images
|
|
|
|
$(INSTALL) -d $(DESTDIR)$(docdir)/manual/figures
|
|
|
|
$(INSTALL_DATA) $(FIGURES) $(DESTDIR)$(docdir)/manual/figures
|
2004-01-06 17:35:07 +01:00
|
|
|
|
|
|
|
images:
|
|
|
|
mkdir images
|
2006-10-04 14:20:07 +02:00
|
|
|
# cp $(docbookxsl)/images/*.gif images
|
2004-01-06 17:35:07 +01:00
|
|
|
mkdir images/callouts
|
2006-10-04 14:20:07 +02:00
|
|
|
cp $(docbookxsl)/images/callouts/*.gif images/callouts
|
2006-08-01 14:00:37 +02:00
|
|
|
chmod -R +w images
|
2003-08-13 17:17:36 +02:00
|
|
|
|
2005-09-15 17:21:57 +02:00
|
|
|
KEEP = manual.html manual.is-valid version.txt $(MANS) NEWS.html NEWS.txt
|
2004-01-08 11:45:23 +01:00
|
|
|
|
2005-03-16 11:46:33 +01:00
|
|
|
EXTRA_DIST = $(MANUAL_SRCS) $(FIGURES) $(KEEP)
|
2003-11-26 12:24:13 +01:00
|
|
|
|
2004-01-08 11:45:23 +01:00
|
|
|
DISTCLEANFILES = $(KEEP)
|