File: Makefile

package info (click to toggle)
graph-tool 2.45%2Bds-10
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 27,640 kB
  • sloc: cpp: 72,219; python: 26,938; makefile: 802; xml: 101; sh: 29
file content (21 lines) | stat: -rw-r--r-- 327 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
default: html

all: html latex test

check: test-noninteractive test

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

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

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

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

clean:
	rm -rf build