Przeglądaj źródła

Build extensions in Makefile.

Jelmer Vernooij 16 lat temu
rodzic
commit
0cee0749ad
1 zmienionych plików z 2 dodań i 1 usunięć
  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::