Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
.PHONY: help

PYTHON=$(shell which python)

help:
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'

install-develop: ## Activate the development install
$(PYTHON) setup.py develop

uninstall-develop: ## De-activate the development install
$(PYTHON) setup.py develop --uninstall

install: ## Install the package
$(PYTHON) setup.py install

check: ## Run all tests (remember to git submodule update --init)
$(PYTHON) setup.py test