Parcourir la source

add convenience makefile.

Jelmer Vernooij il y a 16 ans
Parent
commit
f4d308418e
1 fichiers modifiés avec 17 ajouts et 0 suppressions
  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