Commit 238858fc authored by Fred Drake's avatar Fred Drake

Packaged versions of the HTML format need to include any .txt files that

were generated by the use of the productionlist environment or the
\verbatiminput macro.
parent 7e79b9e1
...@@ -349,18 +349,18 @@ postscript-$(PAPER)-$(RELEASE).zip: ps paper-$(PAPER)/README ...@@ -349,18 +349,18 @@ postscript-$(PAPER)-$(RELEASE).zip: ps paper-$(PAPER)/README
html-$(RELEASE).tgz: html html-$(RELEASE).tgz: html
(cd $(HTMLDIR); \ (cd $(HTMLDIR); \
tar cf - *.html */*.css */*.html */*.gif) \ tar cf - *.html */*.css */*.html */*.gif */*.txt) \
| gzip -9 >$@ | gzip -9 >$@
html-$(RELEASE).tar.bz2: html html-$(RELEASE).tar.bz2: html
(cd $(HTMLDIR); \ (cd $(HTMLDIR); \
tar cf - *.html */*.css */*.html */*.gif) \ tar cf - *.html */*.css */*.html */*.gif */*.txt) \
| bzip2 -9 >$@ | bzip2 -9 >$@
html-$(RELEASE).zip: html html-$(RELEASE).zip: html
rm -f $@ rm -f $@
(cd $(HTMLDIR); \ (cd $(HTMLDIR); \
zip -q -9 ../$@ *.html */*.css */*.html */*.gif) zip -q -9 ../$@ *.html */*.css */*.html */*.gif */*.txt)
# convenience targets: # convenience targets:
......
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