diff options
author | Fred Drake <fdrake@acm.org> | 2001-07-17 23:35:46 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-07-17 23:35:46 (GMT) |
commit | 8f65aeffbd664018c28fda8078265bb66517a266 (patch) | |
tree | 3ecaa5b01ccf57353e9c1c5cf9ea5af77fd4ccbc /Doc | |
parent | 0068e9c1eb98a70683e6dddde2af313782060db5 (diff) | |
download | cpython-8f65aeffbd664018c28fda8078265bb66517a266.zip cpython-8f65aeffbd664018c28fda8078265bb66517a266.tar.gz cpython-8f65aeffbd664018c28fda8078265bb66517a266.tar.bz2 |
Revise the rules for building the distribution files for the HTML format.
These work again.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/Makefile | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/Doc/Makefile b/Doc/Makefile index a951ac7..e8cfaa3 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -359,15 +359,16 @@ postscript-$(PAPER)-$(RELEASE).zip: ps paper-$(PAPER)/README rm -f $@ cd paper-$(PAPER) && zip -q -9 ../$@ *.ps README -html-$(RELEASE).tgz: html +html-$(RELEASE).tar: html cd $(HTMLDIR) && \ - tar cf - *.html */*.css */*.html */*.gif */*.txt \ - | gzip -9 >$@ + tar cf ../html-$(RELEASE).tar *.html */*.css */*.html \ + */*.gif */*.txt -html-$(RELEASE).tar.bz2: html - cd $(HTMLDIR) && \ - tar cf - *.html */*.css */*.html */*.gif */*.txt \ - | bzip2 -9 >$@ +html-$(RELEASE).tgz: html-$(RELEASE).tar + gzip -9 <html-$(RELEASE).tar >$@ + +html-$(RELEASE).tar.bz2: html-$(RELEASE).tar + bzip2 -9 <html-$(RELEASE).tar >$@ html-$(RELEASE).zip: html rm -f $@ @@ -415,10 +416,12 @@ distfiles: tarballs zips bzips # - sources: .tex, .bib, .sty, *.cls # - useful results: .dvi, .pdf, .ps, .texi, .info clean: + rm -f html-$(RELEASE).tar cd $(INFODIR) && $(MAKE) clean # Remove temporaries as well as final products clobber: + rm -f html-$(RELEASE).tar rm -f html-$(RELEASE).tgz info-$(RELEASE).tgz rm -f pdf-$(RELEASE).tgz postscript-$(RELEASE).tgz rm -f latex-$(RELEASE).tgz html-$(RELEASE).zip |