add small isl changes
[linpy.git] / Makefile
1 PYTHON=python3
2 RM=rm -rf
3
4 .PHONY: default
5 default:
6 @echo "pypol - A polyhedral library based on ISL"
7 @echo
8 @echo "Makefile usage:"
9 @echo " make test run the test suite"
10 @echo " make clean remove the generated files"
11
12 .PHONY: test
13 test:
14 $(PYTHON) -m unittest
15
16 .PHONY: clean
17 clean:
18 $(RM) build dist MANIFEST pypol/__pycache__ tests/__pycache__