summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2020-05-29 13:42:26 +0200
committerStefan Behnel <stefan_ml@behnel.de>2020-05-29 14:50:03 +0200
commit0cf1419bfb1a63828c0d40d7aac23a35253e85c9 (patch)
tree76dbea576a0ffcc753ccfe604c341acba43dd466
parentfd8f08b1c33fba224297493365da4e793dbff84d (diff)
downloadcython-0cf1419bfb1a63828c0d40d7aac23a35253e85c9.tar.gz
Add makefile target to build Cython for profiling.
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 1f4771055..23e181ffe 100644
--- a/Makefile
+++ b/Makefile
@@ -12,6 +12,9 @@ all: local
local:
${PYTHON} setup.py build_ext --inplace
+plocal:
+ ${PYTHON} setup.py build_ext --inplace --cython-profile
+
sdist: dist/$(PACKAGENAME)-$(VERSION).tar.gz
dist/$(PACKAGENAME)-$(VERSION).tar.gz: