File: Makefile

package info (click to toggle)
gi-docgen 2025.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 13,116 kB
  • sloc: python: 8,821; javascript: 658; makefile: 21
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