Files
sphinx/Makefile
T

33 lines
772 B
Makefile
Raw Normal View History

2007-07-23 09:02:25 +00:00
PYTHON ?= python
export PYTHONPATH = $(shell echo "$$PYTHONPATH"):./sphinx
.PHONY: all check clean clean-pyc clean-patchfiles pylint reindent test
2007-07-23 09:02:25 +00:00
all: clean-pyc check test
2007-07-23 09:02:25 +00:00
check:
@$(PYTHON) utils/check_sources.py -i sphinx/style/jquery.js \
-i sphinx/pycode/pgen2 -i sphinx/util/smartypants.py \
-i doc/_build -i ez_setup.py -i tests/path.py .
2007-07-23 09:02:25 +00:00
clean: clean-pyc clean-patchfiles
2007-07-23 09:02:25 +00:00
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 {} +
2007-07-23 09:02:25 +00:00
pylint:
2008-03-16 13:12:48 +00:00
@pylint --rcfile utils/pylintrc sphinx
2007-07-23 09:02:25 +00:00
reindent:
@$(PYTHON) utils/reindent.py -r -B .
test:
@cd tests; $(PYTHON) run.py -d -m '^[tT]est' $(TEST)