60 lines
1.5 KiB
Makefile
60 lines
1.5 KiB
Makefile
#
|
|
# Makefile for Pygments
|
|
# ~~~~~~~~~~~~~~~~~~~~~
|
|
#
|
|
# Combines scripts for common tasks.
|
|
#
|
|
# :copyright: Copyright 2006-2012 by the Pygments team, see AUTHORS.
|
|
# :license: BSD, see LICENSE for details.
|
|
#
|
|
|
|
PYTHON ?= python
|
|
|
|
export PYTHONPATH = $(shell echo "$$PYTHONPATH"):$(shell python -c 'import os; print ":".join(os.path.abspath(line.strip()) for line in file("PYTHONPATH"))' 2>/dev/null)
|
|
|
|
.PHONY: all check clean clean-pyc codetags docs mapfiles \
|
|
pylint reindent test test-coverage
|
|
|
|
all: clean-pyc check test
|
|
|
|
check:
|
|
@$(PYTHON) scripts/detect_missing_analyse_text.py || true
|
|
@$(PYTHON) scripts/check_sources.py -i build -i dist -i pygments/lexers/_mapping.py \
|
|
-i docs/build -i pygments/formatters/_mapping.py -i pygments/unistring.py \
|
|
-i pygments/lexers/_vimbuiltins.py
|
|
|
|
clean: clean-pyc
|
|
-rm -rf build
|
|
-rm -f codetags.html
|
|
|
|
clean-pyc:
|
|
find . -name '*.pyc' -exec rm -f {} +
|
|
find . -name '*.pyo' -exec rm -f {} +
|
|
find . -name '*~' -exec rm -f {} +
|
|
|
|
codetags:
|
|
@$(PYTHON) scripts/find_codetags.py -i tests/examplefiles -i scripts/pylintrc \
|
|
-i scripts/find_codetags.py -o codetags.html .
|
|
|
|
docs: docs/build
|
|
|
|
docs/build: docs/src/*.txt
|
|
$(PYTHON) docs/generate.py html docs/build $?
|
|
touch docs/build
|
|
|
|
mapfiles:
|
|
(cd pygments/lexers; $(PYTHON) _mapping.py)
|
|
(cd pygments/formatters; $(PYTHON) _mapping.py)
|
|
|
|
pylint:
|
|
@pylint --rcfile scripts/pylintrc pygments
|
|
|
|
reindent:
|
|
@$(PYTHON) scripts/reindent.py -r -B .
|
|
|
|
test:
|
|
@$(PYTHON) tests/run.py $(TESTS)
|
|
|
|
test-coverage:
|
|
@$(PYTHON) tests/run.py -C $(TESTS)
|