-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathMakefile
More file actions
44 lines (32 loc) · 902 Bytes
/
Copy pathMakefile
File metadata and controls
44 lines (32 loc) · 902 Bytes
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
PYTHON = python3
RUFF ?= ruff
PYDOCTOR = pydoctor
PYDOCTOR_OPTIONS ?=
SETUP = $(PYTHON) setup.py
TESTRUNNER = unittest
DEBUGGER ?=
RUNTEST = PYTHONPATH=.:$(PYTHONPATH) $(DEBUGGER) $(PYTHON) -m $(TESTRUNNER) -v
all: build build-inplace
build::
$(SETUP) build
build-nodeprecated:
$(MAKE) build CFLAGS+=-Wno-deprecated-declarations
build-inplace::
$(SETUP) build_ext --inplace
install::
$(SETUP) install
check:: build-inplace
$(RUNTEST) $(TEST_OPTIONS) tests.test_suite
gdb-check::
$(MAKE) check DEBUGGER="gdb --args"
valgrind-check:
PYTHONMALLOC=malloc $(MAKE) check PYTHON=python DEBUGGER="valgrind --suppressions=/usr/lib/valgrind/python3.supp"
check-one::
$(MAKE) check TEST_OPTIONS=-f
clean::
$(SETUP) clean
rm -f subvertpy/*.so subvertpy/*.o subvertpy/*.pyc
pydoctor:
$(PYDOCTOR) $(PYDOCTOR_OPTIONS) --introspect-c-modules -c subvertpy.cfg --make-html
style:
$(RUFF) check .