-
Notifications
You must be signed in to change notification settings - Fork 189
/
Makefile
74 lines (56 loc) · 1.71 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
##############################################################################
# General targets
##############################################################################
python = python3
venv = venv
.PHONY: venv
venv: venv-create venv-deps
.PHONY: venv-create
venv-create:
$(python) -m venv --clear $(venv)
.PHONY: venv-deps
venv-deps:
$(venv)/bin/pip install --upgrade pip
$(venv)/bin/pip install --editable .
$(venv)/bin/pip install --requirement requirements-dev.txt
$(venv)/bin/pip install --requirement requirements-docs.txt
.PHONY: test-all
test-all: style lint check test
.PHONY: style
style:
$(venv)/bin/pycodestyle hangups
.PHONY: lint
lint:
$(venv)/bin/pylint --reports=n hangups
.PHONY: check
check:
$(venv)/bin/python setup.py check --metadata --restructuredtext --strict
.PHONY: test
test:
$(venv)/bin/pytest hangups
.PHONY: docs
docs:
. $(venv)/bin/activate && make -C docs html
.PHONY: clean
clean:
rm -rf $(venv) `find . -name __pycache__`
##############################################################################
# Protocol buffer targets
##############################################################################
protoc = protoc
proto = hangups/hangouts.proto
proto_py = hangups/hangouts_pb2.py
proto_doc = docs/proto.rst
test_proto = hangups/test/test_pblite.proto
test_proto_py = hangups/test/test_pblite_pb2.py
.PHONY: protos
protos: $(proto_py) $(test_proto_py) $(proto_doc)
.PHONY: clean-protos
clean-protos:
rm -f $(proto_py) $(proto_doc) $(test_proto_py)
$(proto_py): $(proto)
$(protoc) --python_out . $(proto)
$(test_proto_py): $(test_proto)
$(protoc) --python_out . $(test_proto)
$(proto_doc): $(proto)
$(venv)/bin/python docs/generate_proto_docs.py $(proto) > $(proto_doc)