readded test_suite_spec and cdbfileformat (were accidentally commented out)
[fw/sdcc] / doc / Makefile
index 72b79f61bd24486920837f4f97b8f25791156f53..31ad2d050fbc124dbf31dcfe9c86f6c55070378a 100644 (file)
@@ -2,29 +2,63 @@ include ../Makefile.common
 
 MANUAL = sdccman
 TSS = test_suite_spec
+CDB = cdbfileformat
 
-all: $(MANUAL).html $(MANUAL).pdf $(MANUAL).txt \
-       $(TSS).html $(TSS).pdf $(TSS).txt
+all: $(MANUAL).pdf $(MANUAL).html $(MANUAL).txt \
+       $(TSS).pdf $(TSS).html $(TSS).txt \
+       $(CDB).pdf $(CDB).html $(CDB).txt
 
 install:
        $(INSTALL) -d $(docdir)
-       cp -rf *.html *.txt *.pdf $(MANUAL).html $(TSS).html 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)
+       $(shell if [ -f *.pdf          ]; then cp -rf *.pdf          $(docdir); fi)
 
 uninstall:
        rm -rf $(docdir)
 
-
 $(MANUAL).html: $(MANUAL).tex $(MANUAL).ind ;#$(MANUAL).glo
-       latex2html -split 5 -show_section_numbers -dir $(MANUAL).html $(MANUAL)
+       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,\\tabularnewline$$,\\\\,g' > $<
+       -latex2html -split 5 -show_section_numbers -dir $(MANUAL).html $(MANUAL)
+       mv `basename $< .tex`.orig.tex $<
 
 $(TSS).html: $(TSS).tex
-       latex2html -split 0 -dir $(TSS).html $(TSS)
+       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,\\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,\\tabularnewline$$,\\\\,g' > $<
+       -latex2html -split 0 -show_section_numbers -dir $(CDB).html $(CDB)
+       mv `basename $< .tex`.orig.tex $<
 
 %.txt: %.lyx
        lyx -e text $<
 
-%.pdf: %.dvi
-       pdflatex $*
+%.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 $<
@@ -33,7 +67,11 @@ $(TSS).html: $(TSS).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