blob: 6ed9cad16df86c9c7ee3fec91fd723420fe73ded (
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
28
29
30
|
PYTHON ?= python
export PYTHONPATH = $(shell echo "$$PYTHONPATH"):./sphinx
.PHONY: all check clean clean-pyc pylint reindent testserver
all: clean-pyc check
check:
@$(PYTHON) utils/check_sources.py -i sphinx/style/jquery.js sphinx
clean: clean-pyc clean-patchfiles
clean-pyc:
find . -name '*.pyc' -exec rm -f {} +
find . -name '*.pyo' -exec rm -f {} +
find . -name '*~' -exec rm -f {} +
clean-patchfiles:
find . -name '*.orig' -exec rm -f {} +
find . -name '*.rej' -exec rm -f {} +
pylint:
@pylint --rcfile utils/pylintrc sphinx
reindent:
@$(PYTHON) utils/reindent.py -r -B .
test:
@cd tests; $(PYTHON) run.py
|