From 5864b43982c2a4020bdd7c077f8c552a01d114cb Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Mon, 3 Oct 2016 16:48:54 +0200 Subject: [PATCH] Makefile: pass build_ext in test_pure_python{,_wheel} --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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) -- 2.11.0