mirror of
https://github.com/graphql-python/graphene.git
synced 2024-11-11 12:16:58 +03:00
12 lines
338 B
Makefile
12 lines
338 B
Makefile
|
.PHONY: help
|
||
|
help:
|
||
|
@echo "Please use \`make <target>' where <target> is one of"
|
||
|
@grep -E '^\.PHONY: [a-zA-Z_-]+ .*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = "(: |##)"}; {printf "\033[36m%-30s\033[0m %s\n", $$2, $$3}'
|
||
|
|
||
|
.PHONY: docs ## Generate docs
|
||
|
docs:
|
||
|
@cd docs &&\
|
||
|
pip install -r requirements.txt &&\
|
||
|
make html &&\
|
||
|
cd -
|