diff --git a/docs/Makefile b/docs/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..84fac27d1d81c3114f18ac7e0946388ddb28e63d --- /dev/null +++ b/docs/Makefile @@ -0,0 +1,14 @@ +# SPDX-FileCopyrightText: Huawei Inc. +# +# SPDX-License-Identifier: Apache-2.0 + +.PHONY: all +all: + sphinx-build -W -C \ + -D html_theme=sphinx_rtd_theme \ + -D project='OpenHarmony Build System and meta-ohos' \ + -D copyright='Huawei Inc' \ + . build + +clean: + rm -rf ./build diff --git a/docs/README.md b/docs/README.md index 76c5e1ddd83e18a324f5ab7012445f9395aed647..71b7861b891044a728b8ca37f81fad06bd349247 100644 --- a/docs/README.md +++ b/docs/README.md @@ -6,12 +6,16 @@ SPDX-License-Identifier: CC-BY-4.0 # Documentation for meta-ohos -The documentation for `meta-ohos` is written as reST files and can be generated with `sphinx-build` tool: +The documentation for `meta-ohos` is written as reST files and can be generated +by using standard make targets: ``` -sphinx-build -C -D html_theme=sphinx_rtd_theme -D project='OpenHarmony Build System and meta-ohos' -D copyright='Huawei Inc' . build +make +make clean ``` +Building the documentation requires `sphinx-build` to be available on the host. + # License All the documentation is licensed as `CC-BY-4.0`.