mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
svn+ssh://pythondev@svn.python.org/doctools/branches/0.4.x ........ r65138 | georg.brandl | 2008-07-19 15:42:35 +0200 (Sat, 19 Jul 2008) | 2 lines #3416: fix missing parameter. ........ r65145 | georg.brandl | 2008-07-19 20:01:25 +0200 (Sat, 19 Jul 2008) | 2 lines Now that we don't ship Jinja anymore by default the comment can go. ........ r65146 | georg.brandl | 2008-07-19 20:01:51 +0200 (Sat, 19 Jul 2008) | 2 lines Reread documents with globbed toctrees when files are removed/added. ........ r65268 | georg.brandl | 2008-07-29 10:21:33 +0200 (Tue, 29 Jul 2008) | 2 lines Fix by Markus Gritsch to place correct links to headings. ........ r65269 | georg.brandl | 2008-07-29 10:21:59 +0200 (Tue, 29 Jul 2008) | 2 lines Make the writer's settings public. ........ r65270 | georg.brandl | 2008-07-29 10:22:28 +0200 (Tue, 29 Jul 2008) | 2 lines Export test_root. ........ r65271 | georg.brandl | 2008-07-29 10:22:47 +0200 (Tue, 29 Jul 2008) | 2 lines Add a markup test. ........ r65272 | georg.brandl | 2008-07-29 10:27:19 +0200 (Tue, 29 Jul 2008) | 2 lines Bump version number. ........ r65273 | georg.brandl | 2008-07-29 11:05:37 +0200 (Tue, 29 Jul 2008) | 2 lines Correct rendering of ``samp``. ........
31 lines
643 B
Makefile
31 lines
643 B
Makefile
PYTHON ?= python
|
|
|
|
export PYTHONPATH = $(shell echo "$$PYTHONPATH"):./sphinx
|
|
|
|
.PHONY: all check clean clean-pyc clean-patchfiles pylint reindent test
|
|
|
|
all: clean-pyc check
|
|
|
|
check:
|
|
@$(PYTHON) utils/check_sources.py -i sphinx/style/jquery.js sphinx
|
|
|
|
clean: clean-pyc clean-patchfiles
|
|
|
|
clean-pyc:
|
|
find . -name '*.pyc' -exec rm -f {} +
|
|
find . -name '*.pyo' -exec rm -f {} +
|
|
find . -name '*~' -exec rm -f {} +
|
|
|
|
clean-patchfiles:
|
|
find . -name '*.orig' -exec rm -f {} +
|
|
find . -name '*.rej' -exec rm -f {} +
|
|
|
|
pylint:
|
|
@pylint --rcfile utils/pylintrc sphinx
|
|
|
|
reindent:
|
|
@$(PYTHON) utils/reindent.py -r -B .
|
|
|
|
test:
|
|
@cd tests; $(PYTHON) run.py -d
|