17 lines
239 B
Makefile
17 lines
239 B
Makefile
.PHONY: install 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
|
|
|
|
install:
|
|
stow **/*
|
|
|
|
|
|
|