aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Thomas Kleymann <da+pg-tms@inf.ed.ac.uk>1998-11-10 18:15:12 +0000
committerGravatar Thomas Kleymann <da+pg-tms@inf.ed.ac.uk>1998-11-10 18:15:12 +0000
commit0641ee042f4f2f0a935877e6be51b3a6fc3135a5 (patch)
treeaf68bf7983ddad98cb18dbc6d20dfa99da0055ae
parent68afa5fb480aa9f9c4927ed3541eadf447dd2eec (diff)
added entry to convert dvi into ps.
-rw-r--r--doc/Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/doc/Makefile b/doc/Makefile
index e1e11be4..9a2f0cbb 100644
--- a/doc/Makefile
+++ b/doc/Makefile
@@ -19,10 +19,11 @@ DOCNAME = ProofGeneral
MAKEINFO = makeinfo
TEXI2DVI = texi2dvi
+DVI2PS = dvips
TEXI2PDF = texi2pdf
TEXI2HTML = texi2html
-.SUFFIXES: .texi .info .dvi .html .pdf
+.SUFFIXES: .texi .info .dvi .html .pdf .ps
.texi.info:
$(MAKEINFO) $<
@@ -30,9 +31,13 @@ TEXI2HTML = texi2html
.texi.dvi:
$(TEXI2DVI) $<
+
.texi.pdf:
$(TEXI2PDF) $<
+.dvi.ps:
+ $(DVI2PS) $<
+
.texi.html:
$(TEXI2HTML) $<