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 ff654cd..fb77b91 100644
--- a/Doc/Makefile
+++ b/Doc/Makefile
@@ -199,7 +199,8 @@
 	(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 \