diff options
| author | Gary Scavone <gary@music.mcgill.ca> | 2013-10-10 23:55:02 +0200 |
|---|---|---|
| committer | Stephen Sinclair <sinclair@music.mcgill.ca> | 2013-10-10 23:55:02 +0200 |
| commit | 9f727b28665547db7609c0baf5c39ca96af71565 (patch) | |
| tree | 65d5391e3ba84bc843e81e52f46918f93c19dda7 /doc/doxygen/latex/Makefile | |
| parent | a1bbe4d94da4e9fd19f54bf83de23a6f5dc345df (diff) | |
Release 2.0.1 tarball2.0.1
Diffstat (limited to 'doc/doxygen/latex/Makefile')
| -rw-r--r-- | doc/doxygen/latex/Makefile | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/doc/doxygen/latex/Makefile b/doc/doxygen/latex/Makefile new file mode 100644 index 0000000..f001bff --- /dev/null +++ b/doc/doxygen/latex/Makefile @@ -0,0 +1,33 @@ +all: 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 + pdflatex refman.tex + makeindex refman.idx + pdflatex refman.tex + +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 + +refman.dvi: refman.tex doxygen.sty + echo "Running latex..." + latex refman.tex + echo "Running makeindex..." + makeindex refman.idx + echo "Rerunning latex...." + latex refman.tex +clean: + rm -f *.ps *.dvi *.aux *.toc *.idx *.ind *.ilg *.log *.out |
