When building the HTML packages, make sure we pick up all the HTML files

at the top level of the tree.
This commit is contained in:
Fred Drake 2000-09-08 21:54:44 +00:00
parent a61bfa84c9
commit 90f876798f
1 changed files with 3 additions and 3 deletions

View File

@ -279,18 +279,18 @@ postscript-$(PAPER)-$(RELEASE).zip: ps
html-$(RELEASE).tgz: html
(cd $(HTMLDIR); \
tar cf - *index.html */*.css */*.html */*.gif) \
tar cf - *.html */*.css */*.html */*.gif) \
| gzip -9 >$@
html-$(RELEASE).tar.bz2: html
(cd $(HTMLDIR); \
tar cf - *index.html */*.css */*.html */*.gif) \
tar cf - *.html */*.css */*.html */*.gif) \
| bzip2 -9 >$@
html-$(RELEASE).zip: html
rm -f $@
(cd $(HTMLDIR); \
zip -q -9 ../$@ *index.html */*.css */*.html */*.gif)
zip -q -9 ../$@ *.html */*.css */*.html */*.gif)
longhtml-$(RELEASE).zip: longhtml
rm -f $@