diff options
author | Erwin Nindl <nine@wirdorange.org> | 2007-12-07 17:46:13 +0000 |
---|---|---|
committer | Erwin Nindl <nine@wirdorange.org> | 2007-12-07 17:46:13 +0000 |
commit | 809b470ce90e53c532dfebc44c2e7c169c33402f (patch) | |
tree | fbb0fd7afa2f3b0f214b74b448c411c02121e3c1 /doc/latex/Makefile | |
parent | ssl comments (diff) |
removed doxygen folders from svn
Diffstat (limited to 'doc/latex/Makefile')
-rw-r--r-- | doc/latex/Makefile | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/doc/latex/Makefile b/doc/latex/Makefile deleted file mode 100644 index 776fcf9..0000000 --- a/doc/latex/Makefile +++ /dev/null @@ -1,39 +0,0 @@ -all: clean refman.dvi - -ps: refman.ps - -pdf: refman.pdf - -ps_2on1: refman_2on1.ps - -pdf_2on1: refman_2on1.pdf - -refman.ps: refman.dvi - dvips -o refman.ps refman.dvi - -refman.pdf: refman.ps - ps2pdf refman.ps refman.pdf - -refman.dvi: refman.tex doxygen.sty - echo "Running latex..." - latex refman.tex - echo "Running makeindex..." - makeindex refman.idx - echo "Rerunning latex...." - latex refman.tex - latex_count=5 ; \ - while egrep -s 'Rerun (LaTeX|to get cross-references right)' refman.log && [ $$latex_count -gt 0 ] ;\ - do \ - echo "Rerunning latex...." ;\ - latex refman.tex ;\ - latex_count=`expr $$latex_count - 1` ;\ - done - -refman_2on1.ps: refman.ps - psnup -2 refman.ps >refman_2on1.ps - -refman_2on1.pdf: refman_2on1.ps - ps2pdf refman_2on1.ps refman_2on1.pdf - -clean: - rm -f *.ps *.dvi *.aux *.toc *.idx *.ind *.ilg *.log *.out refman.pdf |