aboutsummaryrefslogtreecommitdiffstats
path: root/python/Makefile
blob: 507c788b7f13c870ef1b07453901a7e8ef6105a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
tests:
	cd tests; \
	python -m unittest discover -v

tags:
	ctags -e --python-kinds=-iv --exclude='*.js' -R .


clean:

.PHONY: clean tests