Files
sphinx/Makefile
T

62 lines
1.5 KiB
Makefile
Raw Normal View History

2010-05-17 00:44:44 +02:00
PYTHON ?= python3
2007-07-23 09:02:25 +00:00
export PYTHONPATH = $(shell echo "$$PYTHONPATH"):./sphinx
.PHONY: all check clean clean-pyc clean-patchfiles clean-generated pylint \
reindent test
2007-07-23 09:02:25 +00:00
DONT_CHECK = -i build -i dist -i sphinx/style/jquery.js \
-i sphinx/pycode/pgen2 -i sphinx/util/smartypants.py \
-i .ropeproject -i doc/_build -i tests/path.py \
-i tests/coverage.py -i env -i utils/convert.py \
-i utils/reindent3.py -i utils/check_sources3.py -i .tox
all: clean-pyc check test
2007-07-23 09:02:25 +00:00
check: convert-utils
ifeq ($(PYTHON), python3)
@$(PYTHON) utils/check_sources3.py $(DONT_CHECK) .
else
@$(PYTHON) utils/check_sources.py $(DONT_CHECK) .
endif
2007-07-23 09:02:25 +00:00
clean: clean-pyc clean-patchfiles clean-backupfiles clean-generated
2007-07-23 09:02:25 +00:00
clean-pyc:
find . -name '*.pyc' -exec rm -f {} +
find . -name '*.pyo' -exec rm -f {} +
clean-patchfiles:
find . -name '*.orig' -exec rm -f {} +
find . -name '*.rej' -exec rm -f {} +
clean-backupfiles:
find . -name '*~' -exec rm -f {} +
find . -name '*.bak' -exec rm -f {} +
clean-generated:
2010-05-17 01:28:50 +02:00
rm -f utils/*3.py*
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: convert-utils
ifeq ($(PYTHON), python3)
2010-05-17 02:26:31 +02:00
@$(PYTHON) utils/reindent3.py -r -n .
else
2010-05-17 02:26:31 +02:00
@$(PYTHON) utils/reindent.py -r -n .
endif
test: build
@cd tests; $(PYTHON) run.py -d -m '^[tT]est' $(TEST)
covertest: build
@cd tests; $(PYTHON) run.py -d -m '^[tT]est' --with-coverage \
--cover-package=sphinx $(TEST)
build:
@$(PYTHON) setup.py build
convert-utils:
@python3 utils/convert.py -i utils/convert.py utils/