Sfoglia il codice sorgente

Build extensions in Makefile.

Jelmer Vernooij 16 anni fa
parent
commit
0cee0749ad
1 ha cambiato i file con 2 aggiunte e 1 eliminazioni
  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::