Revision 788e8109674a9bbe640390ad6ebd31ec0762737c authored by Sasha Sheng on 06 March 2021, 10:00:52 UTC, committed by Facebook GitHub Bot on 06 March 2021, 10:02:46 UTC
Summary: Pull Request resolved: https://github.com/facebookresearch/mmf/pull/797

Reviewed By: vedanuj

Differential Revision: D26840004

Pulled By: ytsheng

fbshipit-source-id: 15ff847a5a0b13537d24fdddcb5e5d33166e6eb7
1 parent 853ac08
Raw File
Makefile
# Minimal makefile for Sphinx documentation
#

# You can set these variables from the command line.
SPHINXOPTS    =
SPHINXBUILD   = sphinx-build
SPHINXPROJ    = mmf
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
	@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
back to top