-bottom_navigation for sdccman.html pages
[fw/sdcc] / doc / Makefile
index 0cc6cff0a75a9e3f969dfbbd2110cce635122f1d..fc0dda6f7412ac6e201dd2f91e4d675910b55f4f 100644 (file)
@@ -22,20 +22,36 @@ uninstall:
 
 $(MANUAL).html: $(MANUAL).tex $(MANUAL).ind ;#$(MANUAL).glo
        mkdir -p $@
-       latex2html -split 5 -show_section_numbers -dir $(MANUAL).html $(MANUAL)
+       # fixes latex2html problems with two consecutive dashes for long-options: --stack-auto
+       # fixes latex2html problems with \tabularnewline
+       mv $< `basename $< .tex`.orig.tex
+       sed 's,-\\/-,-\\/-\\/-,g' < `basename $< .tex`.orig.tex | \
+       sed 's,\\tabularnewline$$,\\\\,g' > $<
+       -latex2html -split 5 -show_section_numbers -bottom_navigation -dir $(MANUAL).html $(MANUAL)
+       mv `basename $< .tex`.orig.tex $<
 
 $(TSS).html: $(TSS).tex
        mkdir -p $@
-       latex2html -split 0 -dir $(TSS).html $(TSS)
+       # fixes latex2html problems with two consecutive dashes for long-options: --stack-auto
+       # fixes latex2html problems with \tabularnewline
+       mv $< `basename $< .tex`.orig.tex
+       sed 's,-\\/-,-\\/-\\/-,g' < `basename $< .tex`.orig.tex | \
+       sed 's,\\tabularnewline$$,\\\\,g' > $<
+       -latex2html -split 0 -dir $(TSS).html $(TSS)
+       mv `basename $< .tex`.orig.tex $<
 
 $(CDB).html: $(CDB).tex
        mkdir -p $@
-       latex2html -split 0 -show_section_numbers -dir $(CDB).html $(CDB)
+       # fixes latex2html problems with two consecutive dashes for long-options: --stack-auto
+       # fixes latex2html problems with \tabularnewline
+       mv $< `basename $< .tex`.orig.tex
+       sed 's,-\\/-,-\\/-\\/-,g' < `basename $< .tex`.orig.tex | \
+       sed 's,\\tabularnewline$$,\\\\,g' > $<
+       -latex2html -split 0 -show_section_numbers -dir $(CDB).html $(CDB)
+       mv `basename $< .tex`.orig.tex $<
 
 %.txt: %.lyx
        lyx -e text $<
-       sed s/---/--/ $@ > $*.tmp
-       mv $*.tmp $@
 
 %.pdf: %.tex %.dvi
        which pdflatex > /dev/null && pdflatex $* || dvipdf $*