X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=doc%2FMakefile;h=93353048bcee3dfdf3bd6178061abb77c9de43c7;hb=f1c40004ae349f7cd3a1a5c5c85f62f695196370;hp=fc0dda6f7412ac6e201dd2f91e4d675910b55f4f;hpb=8537a77cbcd9fd7774e8fcc0641fc70d214ef0b8;p=fw%2Fsdcc diff --git a/doc/Makefile b/doc/Makefile index fc0dda6f..93353048 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -4,57 +4,65 @@ 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/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 *.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) + $(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) + rm -rf $(DESTDIR)$(docdir) - -$(MANUAL).html: $(MANUAL).tex $(MANUAL).ind ;#$(MANUAL).glo - mkdir -p $@ +$(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 -bottom_navigation -dir $(MANUAL).html $(MANUAL) + -latex2html -split 5 -show_section_numbers -local_icons -dir $(MANUAL).html $(MANUAL) mv `basename $< .tex`.orig.tex $< -$(TSS).html: $(TSS).tex - mkdir -p $@ +$(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 -dir $(TSS).html $(TSS) + -latex2html -split 0 -local_icons -dir $(TSS).html $(TSS) mv `basename $< .tex`.orig.tex $< -$(CDB).html: $(CDB).tex - mkdir -p $@ +$(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 -dir $(CDB).html $(CDB) + -latex2html -split 0 -show_section_numbers -local_icons -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 $< @@ -63,7 +71,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