Remove the "lib-" prefix from the name of the info archive.
authorFred Drake <fdrake@acm.org>
Fri, 8 Jan 1999 15:49:45 +0000 (15:49 +0000)
committerFred Drake <fdrake@acm.org>
Fri, 8 Jan 1999 15:49:45 +0000 (15:49 +0000)
Doc/Makefile

index 39e286dde4cd38625592ebadd4892f0019bc4f03..49c1d5b172b5ed36d618865f6038940f8f29536f 100644 (file)
@@ -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