Added ucsim and as docs to archive
[fw/sdcc] / doc / Makefile
index 6c3970440944bbff58bee29a415148b28691577f..904e62c8dbe7a4c1d34ccb9943269c5b2aa82370 100644 (file)
@@ -2,31 +2,67 @@ 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/index.html $(MANUAL).txt \
+       $(TSS).pdf $(TSS).html/index.html $(TSS).txt \
+       $(CDB).pdf $(CDB).html/index.html $(CDB).txt
 
 install:
-       $(INSTALL) -d $(docdir)
-       cp -rf *.html *.txt *.pdf $(MANUAL).html $(TSS).html z80 avr $(docdir)
+       $(INSTALL) -d $(DESTDIR)$(docdir)
+       cp -rf *.txt z80 avr $(DESTDIR)$(docdir)
+       if [ -f $(MANUAL).html/index.html ]; then cp -rf $(MANUAL).html $(DESTDIR)$(docdir); fi
+       if [ -f $(TSS).html/index.html    ]; then cp -rf $(TSS).html    $(DESTDIR)$(docdir); fi
+       if [ -f $(CDB).html/index.html    ]; then cp -rf $(CDB).html    $(DESTDIR)$(docdir); fi
+       if [ -f $(MANUAL).pdf             ]; then cp -rf $(MANUAL).pdf  $(DESTDIR)$(docdir); fi
+       if [ -f $(TSS).pdf                ]; then cp -rf $(TSS).pdf     $(DESTDIR)$(docdir); fi
+       if [ -f $(CDB).pdf                ]; then cp -rf $(CDB).pdf     $(DESTDIR)$(docdir); fi
+       rm -rf `find $(DESTDIR)$(docdir) -name CVS -type d`
+       rm -f $(DESTDIR)$(docdir)/*/WARNINGS $(DESTDIR)$(docdir)/*/*.pl $(DESTDIR)$(docdir)/*/images.*
 
 uninstall:
-       rm -rf $(docdir)
-
-
-$(MANUAL).html: $(MANUAL).tex $(MANUAL).ind ;#$(MANUAL).glo
-       mkdir -p $@
-       latex2html -split 5 -show_section_numbers -dir $(MANUAL).html $(MANUAL)
-
-$(TSS).html: $(TSS).tex
-       mkdir -p $@
-       latex2html -split 0 -dir $(TSS).html $(TSS)
+       rm -rf $(DESTDIR)$(docdir)
+
+$(MANUAL).html/index.html: $(MANUAL).tex $(MANUAL).ind ;#$(MANUAL).glo
+       mkdir -p `dirname $@`
+       # 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 -local_icons -info "" -dir $(MANUAL).html $(MANUAL)
+       mv `basename $< .tex`.orig.tex $<
+
+$(TSS).html/index.html: $(TSS).tex
+       mkdir -p `dirname $@`
+       # 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 -local_icons -info "" -dir $(TSS).html $(TSS)
+       mv `basename $< .tex`.orig.tex $<
+
+$(CDB).html/index.html: $(CDB).tex
+       mkdir -p `dirname $@`
+       # 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 -local_icons -info "" -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 $<
@@ -35,30 +71,31 @@ $(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
        # makeindex -s l2hglo.ist -o $@ $<
 
-# Deleting all files created by building the program
-# --------------------------------------------------
-clean:
-# The directories are still in CVS, so don't delete them
-#      rm -rf $(MANUAL).html $(TSS).html
-       rm -f $(MANUAL).html/* $(TSS).html/*
-       rm -f $(MANUAL).txt $(TSS).txt *.pdf *.dvi *.tex *.ind *.glo *.aux *.idx *.ilg *.log *.toc
+archive: all
+       rm -rf sdcc-doc sdcc-doc.tar.bz2
+       mkdir sdcc-doc
+       rsync -rC avr z80 *.pdf *.txt sdcc-doc
+
+       for doc in $(MANUAL) $(TSS) $(CDB); do \
+         rsync -R $$doc.html/*.html $$doc.html/*.png $$doc.html/*.css sdcc-doc/; \
+       done
 
-# Deleting all files created by configuring or building the program
-# -----------------------------------------------------------------
-distclean: clean
+       mkdir sdcc-doc/as
+       rsync -rC ../as/doc/* sdcc-doc/as/
 
-# Like clean but some files may still exist
-# -----------------------------------------
-mostlyclean: clean
+       mkdir sdcc-doc/ucsim
+       cd ../sim/ucsim/doc; rsync *.html *.jpg *.gif *.fig ../../../doc/sdcc-doc/ucsim/
 
-# Deleting everything that can reconstructed by this Makefile. It deletes
-# everything deleted by distclean plus files created by bison, etc.
-# -----------------------------------------------------------------------
-realclean: distclean
+       tar -c sdcc-doc | bzip2 -9 > sdcc-doc.tar.bz2
 
+include clean.mk