Browse Source

add convenience makefile.

Jelmer Vernooij 16 years ago
parent
commit
f4d308418e
1 changed files with 17 additions and 0 deletions
  1. 17 0
      Makefile

+ 17 - 0
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