From: Paul Brossier Date: Mon, 3 Oct 2016 14:48:54 +0000 (+0200) Subject: Makefile: pass build_ext in test_pure_python{,_wheel} X-Git-Tag: 0.4.4~169 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=5864b43982c2a4020bdd7c077f8c552a01d114cb;p=aubio.git Makefile: pass build_ext in test_pure_python{,_wheel} --- diff --git a/Makefile b/Makefile index 07e6bcd0..3658a73f 100644 --- a/Makefile +++ b/Makefile @@ -54,7 +54,7 @@ test_pure_python: -rm -rf build/ python/gen/ -rm -f dist/*.egg -pip install -v -r requirements.txt - CFLAGS=-Os python setup.py bdist_egg + CFLAGS=-Os python setup.py build_ext $(ENABLE_DOUBLE) bdist_egg [ "$(TRAVIS_OS_NAME)" == "osx" ] && easy_install --user dist/*.egg || \ easy_install dist/*.egg nose2 -N 4 @@ -66,7 +66,7 @@ test_pure_python_wheel: -rm -f dist/*.whl -pip install -v -r requirements.txt -pip install -v wheel - CFLAGS=-Os python setup.py bdist_wheel --universal + CFLAGS=-Os python setup.py build_ext $(ENABLE_DOUBLE) bdist_wheel --universal wheel install dist/*.whl nose2 -N 4 pip uninstall -v -y aubio @@ -80,6 +80,9 @@ clean_python3: clean: $(WAFCMD) clean +distclean: + $(WAFCMD) distclean + distcheck: checkwaf $(WAFCMD) distcheck $(WAFOPTS) $(ENABLE_DOUBLE)