mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
bd0e895bad
* Linux 2.6.22.6. * w3m 0.5.2. svn path=/nixpkgs/trunk/; revision=9305
31 lines
967 B
Makefile
31 lines
967 B
Makefile
# You may need to override this.
|
|
docbookxsl = $(HOME)/.nix-profile/xml/xsl/docbook
|
|
|
|
XMLLINT = xmllint --catalogs
|
|
XSLTPROC = 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 \
|
|
--param admon.style \'\' \
|
|
--param callout.graphics.extension \'.gif\'
|
|
|
|
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
|