esphome-docs/Makefile

44 lines
1.2 KiB
Makefile
Raw Normal View History

2018-05-13 11:37:02 +02:00
# Minimal makefile for Sphinx documentation
#
# You can set these variables from the command line.
SPHINXOPTS =
SPHINXBUILD = sphinx-build
SPHINXPROJ = esphomelib
SOURCEDIR = .
BUILDDIR = _build
ESPHOMELIB_PATH = ../esphomelib
2018-06-13 22:38:49 +02:00
.PHONY: html cleanhtml doxyg cleandoxyg deploy help webserver Makefile
2018-06-07 19:29:35 +02:00
html: _doxyxml
2018-05-13 11:37:02 +02:00
$(SPHINXBUILD) -M html "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
2018-06-09 09:58:58 +02:00
cleanhtml: cleandoxyg
2018-06-07 19:29:35 +02:00
rm -rf "$(BUILDDIR)/html/*"
2018-05-13 11:37:02 +02:00
2018-06-07 19:29:35 +02:00
doxyg: cleandoxyg _doxyxml
cleandoxyg:
rm -rf _doxyxml
_doxyxml:
2018-05-14 21:15:49 +02:00
ESPHOMELIB_PATH=$(ESPHOMELIB_PATH) doxygen Doxygen
2018-06-13 22:38:49 +02:00
deploy: cleanhtml doxyg html
2018-05-13 11:37:02 +02:00
touch "$(BUILDDIR)/html/.nojekyll"
echo "esphomelib.com" >"$(BUILDDIR)/html/CNAME"
cd "$(BUILDDIR)/html" && git add --all && git commit -m "Deploy to gh-pages"
@printf "Run \033[0;36mcd $(BUILDDIR)/html && git push origin gh-pages\033[0m to deploy\n"
help:
$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
webserver: html
cd "$(BUILDDIR)/html" && python3 -m http.server
# Catch-all target: route all unknown targets to Sphinx using the new
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
%: Makefile
$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)