mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Keep under 80 chars per line in the Makefile
This commit is contained in:
parent
e8d98966de
commit
46e5c123d5
15
Makefile
15
Makefile
@ -2,12 +2,14 @@ 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 \
|
DONT_CHECK = -i build -i dist -i sphinx/style/jquery.js \
|
||||||
-i sphinx/util/smartypants.py -i .ropeproject -i doc/_build -i tests/path.py \
|
-i sphinx/pycode/pgen2 -i sphinx/util/smartypants.py \
|
||||||
-i tests/coverage.py -i env -i utils/convert.py -i utils/reindent3.py \
|
-i .ropeproject -i doc/_build -i tests/path.py \
|
||||||
-i utils/check_sources3.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
|
all: clean-pyc check test
|
||||||
|
|
||||||
@ -49,7 +51,8 @@ test: build
|
|||||||
@cd tests; $(PYTHON) run.py -d -m '^[tT]est' $(TEST)
|
@cd tests; $(PYTHON) run.py -d -m '^[tT]est' $(TEST)
|
||||||
|
|
||||||
covertest: build
|
covertest: build
|
||||||
@cd tests; $(PYTHON) run.py -d -m '^[tT]est' --with-coverage --cover-package=sphinx $(TEST)
|
@cd tests; $(PYTHON) run.py -d -m '^[tT]est' --with-coverage \
|
||||||
|
--cover-package=sphinx $(TEST)
|
||||||
|
|
||||||
build:
|
build:
|
||||||
@$(PYTHON) setup.py build
|
@$(PYTHON) setup.py build
|
||||||
|
Loading…
Reference in New Issue
Block a user