2010-05-09 00:38:16 +02:00
|
|
|
PYTHON ?= python3
|
2007-07-23 09:02:25 +00:00
|
|
|
|
|
|
|
|
export PYTHONPATH = $(shell echo "$$PYTHONPATH"):./sphinx
|
|
|
|
|
|
2008-07-18 22:55:36 +00:00
|
|
|
.PHONY: all check clean clean-pyc clean-patchfiles pylint reindent test
|
2007-07-23 09:02:25 +00:00
|
|
|
|
2008-08-10 16:59:27 +00:00
|
|
|
all: clean-pyc check test
|
2007-07-23 09:02:25 +00:00
|
|
|
|
|
|
|
|
check:
|
2009-10-26 09:52:48 +01:00
|
|
|
@$(PYTHON) utils/check_sources.py -i build -i dist -i sphinx/style/jquery.js \
|
2010-01-02 21:11:23 +01:00
|
|
|
-i sphinx/pycode/pgen2 -i sphinx/util/smartypants.py -i .ropeproject \
|
2010-07-23 12:38:41 +01:00
|
|
|
-i doc/_build -i ez_setup.py -i tests/path.py -i tests/coverage.py \
|
|
|
|
|
-i env -i .tox .
|
2007-07-23 09:02:25 +00:00
|
|
|
|
2010-05-16 14:00:50 +02:00
|
|
|
clean: clean-pyc clean-patchfiles clean-backupfiles
|
2007-07-23 09:02:25 +00:00
|
|
|
|
|
|
|
|
clean-pyc:
|
|
|
|
|
find . -name '*.pyc' -exec rm -f {} +
|
|
|
|
|
find . -name '*.pyo' -exec rm -f {} +
|
|
|
|
|
|
2007-08-15 09:00:54 +00:00
|
|
|
clean-patchfiles:
|
|
|
|
|
find . -name '*.orig' -exec rm -f {} +
|
|
|
|
|
find . -name '*.rej' -exec rm -f {} +
|
|
|
|
|
|
2010-05-16 14:00:50 +02:00
|
|
|
clean-backupfiles:
|
|
|
|
|
find . -name '*~' -exec rm -f {} +
|
|
|
|
|
find . -name '*.bak' -exec rm -f {} +
|
|
|
|
|
|
2007-07-23 09:02:25 +00:00
|
|
|
pylint:
|
2008-03-16 13:12:48 +00:00
|
|
|
@pylint --rcfile utils/pylintrc sphinx
|
2007-07-23 09:02:25 +00:00
|
|
|
|
|
|
|
|
reindent:
|
|
|
|
|
@$(PYTHON) utils/reindent.py -r -B .
|
2008-06-05 08:58:43 +00:00
|
|
|
|
2010-05-16 16:54:15 +02:00
|
|
|
test: build
|
2008-08-04 17:01:15 +00:00
|
|
|
@cd tests; $(PYTHON) run.py -d -m '^[tT]est' $(TEST)
|
2009-02-22 19:00:36 +01:00
|
|
|
|
2010-05-16 16:54:15 +02:00
|
|
|
covertest: build
|
2009-02-22 19:00:36 +01:00
|
|
|
@cd tests; $(PYTHON) run.py -d -m '^[tT]est' --with-coverage --cover-package=sphinx $(TEST)
|
2010-05-16 16:54:15 +02:00
|
|
|
|
|
|
|
|
build:
|
|
|
|
|
@$(PYTHON) setup.py build
|