mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Automatically use converted scripts in the makefile
This commit is contained in:
parent
87d35afcfc
commit
e8d98966de
20
Makefile
20
Makefile
@ -1,16 +1,22 @@
|
|||||||
PYTHON ?= python3
|
PYTHON ?= python
|
||||||
|
|
||||||
export PYTHONPATH = $(shell echo "$$PYTHONPATH"):./sphinx
|
export PYTHONPATH = $(shell echo "$$PYTHONPATH"):./sphinx
|
||||||
|
|
||||||
.PHONY: all check clean clean-pyc clean-patchfiles clean-generated pylint reindent test
|
.PHONY: all check clean clean-pyc clean-patchfiles clean-generated pylint reindent test
|
||||||
|
|
||||||
|
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
|
||||||
|
|
||||||
all: clean-pyc check test
|
all: clean-pyc check test
|
||||||
|
|
||||||
check: convert-utils
|
check: convert-utils
|
||||||
@$(PYTHON) utils/check_sources.py -i build -i dist -i sphinx/style/jquery.js \
|
ifeq ($(PYTHON), python3)
|
||||||
-i sphinx/pycode/pgen2 -i sphinx/util/smartypants.py -i .ropeproject \
|
@$(PYTHON) utils/check_sources3.py $(DONT_CHECK) .
|
||||||
-i doc/_build -i ez_setup.py -i tests/path.py -i tests/coverage.py \
|
else
|
||||||
-i env -i .tox .
|
@$(PYTHON) utils/check_sources.py $(DONT_CHECK) .
|
||||||
|
endif
|
||||||
|
|
||||||
clean: clean-pyc clean-patchfiles clean-backupfiles clean-generated
|
clean: clean-pyc clean-patchfiles clean-backupfiles clean-generated
|
||||||
|
|
||||||
@ -33,7 +39,11 @@ pylint:
|
|||||||
@pylint --rcfile utils/pylintrc sphinx
|
@pylint --rcfile utils/pylintrc sphinx
|
||||||
|
|
||||||
reindent: convert-utils
|
reindent: convert-utils
|
||||||
|
ifeq ($(PYTHON), python3)
|
||||||
|
@$(PYTHON) utils/reindent3.py -r -B .
|
||||||
|
else
|
||||||
@$(PYTHON) utils/reindent.py -r -B .
|
@$(PYTHON) utils/reindent.py -r -B .
|
||||||
|
endif
|
||||||
|
|
||||||
test: build
|
test: build
|
||||||
@cd tests; $(PYTHON) run.py -d -m '^[tT]est' $(TEST)
|
@cd tests; $(PYTHON) run.py -d -m '^[tT]est' $(TEST)
|
||||||
|
Loading…
Reference in New Issue
Block a user