16 lines
249 B
Makefile
16 lines
249 B
Makefile
.PHONY: run update docs help
|
|
|
|
help:
|
|
@python -c "$$PRINT_HELP_PYSCRIPT" < $(MAKEFILE_LIST)
|
|
|
|
update:
|
|
git pull origin master
|
|
|
|
docs: ## generate Sphinx HTML documentation, including API docs
|
|
./docs/install.sh
|
|
|
|
run:
|
|
python3 test/run_examples.py
|
|
|
|
|