[added tutorial.lhs Makefile Jeremy Shaw **20120516013448 Ignore-this: 903d4208a533bfd58c1b4f76695104fe ] addfile ./docs/Makefile hunk ./docs/Makefile 1 +tutorial.html: tutorial.lhs Makefile + echo ' $@ + echo ' "http://www.w3.org/TR/html4/strict.dtd">' >> $@ + echo 'Formettes Tutorial' >> $@ +# cat $< | sed 's/^] /> /' | HsColour -partial -css -lit | markdown -html4tags >> $@ + cat $< | HsColour -partial -css -lit | markdown -html4tags >> $@ + echo '' >> $@ + validate -w --verbose --emacs $@ + realpath $@ hunk ./docs/Makefile 11 +all: tutorial.html + +clean: + -rm -f tutorial.html + +.PHONY: clean