.PHONY: tests clean

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

