Forked from
Eclipse Projects / Oniro Core / docs
45 commits behind, 1 commit ahead of the upstream repository.
-
Andrei Gherzan authored
Signed-off-by:
Andrei Gherzan <andrei.gherzan@huawei.com> Signed-off-by:
shettygururaj <gururaj.shetty@huawei.com>
Andrei Gherzan authoredSigned-off-by:
Andrei Gherzan <andrei.gherzan@huawei.com> Signed-off-by:
shettygururaj <gururaj.shetty@huawei.com>
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
Makefile 338 B
# SPDX-FileCopyrightText: Huawei Inc.
#
# SPDX-License-Identifier: Apache-2.0
BUILD_DIR ?= build
.PHONY: all
all: $(BUILD_DIR)
.PHONY: clean
clean:
rm -rf build
SRC_DIR ?= .
$(BUILD_DIR): $(filter-out README.rst contributing/project.rst experimental/%,$(shell find $(SRC_DIR) -name '*.rst'))
sphinx-build -W $(SRC_DIR) $(BUILD_DIR)