Browse Source

Build extensions in Makefile.

Jelmer Vernooij 16 years ago
parent
commit
354187cfe2
1 changed files with 2 additions and 1 deletions
  1. 2 1
      Makefile

+ 2 - 1
Makefile

@@ -6,11 +6,12 @@ all: build
 
 build::
 	$(SETUP) build
+	$(SETUP) build_ext -i
 
 install::
 	$(SETUP) install
 
-check::
+check:: build
 	PYTHONPATH=. $(TRIAL) dulwich
 
 clean::