diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-11-24 09:10:58 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-11-24 09:10:58 +0000 |
commit | f1b304df931b02d3d3e6c0249caae5ebb5a774b3 (patch) | |
tree | fad7145ca90955302ed292e387e3c12a01ed51d6 /bitbake | |
parent | b569f2a414cfe40cb03b68ecff65b7d38e5f9f73 (diff) | |
download | poky-f1b304df931b02d3d3e6c0249caae5ebb5a774b3.tar.gz |
bitbake: Add missing documentation Makefile
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/doc/Makefile | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/bitbake/doc/Makefile b/bitbake/doc/Makefile new file mode 100644 index 0000000000..4d721d30f3 --- /dev/null +++ b/bitbake/doc/Makefile | |||
@@ -0,0 +1,35 @@ | |||
1 | # Minimal makefile for Sphinx documentation | ||
2 | # | ||
3 | |||
4 | # You can set these variables from the command line, and also | ||
5 | # from the environment for the first two. | ||
6 | SPHINXOPTS ?= | ||
7 | SPHINXBUILD ?= sphinx-build | ||
8 | SOURCEDIR = . | ||
9 | BUILDDIR = _build | ||
10 | DESTDIR = final | ||
11 | |||
12 | ifeq ($(shell if which $(SPHINXBUILD) >/dev/null 2>&1; then echo 1; else echo 0; fi),0) | ||
13 | $(error "The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed") | ||
14 | endif | ||
15 | |||
16 | # Put it first so that "make" without argument is like "make help". | ||
17 | help: | ||
18 | @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) | ||
19 | |||
20 | .PHONY: help Makefile clean publish | ||
21 | |||
22 | publish: Makefile html singlehtml | ||
23 | rm -rf $(BUILDDIR)/$(DESTDIR)/ | ||
24 | mkdir -p $(BUILDDIR)/$(DESTDIR)/ | ||
25 | cp -r $(BUILDDIR)/html/* $(BUILDDIR)/$(DESTDIR)/ | ||
26 | cp $(BUILDDIR)/singlehtml/index.html $(BUILDDIR)/$(DESTDIR)/singleindex.html | ||
27 | sed -i -e 's@index.html#@singleindex.html#@g' $(BUILDDIR)/$(DESTDIR)/singleindex.html | ||
28 | |||
29 | clean: | ||
30 | @rm -rf $(BUILDDIR) | ||
31 | |||
32 | # Catch-all target: route all unknown targets to Sphinx using the new | ||
33 | # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). | ||
34 | %: Makefile | ||
35 | @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) | ||