From f465088b60a701bfa2d287734f6c5a623736dd18 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Mon, 16 May 2016 07:14:15 +0200 Subject: [PATCH] Makefile: added rules to build python-aubio without libaubio --- Makefile | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/Makefile b/Makefile index c3684d0c..9b76f3af 100644 --- a/Makefile +++ b/Makefile @@ -49,6 +49,27 @@ test_python_osx: clean_python: ./setup.py clean +test_pure_python: + -pip uninstall -v -y aubio + -rm -rf build/ python/gen/ + -rm -f dist/*.egg + -pip install -v -r requirements.txt + CFLAGS=-Os python setup.py bdist_egg + easy_install dist/*.egg + nose2 -N 4 + pip uninstall -v -y aubio + +test_pure_python_wheel: + -pip uninstall -v -y aubio + -rm -rf build/ python/gen/ + -rm -f dist/*.whl + -pip install -v -r requirements.txt + -pip install -v wheel + CFLAGS=-Os python setup.py bdist_wheel --universal + wheel install dist/*.whl + nose2 -N 4 + pip uninstall -v -y aubio + build_python3: python3 ./setup.py generate $(ENABLE_DOUBLE) build -- 2.11.0