aboutsummaryrefslogtreecommitdiff
path: root/python/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'python/Makefile')
-rw-r--r--python/Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/python/Makefile b/python/Makefile
index cdf3aac..646f330 100644
--- a/python/Makefile
+++ b/python/Makefile
@@ -4,10 +4,12 @@
# See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
-# Default
+# Default (Build)
.PHONY: all
# Build
.PHONY: build
+# Install
+.PHONY: install
# Test
.PHONY: test tests
# Clean
@@ -31,6 +33,9 @@ build: $(EXTENSIONS)
$(EXTENSIONS): $(EXT_SOURCES)
@cd .. && $(PYTHON) setup.py develop
+install:
+ @cd .. && $(PYTHON) setup.py install
+
test: tests
tests: build