diff options
author | Fred Drake <fdrake@acm.org> | 2003-07-17 11:55:18 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2003-07-17 11:55:18 (GMT) |
commit | de7cdb26d174c9de6fc869d21ac1abc6c24a7956 (patch) | |
tree | 3a4a8943d56862cd092c09224618e530b6bcc081 /Doc/Makefile | |
parent | e5f15ff8cbebf53d0104d27055938c9b60413335 (diff) | |
download | cpython-de7cdb26d174c9de6fc869d21ac1abc6c24a7956.zip cpython-de7cdb26d174c9de6fc869d21ac1abc6c24a7956.tar.gz cpython-de7cdb26d174c9de6fc869d21ac1abc6c24a7956.tar.bz2 |
- put the GNU info packages in the same place as everything else
- add a convenience target to create the package list directly
Diffstat (limited to 'Doc/Makefile')
-rw-r--r-- | Doc/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Doc/Makefile b/Doc/Makefile index 328e426..e4d9d6d 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -528,11 +528,11 @@ paper-$(PAPER)/README: $(PSFILES) $(TOOLSDIR)/getpagecounts info-$(RELEASE).tgz: info cd $(INFODIR) && tar cf - README python.dir python-*.info* \ - | gzip -9 >$@ + | gzip -9 >../$@ info-$(RELEASE).tar.bz2: info cd $(INFODIR) && tar cf - README python.dir python-*.info* \ - | bzip2 -9 >$@ + | bzip2 -9 >../$@ latex-$(RELEASE).tgz: $(PYTHON) $(TOOLSDIR)/mksourcepkg --gzip $(RELEASE) @@ -654,6 +654,9 @@ distlatex: tarlatex bziplatex ziplatex paperdist: distpdf distps edist: disthtml zipisilo +pkglist: + $(TOOLSDIR)/mkpkglist >pkglist.html + distfiles: paperdist edist $(TOOLSDIR)/mksourcepkg --all $(RELEASE) $(TOOLSDIR)/mkpkglist >pkglist.html |