File: Makefile

package info (click to toggle)
gi-docgen 2023.1%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 12,992 kB
  • sloc: python: 7,897; javascript: 592; makefile: 25
file content (14 lines) | stat: -rw-r--r-- 278 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# SPDX-FileCopyrightText: 2021 GNOME Foundation
#
# SPDX-License-Identifier: Apache-2.0 OR GPL-3.0-or-later

all: _build

_build: Makefile *.rst */*.rst conf.py
	python3 -m sphinx  -b html . _build

linkcheck:
	python3 -m sphinx  -b linkcheck -n . _build

clean:
	rm -Rf _build