diff options
author | Fred Drake <fdrake@acm.org> | 2001-07-06 22:28:47 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-07-06 22:28:47 (GMT) |
commit | 238858fc51a21ac8cb235ce97d579b6ab6f51da7 (patch) | |
tree | 2c12d242d1d68b7fdca8910328b016f52e8005d6 | |
parent | 7e79b9e1cc50f05449e1aa4ed6e36a10a55847be (diff) | |
download | cpython-238858fc51a21ac8cb235ce97d579b6ab6f51da7.zip cpython-238858fc51a21ac8cb235ce97d579b6ab6f51da7.tar.gz cpython-238858fc51a21ac8cb235ce97d579b6ab6f51da7.tar.bz2 |
Packaged versions of the HTML format need to include any .txt files that
were generated by the use of the productionlist environment or the
\verbatiminput macro.
-rw-r--r-- | Doc/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/Makefile b/Doc/Makefile index c9045ce..59938dd 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -349,18 +349,18 @@ postscript-$(PAPER)-$(RELEASE).zip: ps paper-$(PAPER)/README html-$(RELEASE).tgz: html (cd $(HTMLDIR); \ - tar cf - *.html */*.css */*.html */*.gif) \ + tar cf - *.html */*.css */*.html */*.gif */*.txt) \ | gzip -9 >$@ html-$(RELEASE).tar.bz2: html (cd $(HTMLDIR); \ - tar cf - *.html */*.css */*.html */*.gif) \ + tar cf - *.html */*.css */*.html */*.gif */*.txt) \ | bzip2 -9 >$@ html-$(RELEASE).zip: html rm -f $@ (cd $(HTMLDIR); \ - zip -q -9 ../$@ *.html */*.css */*.html */*.gif) + zip -q -9 ../$@ *.html */*.css */*.html */*.gif */*.txt) # convenience targets: |