File: Makefile

package info (click to toggle)
psycopg2 2.5.4%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 3,160 kB
  • ctags: 3,036
  • sloc: ansic: 12,142; python: 9,384; makefile: 292; sh: 32
file content (23 lines) | stat: -rw-r--r-- 342 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
.PHONY: help clean html text doctest

docs: html text

check: doctest

help:
	cd src && $(MAKE) $@

html:
	cd src && $(MAKE) $@
	cp -r src/_build/html .

text:
	cd src && $(MAKE) $@
	cd src && tools/stitch_text.py index.rst _build/text > ../psycopg2.txt

doctest:
	cd src && $(MAKE) $@

clean:
	cd src && $(MAKE) $@
	rm -rf html psycopg2.txt