Skip to content

Commit

Permalink
add convenience makefile.
Browse files Browse the repository at this point in the history
  • Loading branch information
jelmer committed Dec 8, 2008
1 parent 73bce9b commit f4d3084
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
PYTHON = python
SETUP = $(PYTHON) setup.py
TRIAL = trial

all: build build-inplace

build::
$(SETUP) build

install::
$(SETUP) install

check::
PYTHONPATH=. $(TRIAL) dulwich

clean::
$(SETUP) clean

0 comments on commit f4d3084

Please sign in to comment.