add convenience makefile.
authorJelmer Vernooij <jelmer@samba.org>
Mon, 8 Dec 2008 22:32:59 +0000 (22:32 +0000)
committerJelmer Vernooij <jelmer@samba.org>
Mon, 8 Dec 2008 22:32:59 +0000 (22:32 +0000)
Makefile [new file with mode: 0644]

diff --git a/Makefile b/Makefile
new file mode 100644 (file)
index 0000000..e260453
--- /dev/null
+++ b/Makefile
@@ -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