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:
parent
a61bfa84c9
commit
90f876798f
|
@ -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 $@
|
||||
|
|
Loading…
Reference in New Issue