summaryrefslogtreecommitdiff
path: root/doc/latex/Makefile
diff options
context:
space:
mode:
authorGary Scavone <gary@music.mcgill.ca>2013-10-10 23:52:38 +0200
committerStephen Sinclair <sinclair@music.mcgill.ca>2013-10-10 23:52:38 +0200
commitcdfd5a2d8e8781f1925e90953a330ad38e63222f (patch)
tree78985510025fc967d6a2974819576458a3990bed /doc/latex/Makefile
parent72ee1e6be2d918af467fef76932231be731795e9 (diff)
Release 2.0 tarball2.0
Diffstat (limited to 'doc/latex/Makefile')
-rw-r--r--doc/latex/Makefile31
1 files changed, 31 insertions, 0 deletions
diff --git a/doc/latex/Makefile b/doc/latex/Makefile
new file mode 100644
index 0000000..f0e40cb
--- /dev/null
+++ b/doc/latex/Makefile
@@ -0,0 +1,31 @@
+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
+ ps2pdf refman.ps refman.pdf
+
+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