
# this makefile will build the docs

all:
	sgml2html tutorial.sgml
	sgml2html faq.sgml
    
clean:
	-rm -f *.html

