* src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
[fw/sdcc] / doc / Makefile
index d49de4b668b6ab4fd6262127192ea579f051e1e8..31ad2d050fbc124dbf31dcfe9c86f6c55070378a 100644 (file)
@@ -4,9 +4,9 @@ MANUAL = sdccman
 TSS = test_suite_spec
 CDB = cdbfileformat
 
-all: $(MANUAL).html $(MANUAL).pdf $(MANUAL).txt \
-       $(TSS).html $(TSS).pdf $(TSS).txt \
-       $(CDB).html $(CDB).pdf $(CDB).txt
+all: $(MANUAL).pdf $(MANUAL).html $(MANUAL).txt \
+       $(TSS).pdf $(TSS).html $(TSS).txt \
+       $(CDB).pdf $(CDB).html $(CDB).txt
 
 install:
        $(INSTALL) -d $(docdir)
@@ -19,36 +19,46 @@ install:
 uninstall:
        rm -rf $(docdir)
 
-
 $(MANUAL).html: $(MANUAL).tex $(MANUAL).ind ;#$(MANUAL).glo
        mkdir -p $@
        # 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,-\\/-,-\\/-\\/-,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 $@
        # 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,-\\/-,-\\/-\\/-,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 $@
        # 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,-\\/-,-\\/-\\/-,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 $<
 
-%.pdf: %.tex %.dvi
-       which pdflatex > /dev/null && pdflatex $* || dvipdf $*
+%.pdf: %.tex %.dvi %.ind
+       dvipdf $*
+# pdflatex creates documents for acrobat reader >= 5.0 
+#      which pdflatex > /dev/null && pdflatex $* || dvipdf $*
+
+%.ps:  %.pdf
+       dvips $*
 
 %.dvi: %.tex
        latex $<
@@ -57,7 +67,11 @@ $(CDB).html: $(CDB).tex
        lyx -e latex $<
 
 %.ind: %.dvi
-       makeindex -s l2hidx.ist $*
+       latex $*
+       -makeindex $*
+#      -makeindex -s l2hidx.ist $*
+       latex $*
+       latex $*
 
 %.glo: %.dvi
        # the glossary, not implemented yet