diff options
author | Fred Drake <fdrake@acm.org> | 1998-08-28 21:17:58 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1998-08-28 21:17:58 (GMT) |
commit | 2335a305e5ebdcb965d23e5209c194c0b4c8ef42 (patch) | |
tree | 962bdb5744b1b586cc2fbb1c05fa03fcda1dce35 /Doc | |
parent | 7c86c594ead7a6168bf6e6925cf8c82e45af66e4 (diff) | |
download | cpython-2335a305e5ebdcb965d23e5209c194c0b4c8ef42.zip cpython-2335a305e5ebdcb965d23e5209c194c0b4c8ef42.tar.gz cpython-2335a305e5ebdcb965d23e5209c194c0b4c8ef42.tar.bz2 |
When building the tarball of the PostScript files, also generate & include a
little README giving the page count of each file when printed.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/Makefile b/Doc/Makefile index ff654cd..fb77b91 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 \ |