Commit b36615d5 authored by Fred Drake's avatar Fred Drake

- update pkglist.html more frequently, and explain why that's helpful

- add a comment explaining what pkglist.html is for
parent f7a0d687
...@@ -677,9 +677,21 @@ distps: tarps bzipps zipps ...@@ -677,9 +677,21 @@ distps: tarps bzipps zipps
distpdf: tarpdf bzippdf zippdf distpdf: tarpdf bzippdf zippdf
distlatex: tarlatex bziplatex ziplatex distlatex: tarlatex bziplatex ziplatex
paperdist: distpdf distps # We use the "pkglist" target at the end of these to ensure the
edist: disthtml distinfo zipisilo # package list is updated after building either of these; this seems a
# reasonable compromise between only building it for distfiles or
# having to build it manually. Doing it here allows the packages for
# distribution to be built using either of
# make distfiles && make PAPER=a4 paperdist
# make paperdist && make PAPER=a4 distfiles
# The small amount of additional work is a small price to pay for not
# having to remember which order to do it in. ;)
paperdist: distpdf distps pkglist
edist: disthtml distinfo zipisilo pkglist
# The pkglist.html file is used as part of the download.html page on
# python.org; it is not used as intermediate input here or as part of
# the packages created.
pkglist: pkglist:
$(TOOLSDIR)/mkpkglist >pkglist.html $(TOOLSDIR)/mkpkglist >pkglist.html
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment