.PHONY: tests clean

PYTHON=/usr/local/bin/python

tests:
	cd tests ; $(PYTHON) ./test_parser.py
	cd tests ; $(PYTHON) ./test_htmldocument.py
	
clean:
	rm `find . -name '*.pyc'`
	rm `find . -name '*~'`

