blob: e65c55a6d8bf838e0f8f02880f19f298caf5de5d (
plain)
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
|
PYTHON = python
SETUP = $(PYTHON) setup.py
TESTRUNNER = $(shell which nosetests)
TESTFLAGS =
all: build
doc::
make -C doc/ html
build::
$(SETUP) build
$(SETUP) build_ext -i
build_ext::
$(SETUP) build_ext -i
install::
$(SETUP) install
clean::
$(SETUP) clean --all
rm -f *.so
coverage:: build
PYTHONPATH=. $(PYTHON) $(TESTRUNNER) --cover-package=dulwich --with-coverage --cover-erase --cover-inclusive gitdb
|