execfile("../PyMakefile.settings")

ALLSOURCE = ["bindings.html", "dbstruct.gif",
	     "installation.html", "instrumentation.html",
	     "logger.html", "mlogger.html", "release-notes.html",
	     "retrieval.html", "structure.html", "view.html".
	     "screen1.gif", "screen2.gif", "screen3.gif",
	     "screen4.gif", "screen5.gif", "screen6.gif",
	     "screen7.gif", "screen8.gif", "screen9.gif",
	     "screen10.gif", "screen11.gif"]

HTMLFILES = ["../LICENSE"] + ALLSOURCE

MFRule("all", [],
	"cp ../LICENSE .")

MFRule("install", [],
	"cp %(HTMLFILES) %(HTMLDIR)")

MFRule("clean", [],
       "/bin/rm -f LICENSE core *~")

MFRule("tar", [],
	["mkdir -p ../%(TARDIR)/html",
	 "cp Makefile %(ALLSOURCE) ../%(TARDIR)/html"])

