2012-04-06 19:45:00 +00:00
|
|
|
XMLLINT = $(xmllint) --nonet $(xmlflags)
|
|
|
|
XSLTPROC = $(xsltproc) --nonet $(xmlflags) \
|
2003-11-27 14:58:32 +00:00
|
|
|
--param section.autolabel 1 \
|
2003-12-02 15:36:49 +00:00
|
|
|
--param section.label.includes.component.label 1 \
|
2004-11-05 13:10:08 +00:00
|
|
|
--param html.stylesheet \'style.css\' \
|
2005-04-09 17:16:00 +00:00
|
|
|
--param xref.with.number.and.title 1 \
|
2006-09-29 10:31:56 +00:00
|
|
|
--param toc.section.depth 3 \
|
2006-10-04 12:20:07 +00:00
|
|
|
--param admon.style \'\' \
|
2009-07-14 14:58:12 +00:00
|
|
|
--param callout.graphics.extension \'.gif\' \
|
|
|
|
--param contrib.inline.enabled 0
|
2006-10-04 12:20:07 +00:00
|
|
|
|
2009-07-10 13:42:12 +00:00
|
|
|
dblatex_opts = \
|
|
|
|
-P doc.collab.show=0 \
|
|
|
|
-P latex.output.revhistory=0
|
|
|
|
|
2006-10-04 12:20:07 +00:00
|
|
|
# Note: we use GIF for now, since the PNGs shipped with Docbook aren't
|
|
|
|
# transparent.
|
2003-08-14 18:24:40 +00:00
|
|
|
|
2013-07-19 10:02:44 +00:00
|
|
|
man1_MANS = nix-env.1 nix-build.1 nix-shell.1 nix-store.1 nix-instantiate.1 \
|
2004-02-10 16:14:47 +00:00
|
|
|
nix-collect-garbage.1 nix-push.1 nix-pull.1 \
|
2006-09-28 09:10:53 +00:00
|
|
|
nix-prefetch-url.1 nix-channel.1 \
|
2007-09-19 14:01:41 +00:00
|
|
|
nix-install-package.1 nix-hash.1 nix-copy-closure.1
|
2004-02-10 16:14:47 +00:00
|
|
|
|
2012-07-09 15:33:38 +00:00
|
|
|
man5_MANS = nix.conf.5
|
|
|
|
|
2012-10-03 21:57:20 +00:00
|
|
|
man8_MANS = nix-daemon.8
|
2008-11-19 15:20:46 +00:00
|
|
|
|
2004-10-31 16:13:25 +00:00
|
|
|
FIGURES = figures/user-environments.png
|
|
|
|
|
2005-03-16 10:46:33 +00:00
|
|
|
MANUAL_SRCS = manual.xml introduction.xml installation.xml \
|
2007-10-22 12:58:28 +00:00
|
|
|
package-management.xml writing-nix-expressions.xml builtins.xml \
|
2004-10-29 15:26:26 +00:00
|
|
|
build-farm.xml \
|
2008-11-19 15:20:46 +00:00
|
|
|
$(man1_MANS:.1=.xml) $(man8_MANS:.8=.xml) \
|
2012-04-06 18:26:30 +00:00
|
|
|
troubleshooting.xml bugs.xml opt-common.xml opt-common-syn.xml opt-inst-syn.xml \
|
2005-04-01 15:34:23 +00:00
|
|
|
env-common.xml quick-start.xml nix-lang-ref.xml glossary.xml \
|
2005-09-16 10:35:48 +00:00
|
|
|
conf-file.xml release-notes.xml \
|
2005-04-01 15:34:23 +00:00
|
|
|
style.css images
|
2003-08-13 09:13:52 +00:00
|
|
|
|
2012-04-06 19:45:00 +00:00
|
|
|
# Do XInclude processing.
|
|
|
|
manual.xmli: $(MANUAL_SRCS) version.txt
|
|
|
|
$(XMLLINT) --xinclude $< -o $@.tmp
|
|
|
|
mv $@.tmp $@
|
|
|
|
|
2009-09-18 11:45:56 +00:00
|
|
|
# Note: RelaxNG validation requires xmllint >= 2.7.4.
|
2012-04-06 19:45:00 +00:00
|
|
|
manual.is-valid: manual.xmli
|
|
|
|
$(XSLTPROC) --novalid --stringparam profile.condition manual \
|
|
|
|
$(docbookxsl)/profiling/profile.xsl $< 2> /dev/null | \
|
|
|
|
$(XMLLINT) --noout --relaxng $(docbookrng)/docbook.rng -
|
2003-08-12 13:54:42 +00:00
|
|
|
touch $@
|
|
|
|
|
2005-03-15 13:55:41 +00:00
|
|
|
version.txt:
|
|
|
|
echo -n $(VERSION) > version.txt
|
2004-01-08 10:45:23 +00:00
|
|
|
|
2012-04-06 19:45:00 +00:00
|
|
|
man $(MANS): manual.is-valid
|
|
|
|
$(XSLTPROC) --stringparam profile.condition manpage \
|
|
|
|
$(docbookxsl)/profiling/profile.xsl manual.xmli 2> /dev/null | \
|
|
|
|
$(XSLTPROC) $(docbookxsl)/manpages/docbook.xsl -
|
2003-08-12 13:54:42 +00:00
|
|
|
|
2005-03-16 10:46:33 +00:00
|
|
|
manual.html: $(MANUAL_SRCS) manual.is-valid images
|
2012-04-06 19:45:00 +00:00
|
|
|
$(XSLTPROC) --xinclude --stringparam profile.condition manual \
|
|
|
|
$(docbookxsl)/profiling/profile.xsl manual.xml | \
|
|
|
|
$(XSLTPROC) --output manual.html $(docbookxsl)/html/docbook.xsl -
|
2003-08-12 13:54:42 +00:00
|
|
|
|
2007-11-01 14:42:44 +00:00
|
|
|
manual.pdf: $(MANUAL_SRCS) manual.is-valid images
|
|
|
|
if test "$(dblatex)" != ""; then \
|
2012-04-06 19:45:00 +00:00
|
|
|
$(XSLTPROC) --xinclude --stringparam profile.condition manual \
|
|
|
|
$(docbookxsl)/profiling/profile.xsl manual.xml | \
|
|
|
|
$(dblatex) -o manual.pdf $(dblatex_opts) -; \
|
2007-11-01 14:42:44 +00:00
|
|
|
else \
|
|
|
|
echo "Please install dblatex and rerun configure."; \
|
|
|
|
exit 1; \
|
|
|
|
fi
|
|
|
|
|
2005-09-14 18:50:45 +00:00
|
|
|
|
|
|
|
NEWS_OPTS = \
|
|
|
|
--stringparam generate.toc "article nop" \
|
|
|
|
--stringparam section.autolabel.max.depth 0 \
|
|
|
|
--stringparam header.rule 0
|
|
|
|
|
|
|
|
NEWS.html: release-notes.xml
|
2012-04-06 19:45:00 +00:00
|
|
|
$(XSLTPROC) --xinclude --output $@ $(NEWS_OPTS) \
|
2005-09-14 18:50:45 +00:00
|
|
|
$(docbookxsl)/html/docbook.xsl release-notes.xml
|
|
|
|
|
|
|
|
NEWS.txt: release-notes.xml
|
2012-04-06 19:45:00 +00:00
|
|
|
$(XSLTPROC) --xinclude quote-literals.xsl release-notes.xml | \
|
|
|
|
$(XSLTPROC) --output $@.tmp.html $(NEWS_OPTS) \
|
2005-09-14 18:50:45 +00:00
|
|
|
$(docbookxsl)/html/docbook.xsl -
|
2005-09-15 20:29:08 +00:00
|
|
|
LANG=en_US $(w3m) -dump $@.tmp.html > $@
|
2005-09-15 15:21:57 +00:00
|
|
|
rm $@.tmp.html
|
2005-09-14 18:50:45 +00:00
|
|
|
|
|
|
|
|
|
|
|
all-local: manual.html NEWS.html NEWS.txt
|
2003-08-12 13:54:42 +00:00
|
|
|
|
2004-01-06 16:38:32 +00:00
|
|
|
install-data-local: manual.html
|
2008-11-19 13:19:09 +00:00
|
|
|
$(INSTALL) -d $(DESTDIR)$(docdir)/manual
|
|
|
|
$(INSTALL_DATA) manual.html $(DESTDIR)$(docdir)/manual
|
2008-11-29 00:31:39 +00:00
|
|
|
ln -sf manual.html $(DESTDIR)$(docdir)/manual/index.html
|
2008-11-19 13:19:09 +00:00
|
|
|
$(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
|
2008-11-29 00:31:39 +00:00
|
|
|
$(INSTALL) -d $(DESTDIR)$(docdir)/release-notes
|
|
|
|
$(INSTALL_DATA) NEWS.html $(DESTDIR)$(docdir)/release-notes/index.html
|
|
|
|
$(INSTALL_DATA) style.css $(DESTDIR)$(docdir)/release-notes/
|
2004-01-06 16:35:07 +00:00
|
|
|
|
|
|
|
images:
|
|
|
|
mkdir images
|
2006-10-04 12:20:07 +00:00
|
|
|
# cp $(docbookxsl)/images/*.gif images
|
2004-01-06 16:35:07 +00:00
|
|
|
mkdir images/callouts
|
2006-10-04 12:20:07 +00:00
|
|
|
cp $(docbookxsl)/images/callouts/*.gif images/callouts
|
2006-08-01 12:00:37 +00:00
|
|
|
chmod -R +w images
|
2003-08-13 15:17:36 +00:00
|
|
|
|
2012-04-06 20:54:15 +00:00
|
|
|
KEEP = manual.html manual.xmli manual.is-valid version.txt $(MANS) NEWS.html NEWS.txt
|
2004-01-08 10:45:23 +00:00
|
|
|
|
2005-03-16 10:46:33 +00:00
|
|
|
EXTRA_DIST = $(MANUAL_SRCS) $(FIGURES) $(KEEP)
|
2003-11-26 11:24:13 +00:00
|
|
|
|
2004-01-08 10:45:23 +00:00
|
|
|
DISTCLEANFILES = $(KEEP)
|