#
#   Makefile for the LPU documentation
#
#       jrs     08.02.1998
#

SGMLOPT = --language=en --charset=latin

all:	lpudoc.txt lpudoc.html lpudoc.ps

lpudoc.txt:	lpudoc.sgml
	sgml2txt $(SGMLOPT) lpudoc.sgml

lpudoc.html:	lpudoc.sgml
	sgml2html $(SGMLOPT) lpudoc.sgml

lpudoc.ps:	lpudoc.sgml
	sgml2latex $(SGMLOPT) --output=ps lpudoc.sgml

clean:
	rm lpudoc.txt *.html *.ps

#
