#
# This Makefile is to generate ASCII text, HTML, and PostScript versions
# of the SGML source of the TkDesk User's Guide.  You will need the 
# LinuxDoc-SGML tools to run this yourself (linuxdoc*.rpm, or something
# similar).
#

all: guide.txt guide.html guide.ps

guide.txt: guide.sgml
	sgml2txt -f guide.sgml

guide.html: guide.sgml
	sgml2html guide.sgml

guide.ps: guide.sgml
	sgml2latex -p -a guide.sgml

