all: tutorial.html tutorial.hs index.html
	echo 'Done.'

%.html: %.lhs
	pandoc --toc -s -c 'css/screen.css' --to=html $< > $@
%.hs: %.lhs
	unlit -c -# $< - | grep -ve '^#' > $@
