1
0
mirror of https://github.com/linkedin/oncall.git synced 2025-12-15 01:26:25 +02:00
Files
oncall/docs/Makefile

25 lines
710 B
Makefile
Raw Normal View History

# Minimal makefile for Sphinx documentation
#
# You can set these variables from the command line.
2017-05-25 19:57:52 -07:00
SPHINXOPTS = -E
SPHINXBUILD = sphinx-build
SPHINXPROJ = Oncall
SOURCEDIR = source
BUILDDIR = build
# Put it first so that "make" without argument is like "make help".
help:
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
.PHONY: help Makefile
# Catch-all target: route all unknown targets to Sphinx using the new
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
%: Makefile
2017-05-25 19:57:52 -07:00
$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
2017-05-20 10:54:52 -07:00
livehtml:
2017-05-25 19:57:52 -07:00
sphinx-autobuild -b html -H 0.0.0.0 --ignore '*~' "$(SOURCEDIR)" "$(BUILDDIR)/html" -E