forked from MagicStack/asyncpg
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
46 lines (28 loc) · 904 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
.PHONY: compile debug test quicktest clean all
PYTHON ?= python
ROOT = $(dir $(realpath $(firstword $(MAKEFILE_LIST))))
all: compile
clean:
rm -fr dist/ doc/_build/
rm -fr asyncpg/pgproto/*.c asyncpg/pgproto/*.html
rm -fr asyncpg/pgproto/codecs/*.html
rm -fr asyncpg/pgproto/*.so
rm -fr asyncpg/protocol/*.c asyncpg/protocol/*.html
rm -fr asyncpg/protocol/*.so build *.egg-info
rm -fr asyncpg/protocol/codecs/*.html
find . -name '__pycache__' | xargs rm -rf
compile:
$(PYTHON) setup.py build_ext --inplace --cython-always
debug:
ASYNCPG_DEBUG=1 $(PYTHON) setup.py build_ext --inplace
test:
PYTHONASYNCIODEBUG=1 $(PYTHON) setup.py test
$(PYTHON) setup.py test
USE_UVLOOP=1 $(PYTHON) setup.py test
testinstalled:
cd "$${HOME}" && $(PYTHON) $(ROOT)/tests/__init__.py
quicktest:
$(PYTHON) setup.py test
htmldocs:
$(PYTHON) setup.py build_ext --inplace
$(MAKE) -C docs html