mirror of https://github.com/coqui-ai/TTS.git
Add `docs` to Makefile
parent
cbbc9e0172
commit
bb69e714d0
5
Makefile
5
Makefile
|
@ -1,5 +1,5 @@
|
|||
.DEFAULT_GOAL := help
|
||||
.PHONY: test system-deps dev-deps deps style lint install help
|
||||
.PHONY: test system-deps dev-deps deps style lint install help docs
|
||||
|
||||
help:
|
||||
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
|
||||
|
@ -45,3 +45,6 @@ deps: ## install 🐸 requirements.
|
|||
|
||||
install: ## install 🐸 TTS for development.
|
||||
pip install -e .[all]
|
||||
|
||||
docs: ## build the docs
|
||||
$(MAKE) -C docs clean && $(MAKE) -C docs html
|
||||
|
|
Loading…
Reference in New Issue