diff options
author | Fred Drake <fdrake@acm.org> | 1999-08-02 20:20:14 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1999-08-02 20:20:14 (GMT) |
commit | 83c0983bf693cde505adbfad11a336d8390fe334 (patch) | |
tree | e4da4ece89a5bd7065115b56e975c718e8459d35 /Doc | |
parent | 9ff3a6a6e71b08f97284aa8a521a25d5674a8da4 (diff) | |
download | cpython-83c0983bf693cde505adbfad11a336d8390fe334.zip cpython-83c0983bf693cde505adbfad11a336d8390fe334.tar.gz cpython-83c0983bf693cde505adbfad11a336d8390fe334.tar.bz2 |
Use the mksourcepgk script instead of mktarball.sh.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/Makefile | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/Doc/Makefile b/Doc/Makefile index 70a373a..d849189 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -213,13 +213,13 @@ info-$(RELEASE).tar.bz2: info | bzip2 -9 >$@ latex-$(RELEASE).tgz: - $(TOOLSDIR)/mktarball.sh $(RELEASE) + $(TOOLSDIR)/mksourcepkg --gzip $(RELEASE) latex-$(RELEASE).tar.bz2: - $(TOOLSDIR)/mktarball.sh --bzip2 $(RELEASE) + $(TOOLSDIR)/mksourcepkg --bzip2 $(RELEASE) latex-$(RELEASE).zip: - $(TOOLSDIR)/mktarball.sh --zip $(RELEASE) + $(TOOLSDIR)/mksourcepkg --zip $(RELEASE) pdf-$(PAPER)-$(RELEASE).tgz: pdf (cd paper-$(PAPER); tar cf - *.pdf) | gzip -9 >$@ @@ -261,14 +261,14 @@ tarps: postscript-$(PAPER)-$(RELEASE).tgz tarpdf: pdf-$(PAPER)-$(RELEASE).tgz tarlatex: latex-$(RELEASE).tgz -tarballs: tarpdf tarps tarhtml tarlatex +tarballs: tarpdf tarps tarhtml ziphtml: html-$(RELEASE).zip zipps: postscript-$(PAPER)-$(RELEASE).zip zippdf: pdf-$(PAPER)-$(RELEASE).zip ziplatex: latex-$(RELEASE).zip -zips: zippdf zipps ziphtml ziplatex +zips: zippdf zipps ziphtml bziphtml: html-$(RELEASE).tar.bz2 bzipinfo: info-$(RELEASE).tar.bz2 @@ -276,9 +276,10 @@ bzipps: postscript-$(PAPER)-$(RELEASE).tar.bz2 bzippdf: pdf-$(PAPER)-$(RELEASE).tar.bz2 bziplatex: latex-$(RELEASE).tar.bz2 -bzips: bzippdf bzipps bziphtml bziplatex +bzips: bzippdf bzipps bziphtml distfiles: tarballs zips bzips + $(TOOLSDIR)/mksourcepkg --all $(RELEASE) # Housekeeping targets |