mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
49 lines
1.2 KiB
Makefile
49 lines
1.2 KiB
Makefile
PYTHON ?= python3
|
|
|
|
export PYTHONPATH = $(shell echo "$$PYTHONPATH"):./sphinx
|
|
|
|
.PHONY: all check clean clean-pyc clean-patchfiles clean-generated pylint reindent test
|
|
|
|
all: clean-pyc check test
|
|
|
|
check: convert-utils
|
|
@$(PYTHON) utils/check_sources.py -i build -i dist -i sphinx/style/jquery.js \
|
|
-i sphinx/pycode/pgen2 -i sphinx/util/smartypants.py -i .ropeproject \
|
|
-i doc/_build -i ez_setup.py -i tests/path.py -i tests/coverage.py \
|
|
-i env -i .tox .
|
|
|
|
clean: clean-pyc clean-patchfiles clean-backupfiles clean-generated
|
|
|
|
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:
|
|
-rm utils/*3.py*
|
|
|
|
pylint:
|
|
@pylint --rcfile utils/pylintrc sphinx
|
|
|
|
reindent: convert-utils
|
|
@$(PYTHON) utils/reindent.py -r -B .
|
|
|
|
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/
|