~ubuntu-branches/ubuntu/karmic/dulwich/karmic

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Jelmer Vernooij
  • Date: 2009-05-20 19:04:00 UTC
  • mfrom: (1.2.5 upstream) (4.1.1 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090520190400-qev99je3y0ligs6r
Tags: 0.3.2-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
PYTHON = python
2
2
SETUP = $(PYTHON) setup.py
3
3
PYDOCTOR ?= pydoctor
4
 
TESTRUNNER = $(shell which trial)
 
4
TESTRUNNER = $(shell which nosetests)
5
5
 
6
6
all: build 
7
7
 
26
26
clean::
27
27
        $(SETUP) clean --all
28
28
        rm -f dulwich/*.so
 
29
 
 
30
coverage:: build
 
31
        PYTHONPATH=. $(PYTHON) $(TESTRUNNER) --cover-package=dulwich --with-coverage --cover-erase --cover-inclusive dulwich