summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2017-02-25 17:10:57 +0900
committerGitHub <noreply@github.com>2017-02-25 17:10:57 +0900
commitfc9a02af3ca17c66fda8ead6bf6ae22fbe759004 (patch)
treecb95389371ebb7fc3e3bfbd807eb03dcf694936d /Makefile
parent4941148c5d35fc15e6c09799c9a460d761981244 (diff)
parent9718c4d925bdd6772a1d7cf857a0c38bc6e75abe (diff)
downloadsphinx-git-fc9a02af3ca17c66fda8ead6bf6ae22fbe759004.tar.gz
Merge pull request #3416 from tk0miya/refactor_literalinclude
Refactor literalinclude
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile25
1 files changed, 15 insertions, 10 deletions
diff --git a/Makefile b/Makefile
index 7e17253ac..28a33c8a0 100644
--- a/Makefile
+++ b/Makefile
@@ -3,15 +3,12 @@ PYTHON ?= python
.PHONY: all style-check type-check clean clean-pyc clean-patchfiles clean-backupfiles \
clean-generated pylint reindent test covertest build
-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 utils/convert.py \
- -i tests/typing_test_data.py \
- -i tests/test_autodoc_py35.py \
- -i tests/roots/test-warnings/undecodable.rst \
- -i tests/build \
- -i tests/roots/test-warnings/undecodable.rst \
+DONT_CHECK = -i .ropeproject \
+ -i .tox \
+ -i build \
+ -i dist \
+ -i doc/_build \
+ -i sphinx/pycode/pgen2 \
-i sphinx/search/da.py \
-i sphinx/search/de.py \
-i sphinx/search/en.py \
@@ -28,7 +25,15 @@ DONT_CHECK = -i build -i dist -i sphinx/style/jquery.js \
-i sphinx/search/ru.py \
-i sphinx/search/sv.py \
-i sphinx/search/tr.py \
- -i .tox
+ -i sphinx/style/jquery.js \
+ -i sphinx/util/smartypants.py \
+ -i tests/build \
+ -i tests/path.py \
+ -i tests/roots/test-directive-code/target.py \
+ -i tests/roots/test-warnings/undecodable.rst \
+ -i tests/test_autodoc_py35.py \
+ -i tests/typing_test_data.py \
+ -i utils/convert.py
all: clean-pyc clean-backupfiles style-check type-check test