Commit e9792c45 authored by Greg Ward's avatar Greg Ward

When building HTML releases, refer to */*.css and */*.html instead of

???/*.css and ???/*.html -- need to pick up the Distutils manuals!
parent 3abb1043
......@@ -276,18 +276,18 @@ postscript-$(PAPER)-$(RELEASE).zip: ps
html-$(RELEASE).tgz: html
(cd $(HTMLDIR); \
tar cf - *index.html ???/*.css ???/*.html */*.gif) \
tar cf - *index.html */*.css */*.html */*.gif) \
| gzip -9 >$@
html-$(RELEASE).tar.bz2: html
(cd $(HTMLDIR); \
tar cf - *index.html ???/*.css ???/*.html */*.gif) \
tar cf - *index.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 ../$@ *index.html */*.css */*.html */*.gif)
longhtml-$(RELEASE).zip: longhtml
rm -f $@
......
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