Changeset f465088 for Makefile


Ignore:
Timestamp:
May 16, 2016, 7:14:15 AM (8 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
Children:
2e65426
Parents:
19c3d75
Message:

Makefile: added rules to build python-aubio without libaubio

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Makefile

    r19c3d75 rf465088  
    5050        ./setup.py clean
    5151
     52test_pure_python:
     53        -pip uninstall -v -y aubio
     54        -rm -rf build/ python/gen/
     55        -rm -f dist/*.egg
     56        -pip install -v -r requirements.txt
     57        CFLAGS=-Os python setup.py bdist_egg
     58        easy_install dist/*.egg
     59        nose2 -N 4
     60        pip uninstall -v -y aubio
     61
     62test_pure_python_wheel:
     63        -pip uninstall -v -y aubio
     64        -rm -rf build/ python/gen/
     65        -rm -f dist/*.whl
     66        -pip install -v -r requirements.txt
     67        -pip install -v wheel
     68        CFLAGS=-Os python setup.py bdist_wheel --universal
     69        wheel install dist/*.whl
     70        nose2 -N 4
     71        pip uninstall -v -y aubio
     72
    5273build_python3:
    5374        python3 ./setup.py generate $(ENABLE_DOUBLE) build
Note: See TracChangeset for help on using the changeset viewer.