/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
PYTHON = python
SETUP = $(PYTHON) setup.py
TRIAL = trial

all: build 

build::
	$(SETUP) build

install::
	$(SETUP) install

check::
	PYTHONPATH=. $(TRIAL) dulwich

clean::
	$(SETUP) clean