doc/sdccman.lyx: various additions and updates (interrupts, inline assembly...
[fw/sdcc] / doc / Makefile
index dcb6f09293eec5c9a06fec02a0bdf4f9e2e01250..ff9e733788e07bdcc6546a1a6c9db6c8d79ec5e5 100644 (file)
@@ -10,7 +10,7 @@ all: $(MANUAL).html $(MANUAL).pdf $(MANUAL).txt \
 
 install:
        $(INSTALL) -d $(docdir)
-       cp -rf *.html *.txt z80 avr $(docdir)
+       cp -rf *.txt z80 avr $(docdir)
        $(shell if [ -f $(MANUAL).html ]; then cp -rf $(MANUAL).html $(docdir); fi)
        $(shell if [ -f $(TSS).html    ]; then cp -rf $(TSS).html    $(docdir); fi)
        $(shell if [ -f $(CDB).html    ]; then cp -rf $(CDB).html    $(docdir); fi)
@@ -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 -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 $*