From: Fred Drake Date: Fri, 8 Jan 1999 15:49:45 +0000 (+0000) Subject: Remove the "lib-" prefix from the name of the info archive. X-Git-Tag: v1.5.2b2~410 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b6584cac1ecbf6d93bb112cc6dcc30b82aa9735d;p=thirdparty%2FPython%2Fcpython.git Remove the "lib-" prefix from the name of the info archive. --- diff --git a/Doc/Makefile b/Doc/Makefile index 39e286dde4cd..49c1d5b172b5 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -189,7 +189,7 @@ webcheck: # Release packaging targets: -lib-info-$(RELEASE).tgz: info +info-$(RELEASE).tgz: info (cd $(INFODIR); tar cf - python-???.info*) | gzip -9 >$@ latex-$(RELEASE).tgz: @@ -213,7 +213,7 @@ html-$(RELEASE).tgz: # convenience targets: tarhtml: html-$(RELEASE).tgz -tarinfo: lib-info-$(RELEASE).tgz +tarinfo: info-$(RELEASE).tgz tarps: postscript-$(PAPER)-$(RELEASE).tgz tarpdf: pdf-$(PAPER)-$(RELEASE).tgz tarlatex: latex-$(RELEASE).tgz @@ -232,10 +232,11 @@ clean: (cd $(INFODIR); $(MAKE) clean) l2hclean: - (cd $(HTMLDIR); rm -rf api ext lib ref tut) + (cd $(HTMLDIR); $(MAKE) clean) # Remove temporaries as well as final products -clobber: l2hclean +clobber: + (cd $(HTMLDIR); $(MAKE) clobber) rm -f html-$(RELEASE).tgz info-$(RELEASE).tgz rm -f pdf-$(RELEASE).tgz postscript-$(RELEASE).tgz rm -f latex-$(RELEASE).tgz