Added support for postscript output (*.ps).
diff --git a/Doc/Makefile b/Doc/Makefile
index 6691690..ed9f067 100644
--- a/Doc/Makefile
+++ b/Doc/Makefile
@@ -3,6 +3,7 @@
 MS=		-ms
 FUNNYTAB=	$$HOME/lib/funnytab
 PREVIEW=	dpv -f $(FUNNYTAB)
+PSDIT=		psdit
 
 tut:		tut.dit
 		$(PREVIEW) tut.dit
@@ -23,9 +24,17 @@
 $(ALL):		macros.ms
 
 clean:
-		rm -f $(ALL)
+		rm -f *.dit *.ps core @* ,* 
 
-.SUFFIXES:	.ms .dit
+.SUFFIXES:	# Remove default suffixes
+
+.SUFFIXES:	.ms .dit .ps
 
 .ms.dit:
 		$(TBL) $*.ms | $(TROFF) $(MS) >$@
+
+.dit.ps:
+		$(PSDIT) <$*.dit >$@
+
+.ms.ps:
+		$(TBL) $*.ms | $(TROFF) $(MS) | $(PSDIT) >$@