File: Makefile

package info (click to toggle)
graph-tool 2.91%2Bds-5
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 28,920 kB
  • sloc: cpp: 85,847; python: 30,777; makefile: 909; xml: 101; sh: 42
file content (24 lines) | stat: -rw-r--r-- 395 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
default: html

all: html latex test

check: test-noninteractive test

html:
	sphinx-build -j auto -E -b html . build/html

update:
	sphinx-build -j auto -b html . build/html

latex:
	sphinx-build -E -b latex . build/pdf

test:
	sphinx-build -j auto -b doctest . build/test

test-noninteractive:
	sphinx-build -b doctest . build/test-ni *.rst demos/inference/inference.rst

clean:
	rm -rf build