]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/blobdiff - GNUmakefile
make pyflakes run faster and with more alacrity
[tahoe-lafs/tahoe-lafs.git] / GNUmakefile
index fb4bfa539dd01df39a987e5332a61dcc9163e273..0150e142f3fdc7c885153c11e2fa2fb9aace7745 100644 (file)
@@ -6,7 +6,13 @@ INSTDIR=$(BASE)/instdir
 PATHSEP=$(shell python -c 'import os ; print os.pathsep')
 TRIALPATH=$(shell which trial.py 2>/dev/null)
 ifeq ($(TRIALPATH),)
-TRIALPATH=$(shell which trial)
+TRIALPATH=$(shell which trial 2>/dev/null)
+endif
+ifeq ($(TRIALPATH),)
+TRIALPATH=$(shell $(PYTHON) -c "import os, sys; print repr(os.path.join(sys.prefix, \"Scripts\", \"trial.py\"))")
+endif
+ifeq ($(TRIALPATH),)
+TRIALPATH=$(shell $(PYTHON) -c "import os, sys; print repr(os.path.join(sys.prefix, \"Scripts\", \"trial\"))")
 endif
 
 EXTRA_SETUP_ARGS=
@@ -20,7 +26,7 @@ else
  ifeq ($(PLAT),win32)
   # The platform is Windows with cygwin build tools and the native Python interpreter.
   EXTRA_SETUP_ARGS=build -c mingw32
-  REACTOR=iocp
+  REACTOR=select
   INSTDIR := $(shell cygpath -w $(INSTDIR))
   TRIALPATH := $(shell cygpath -w $(TRIALPATH))
   ifneq ($(PYTHONPATH),)
@@ -35,8 +41,7 @@ else
 PYTHONPATH := "$(INSTDIR)"
 endif
 
-TRIAL=$(PYTHON) -u "$(TRIALPATH)" --reactor=$(REACTOR)
-# $(error $(TRIAL))
+TRIAL=$(PYTHON) -u "$(TRIALPATH)" --rterrors --reactor=$(REACTOR)
 
 show-instdir:
        @echo $(INSTDIR)
@@ -48,7 +53,7 @@ build: build-zfec build-Crypto
        $(PYTHON) setup.py $(EXTRA_SETUP_ARGS) install --install-lib="$(INSTDIR)" --install-scripts="$(INSTDIR)/scripts"
 
 build-zfec:
-       cd src/zfec && $(PYTHON) ./setup.py $(EXTRA_SETUP_ARGS) install --install-lib="$(INSTDIR)" --install-scripts="$(INSTDIR)/scripts"
+       cd src/zfec && $(PYTHON) ./setup.py $(EXTRA_SETUP_ARGS) install --single-version-externally-managed --root="$(INSTDIR)" --install-lib="." --install-scripts="$(INSTDIR)/scripts"
 
 clean-zfec:
        -cd src/zfec && python ./setup.py clean --all
@@ -75,7 +80,7 @@ run-client3:
        cd client-basedir3 && PYTHONPATH=.. twistd -noy ../client.tac
 
 ifeq ($(TEST),)
-TEST=allmydata fec
+TEST=allmydata zfec
 endif
 REPORTER=
 
@@ -108,7 +113,7 @@ endif
        $(PP) $(PYTHON) misc/figleaf2el.py .figleaf $(INSTDIR)
 
 pyflakes:
-       pyflakes src/allmydata
+       $(PYTHON) -OOu /usr/local/bin/pyflakes src/allmydata
 
 count-lines:
        @echo -n "files: "