aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile22
1 files changed, 17 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index a625f5c..d22a859 100644
--- a/Makefile
+++ b/Makefile
@@ -1,11 +1,20 @@
-.PHONY: rtest build test clean
+.PHONY: rtest build test clean all
+PYTHON ?= python
+ROOT = $(dir $(realpath $(firstword $(MAKEFILE_LIST))))
+
+
+all: build
+
build:
- python setup.py build_ext --inplace
+ $(PYTHON) setup.py build_ext --inplace
+
+debug:
+ DEBUG_IMMUTABLES=1 $(PYTHON) setup.py build_ext --inplace
test:
- python setup.py test -v
+ $(PYTHON) setup.py test -v
rtest:
~/dev/venvs/36-debug/bin/python setup.py build_ext --inplace
@@ -14,8 +23,11 @@ rtest:
~/dev/venvs/36-debug/bin/python -m test.regrtest -R3:3 --testdir tests/
clean:
- find . -name '*.pyc' | xargs rm
- find . -name '*.so' | xargs rm
+ find . -name '*.pyc' | xargs rm -f
+ find . -name '*.so' | xargs rm -f
rm -rf ./build
rm -rf ./dist
rm -rf ./*.egg-info
+
+testinstalled:
+ cd /tmp && $(PYTHON) $(ROOT)/tests/__init__.py