1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
Description: Use hevea instead of latex2html, now that latter has moved to
non-free.
0.5.19+beta20030413-2
Author: Chris Hanson <cph@debian.org>
Bug-Debian: https://bugs.debian.org/221348
--- a/doc/Makefile
+++ b/doc/Makefile
@@ -4,7 +4,7 @@
DVI = library.dvi
PS = ${DVI:.dvi=.ps}
-
+HTML = ${DVI:.dvi=.html}
LATEX = latex
DVIPS = dvips
@@ -18,13 +18,17 @@ FIG2DEV = fig2dev
all: $(DVI)
dvi: $(DVI)
ps: $(PS)
+html: $(HTML)
library.ps: library.dvi
library.dvi: library.ltx structure.tex binhex.tex
+library.html: library.ltx library.dvi
+ hevea -fix -o $@ $<
+
clean:
- rm -f *.aux *.log *.toc *~
+ rm -f *.aux *.haux *.log *.toc *.htoc *~ *.html
rm -f *.o td-v1 td-v2 td-v3
distclean: clean
|