.PHONY: tests clean

all: docs

tests:
	cd tests 
	./test_parser.py
	./test_htmldocument.py
	
clean:
	find . -name '*~' | xargs rm -f
	find . -name '*pyc' | xargs rm -f

docs:
	happydoc .
