From: Fred Drake Date: Fri, 28 Aug 1998 21:17:58 +0000 (+0000) Subject: When building the tarball of the PostScript files, also generate & include a X-Git-Tag: v1.5.2a2~332 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2335a305e5ebdcb965d23e5209c194c0b4c8ef42;p=python When building the tarball of the PostScript files, also generate & include a little README giving the page count of each file when printed. --- diff --git a/Doc/Makefile b/Doc/Makefile index ff654cda49..fb77b9135e 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -199,7 +199,8 @@ pdf-$(PAPER)-$(RELEASE).tgz: pdf (cd paper-$(PAPER); tar cf - *.pdf) | gzip -9 >$@ postscript-$(PAPER)-$(RELEASE).tgz: ps - (cd paper-$(PAPER); tar cf - *.ps) | gzip -9 >$@ + (cd paper-$(PAPER); $(MAKE) README) + (cd paper-$(PAPER); tar cf - *.ps README) | gzip -9 >$@ html-$(RELEASE).tgz: $(HTMLDIR)/api/api.html $(HTMLDIR)/ext/ext.html \ $(HTMLDIR)/lib/lib.html $(HTMLDIR)/mac/mac.html \