~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Aaron Bentley
  • Date: 2008-12-12 00:37:26 UTC
  • mto: This revision was merged to the branch mainline in revision 3898.
  • Revision ID: aaron@aaronbentley.com-20081212003726-331kkjc5050ofbag
Add check-nodocs target

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
PYTHON=python
24
24
PYTHON_BUILDFLAGS=
25
25
 
26
 
.PHONY: all clean extensions pyflakes api-docs
 
26
.PHONY: all clean extensions pyflakes api-docs check-nodocs check
27
27
 
28
28
all: extensions
29
29
 
31
31
        @echo "building extension modules."
32
32
        $(PYTHON) setup.py build_ext -i $(PYTHON_BUILDFLAGS)
33
33
 
34
 
check: docs extensions
 
34
check: docs check-nodocs
 
35
 
 
36
check-nodocs: extensions
35
37
        $(PYTHON) -Werror -O ./bzr selftest -1v $(tests)
36
38
        @echo "Running all tests with no locale."
37
39
        LC_CTYPE= LANG=C LC_ALL= ./bzr selftest -1v $(tests) 2>&1 | sed -e 's/^/[ascii] /'