@@ -59,7 +59,7 @@ TOOLSDIR= tools
5959
6060# This is the *documentation* release, and is used to construct the file
6161# names of the downloadable tarballs.
62- RELEASE =1.5.2p1
62+ RELEASE =1.6
6363
6464
6565# These must be declared phony since there
@@ -219,6 +219,7 @@ latex-$(RELEASE).tar.bz2:
219219 $(TOOLSDIR ) /mksourcepkg --bzip2 $(RELEASE )
220220
221221latex-$(RELEASE ) .zip :
222+ rm -f $@
222223 $(TOOLSDIR ) /mksourcepkg --zip $(RELEASE )
223224
224225pdf-$(PAPER ) -$(RELEASE ) .tgz : pdf
@@ -228,30 +229,36 @@ pdf-$(PAPER)-$(RELEASE).tar.bz2: pdf
228229 (cd paper-$( PAPER) ; tar cf - * .pdf) | bzip2 -9 > $@
229230
230231pdf-$(PAPER ) -$(RELEASE ) .zip : pdf
231- (cd paper-$( PAPER) ; zip -9 ../$@ * .pdf)
232+ rm -f $@
233+ (cd paper-$( PAPER) ; zip -q -9 ../$@ * .pdf)
232234
233235postscript-$(PAPER ) -$(RELEASE ) .tar.bz2 : ps
234236 (cd paper-$( PAPER) ; $( MAKE) README)
235- (cd paper-$( PAPER) ; tar cf - * .ps README) | gzip -9 > $@
237+ (cd paper-$( PAPER) ; tar cf - * .ps README) | bzip2 -9 > $@
236238
237239postscript-$(PAPER ) -$(RELEASE ) .tgz : ps
238240 (cd paper-$( PAPER) ; $( MAKE) README)
239- (cd paper-$( PAPER) ; tar cf - * .ps README) | bzip2 -9 > $@
241+ (cd paper-$( PAPER) ; tar cf - * .ps README) | gzip -9 > $@
240242
241243postscript-$(PAPER ) -$(RELEASE ) .zip : ps
242244 (cd paper-$( PAPER) ; $( MAKE) README)
243- (cd paper-$( PAPER) ; zip -9 ../$@ * .ps README)
245+ rm -f $@
246+ (cd paper-$( PAPER) ; zip -q -9 ../$@ * .ps README)
244247
245248html-$(RELEASE ) .tgz : html
246- (cd $( HTMLDIR) ; tar cf - * index.html ??? /* .css ??? /* .html * /* .gif) \
249+ (cd $( HTMLDIR) ; \
250+ tar cf - * index.html ??? /* .css ??? /* .html * /* .gif) \
247251 | gzip -9 > $@
248252
249253html-$(RELEASE ) .tar.bz2 : html
250- (cd $( HTMLDIR) ; tar cf - * index.html ??? /* .css ??? /* .html * /* .gif) \
254+ (cd $( HTMLDIR) ; \
255+ tar cf - * index.html ??? /* .css ??? /* .html * /* .gif) \
251256 | bzip2 -9 > $@
252257
253258html-$(RELEASE ) .zip : html
254- (cd $( HTMLDIR) ; zip -9 ../$@ * index.html ??? /* .css ??? /* .html * /* .gif)
259+ rm -f $@
260+ (cd $( HTMLDIR) ; \
261+ zip -q -9 ../$@ * index.html ??? /* .css ??? /* .html * /* .gif)
255262
256263# convenience targets:
257264
0 commit comments