diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2023-09-03 10:54:42 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-09-03 10:31:11 +0100 |
commit | e25914a99ee64fb91254de62487e7406b98a1a94 (patch) | |
tree | f5f13381dad20138862751883291f6f5a258fbae | |
parent | f94083ce08a6fe48812abb00d27c35024fe9d87c (diff) | |
download | poky-e25914a99ee64fb91254de62487e7406b98a1a94.tar.gz |
Makefile: remove from top-level directory
* https://git.openembedded.org/bitbake/commit/?id=a7c47f1eac8caac607a2b5f12d07235dff4d740f
was somehow badly imported as:
just a rename from bitbake/doc/Makefile.sphinx to Makefile:
https://git.yoctoproject.org/poky/commit/?id=1fd9c4b2c0ae927df29f7a0d34c3e595bcf48e89
The missing bitbake/doc/Makefile was later restored in:
https://git.yoctoproject.org/poky/commit/?id=415962ad94149de121a1c01215073a52bb54dc14
but the doc/README change is still missing in poky
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | Makefile | 35 | ||||
-rw-r--r-- | bitbake/doc/README | 4 |
2 files changed, 2 insertions, 37 deletions
diff --git a/Makefile b/Makefile deleted file mode 100644 index c9518558bb..0000000000 --- a/Makefile +++ /dev/null | |||
@@ -1,35 +0,0 @@ | |||
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.sphinx clean publish | ||
21 | |||
22 | publish: Makefile.sphinx 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.sphinx | ||
35 | @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) | ||
diff --git a/bitbake/doc/README b/bitbake/doc/README index cdbb23776e..d4f56afa37 100644 --- a/bitbake/doc/README +++ b/bitbake/doc/README | |||
@@ -47,8 +47,8 @@ To install all required packages run: | |||
47 | 47 | ||
48 | To build the documentation locally, run: | 48 | To build the documentation locally, run: |
49 | 49 | ||
50 | $ cd documentation | 50 | $ cd doc |
51 | $ make -f Makefile.sphinx html | 51 | $ make html |
52 | 52 | ||
53 | The resulting HTML index page will be _build/html/index.html, and you | 53 | The resulting HTML index page will be _build/html/index.html, and you |
54 | can browse your own copy of the locally generated documentation with | 54 | can browse your own copy of the locally generated documentation with |