aboutsummaryrefslogtreecommitdiffstats
path: root/selftest/Makefile
blob: 53d882c1593fbbcc8fdc12b60c854035b81c69e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
.PHONY: check update

check: set_pythonpath
	./all_tests.py

update:
	./all_tests.py -u

set_pythonpath:
	echo "export PYTHONPATH=\"$(PWD)/../src\"" > set_pythonpath

clean:
	@find . -name "*__pycache__" -type d -print0 | xargs -0 rm -rvf
	@find . -name "*test_work" -type d -print0 | xargs -0 rm -rvf
	@rm -rfv ./trial_test/run_label/inst
	@rm -fv ./set_pythonpath

# vim: noexpandtab tabstop=8 shiftwidth=8