~ubuntu-branches/debian/experimental/pygments/experimental

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Piotr Ożarowski
  • Date: 2010-01-03 00:50:59 UTC
  • mfrom: (1.2.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20100103005059-ok4caxbr740rb8ok
Tags: 1.2.2+dfsg-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
#
5
5
# Combines scripts for common tasks.
6
6
#
7
 
# :copyright: Copyright 2006-2009 by the Pygments team, see AUTHORS.
 
7
# :copyright: Copyright 2006-2010 by the Pygments team, see AUTHORS.
8
8
# :license: BSD, see LICENSE for details.
9
9
#
10
10
 
19
19
 
20
20
check:
21
21
        @$(PYTHON) scripts/detect_missing_analyse_text.py || true
22
 
        @$(PYTHON) scripts/check_sources.py -i pygments/lexers/_mapping.py \
 
22
        @$(PYTHON) scripts/check_sources.py -i build -i dist -i pygments/lexers/_mapping.py \
23
23
                   -i docs/build -i pygments/formatters/_mapping.py -i pygments/unistring.py \
24
24
                   -i pygments/lexers/_vimbuiltins.py
25
25
 
26
26
clean: clean-pyc
27
 
        rm -r build
28
 
        rm -f codetags.html
 
27
        -rm -rf build
 
28
        -rm -f codetags.html
29
29
 
30
30
clean-pyc:
31
31
        find . -name '*.pyc' -exec rm -f {} +