.PHONY: test
test:
	rm -rf pdf tex
	./run_tests.sh
	rm -f *.aux *.log

.PHONY: clean
clean:
	rm -rf pdf tex .coverage
