Index: translator/Docs/Makefile
===================================================================
--- translator/Docs/Makefile	(revision 51b734528489f81a5af985bfee9aa3b6625b9774)
+++ translator/Docs/Makefile	(revision 51b734528489f81a5af985bfee9aa3b6625b9774)
@@ -0,0 +1,38 @@
+DIA = dia --nosplash
+TEX = latex
+DVIPS = dvips
+DVIPSFLAGS = -t landscape
+JUNK = .aux .log .dvi 
+
+# DocBook macros
+# JADE=openjade 
+# STYLEDIR=$(SGML_SHARE)/dsssl/docbook
+# STYLE=print/docbook.dsl
+# TARGET = tex
+
+DIAGRAMS = uml.dia
+DIAGRAMSOUT = $(DIAGRAMS:.dia=.eps)
+
+# SOURCES = intro.sgml mngmt.sgml pcap.sgml biblo.sgml conc.sgml
+
+.SUFFIXES : .dia .eps
+.dia.eps:
+	$(DIA) $< --export=$@
+
+%.dvi: %.tex
+	$(TEX) $<
+
+%.ps: %.dvi
+	$(DVIPS) $(DVIPSFLAGS) $< -o $@
+
+design.ps:
+
+# project.dvi: project.$(TARGET)
+# 	jadetex $<
+
+# project.$(TARGET):project.sgml $(DIAGRAMSOUT) $(SOURCES)
+# 	$(JADE) -t $(TARGET) -d $(STYLEDIR)/$(STYLE) project.sgml
+
+clean: 
+	rm -f *.dvi *.tex *.ps *~ *.aux *.log
+
