From 6dc8cdafc8d869aed429ad825383b38cf5ee206a Mon Sep 17 00:00:00 2001 From: Andrei Gherzan <andrei.gherzan@huawei.com> Date: Thu, 25 Mar 2021 15:39:05 +0000 Subject: [PATCH] Makefile: Build docs with make Signed-off-by: Andrei Gherzan <andrei.gherzan@huawei.com> --- Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..ec6ef54 --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +# SPDX-License-Identifier: Apache-2.0 +# SPDX-FileCopyrightText: Huawei Inc. + +.PHONY: all +all: build + +.PHONY: clean +clean: + rm -rf build + +build: + sphinx-build -W . build -- GitLab