From: hno <> Date: Thu, 17 Jan 2008 15:33:32 +0000 (+0000) Subject: Correct releasenotes eneration X-Git-Tag: BASIC_TPROXY4~188 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a3445c6acbe03ce61424438b4e1cdcc363284264;p=thirdparty%2Fsquid.git Correct releasenotes eneration --- diff --git a/doc/release-notes/Makefile b/doc/release-notes/Makefile index 7597ad8481..485c9a9641 100644 --- a/doc/release-notes/Makefile +++ b/doc/release-notes/Makefile @@ -1,6 +1,4 @@ -DOC = release-3.0 release-3.1 - -all: $(DOC).html +all: release-3.1.html $(DOC).ps: $(DOC).sgml linuxdoc -B latex -o ps $(DOC) @@ -11,16 +9,16 @@ $(DOC).ps: $(DOC).sgml # latex $(DOC).tex # -$(DOC).txt: $(DOC).sgml - linuxdoc -B txt --filter $(DOC) +%.txt: %.sgml + linuxdoc -B txt --filter $< -$(DOC).html: $(DOC).sgml - linuxdoc -B html --split=0 $(DOC) +%.html: %.sgml + linuxdoc -B html --split=0 $< -$(DOC).man: $(DOC).sgml +%.man: %.sgml linuxdoc -B txt -m $(DOC) clean: rm -f *.html - rm -f $(DOC).tex $(DOC).ps $(DOC).dvi $(DOC).aux $(DOC).log $(DOC).toc - rm -f $(DOC).txt $(DOC).man + rm -f *.tex *.ps *.dvi *.aux *.log *.toc + rm -f *.txt *.man