about summary refs log tree commit diff
path: root/doc/Makefile
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2006-01-30 17:34:34 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2006-01-30 17:34:34 +0000
commit6eff2a5ff8817825c6decac08d7a9fb09b665593 (patch)
tree635e8f886c3e14640902e81d564816c7c557c9e0 /doc/Makefile
parent816cb778897f9d3165b48b6218596d5d39e8d48f (diff)
downloadnixlib-6eff2a5ff8817825c6decac08d7a9fb09b665593.tar
nixlib-6eff2a5ff8817825c6decac08d7a9fb09b665593.tar.gz
nixlib-6eff2a5ff8817825c6decac08d7a9fb09b665593.tar.bz2
nixlib-6eff2a5ff8817825c6decac08d7a9fb09b665593.tar.lz
nixlib-6eff2a5ff8817825c6decac08d7a9fb09b665593.tar.xz
nixlib-6eff2a5ff8817825c6decac08d7a9fb09b665593.tar.zst
nixlib-6eff2a5ff8817825c6decac08d7a9fb09b665593.zip
* NEWS in DocBook.
svn path=/nixpkgs/trunk/; revision=4627
Diffstat (limited to 'doc/Makefile')
-rw-r--r--doc/Makefile27
1 files changed, 27 insertions, 0 deletions
diff --git a/doc/Makefile b/doc/Makefile
new file mode 100644
index 000000000000..c84facb435b3
--- /dev/null
+++ b/doc/Makefile
@@ -0,0 +1,27 @@
+ENV = SGML_CATALOG_FILES=$(docbookcatalog)
+
+XMLLINT = $(ENV) xmllint --catalogs
+XSLTPROC = $(ENV) xsltproc --catalogs \
+ --param section.autolabel 1 \
+ --param section.label.includes.component.label 1 \
+ --param html.stylesheet \'style.css\' \
+ --param xref.with.number.and.title 1 \
+ --param toc.section.depth 3
+
+NEWS_OPTS = \
+ --stringparam generate.toc "article nop" \
+ --stringparam section.autolabel.max.depth 0 \
+ --stringparam header.rule 0
+
+all: NEWS.html NEWS.txt
+
+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 -
+	LANG=en_US w3m -dump $@.tmp.html > $@
+	rm $@.tmp.html