From: frief Date: Fri, 7 Nov 2003 17:25:28 +0000 (+0000) Subject: - removed dependency from l2hidx.ist (not in the directory and adds an unwanted section) X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=52c4aa3d77ab24a389c63d02489f735746d232df;p=fw%2Fsdcc - removed dependency from l2hidx.ist (not in the directory and adds an unwanted section) - always use dvipdf to generate the pdf file (pdflatex creates docs for acrobat reader >= 5.0) - two runs of latex before and after makeindex (needed for correct pagenumbers in index) git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@3000 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/doc/Makefile b/doc/Makefile index ff9e7337..51d3fd4f 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -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,7 +19,6 @@ 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 @@ -53,8 +52,13 @@ $(CDB).html: $(CDB).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 +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