all: runtests checkspec

runtests:
	cd tools && python test.py
checkspec:
	cd tools && python examples.py -l http://www.w3.org/2001/sw/DataAccess/proto-wd/

clean: 
	find -iname "*.pyc" -exec rm {} \;
	find -iname "*.swp" -exec rm {} \;
	find -iname "*~" -exec rm {} \;
	

