diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-09-16T12·52+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-09-16T12·52+0200 |
commit | 7a740c9288b55b50d173db8a010611cef51fcc17 (patch) | |
tree | 4419bdb7706ca437a4b64eb838d4c05d1b340343 /doc | |
parent | b1af336132cfe8a6e4c54912cc512f8c28d4ebf3 (diff) |
Drop separate release notes
Diffstat (limited to 'doc')
-rw-r--r-- | doc/manual/local.mk | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/doc/manual/local.mk b/doc/manual/local.mk index f359b3e27a8f..223a49b3736a 100644 --- a/doc/manual/local.mk +++ b/doc/manual/local.mk @@ -83,31 +83,3 @@ $(d)/manual.pdf: $(d)/manual.xml $(MANUAL_SRCS) $(d)/manual.is-valid fi clean-files += $(d)/manual.pdf - - -# Generate the release notes. - -NEWS_OPTS = \ - --stringparam generate.toc "article nop" \ - --stringparam section.autolabel.max.depth 0 \ - --stringparam header.rule 0 - -$(d)/release-notes.html: $(d)/release-notes.xml - $(trace-gen) $(XSLTPROC) --xinclude --output $@ $(NEWS_OPTS) \ - $(docbookxsl)/xhtml/docbook.xsl $< - -NEWS: $(d)/release-notes.xml - $(trace-gen) $(XSLTPROC) --xinclude doc/manual/quote-literals.xsl $< | \ - $(XSLTPROC) --output $@.tmp.html $(NEWS_OPTS) \ - $(docbookxsl)/xhtml/docbook.xsl - && \ - LANG=en_US.UTF-8 $(w3m) -dump $@.tmp.html > $@.tmp && \ - sed -e 's/●/*/g' -e 's/○/-/g' -e 's/━/-/g' < $@.tmp > NEWS && \ - rm $@.tmp $@.tmp.html - -dist-files += NEWS $(d)/release-notes.html - -clean-files += NEWS $(d)/release-notes.html - -all: $(d)/release-notes.html NEWS - -$(foreach file, $(d)/release-notes.html, $(eval $(call install-data-in, $(file), $(docdir)/manual))) |