1# SPDX-FileCopyrightText: 2021 GNOME Foundation
2#
3# SPDX-License-Identifier: Apache-2.0 OR GPL-3.0-or-later
4
5all: _build
6
7_build: Makefile *.rst */*.rst conf.py
8	python3 -m sphinx  -b html . _build
9
10linkcheck:
11	python3 -m sphinx  -b linkcheck -n . _build
12
13clean:
14	rm -Rf _build
15