summaryrefslogtreecommitdiffstats
path: root/Doc/Makefile
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>1999-01-08 15:49:45 (GMT)
committerFred Drake <fdrake@acm.org>1999-01-08 15:49:45 (GMT)
commitb6584cac1ecbf6d93bb112cc6dcc30b82aa9735d (patch)
tree372c5faf907c45f906fb99c75e792a2e8314eceb /Doc/Makefile
parented94dde4b93cc011defed776732a4e734d81bc13 (diff)
downloadcpython-b6584cac1ecbf6d93bb112cc6dcc30b82aa9735d.zip
cpython-b6584cac1ecbf6d93bb112cc6dcc30b82aa9735d.tar.gz
cpython-b6584cac1ecbf6d93bb112cc6dcc30b82aa9735d.tar.bz2
Remove the "lib-" prefix from the name of the info archive.
Diffstat (limited to 'Doc/Makefile')
-rw-r--r--Doc/Makefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/Doc/Makefile b/Doc/Makefile
index 39e286d..49c1d5b 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