source: Makefile @ 4c38b62

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since 4c38b62 was 4c38b62, checked in by Paul Brossier <piem@piem.org>, 8 years ago

Makefile: also get libaubio.5.dylib

  • Property mode set to 100644
File size: 2.5 KB
RevLine 
[81ad577]1WAFCMD=python waf
[7f35041]2WAFURL=https://waf.io/waf-1.8.22
[6a6cb48]3
[be06e53]4SOX=sox
5
[6a6cb48]6ENABLE_DOUBLE := $(shell [ -z $(HAVE_DOUBLE) ] || echo --enable-double )
[ceb884d]7TESTSOUNDS := python/tests/sounds
[6a6cb48]8
[8e94af5]9all: build
10
11checkwaf:
12        @[ -f waf ] || make getwaf
13
14getwaf:
[65fc06f]15        @./scripts/get_waf.sh
[81ad577]16
17expandwaf:
[8e94af5]18        @[ -d wafilb ] || rm -fr waflib
[81ad577]19        @$(WAFCMD) --help > /dev/null
[0e39e88]20        @mv .waf*/waflib . && rm -fr .waf*
[6121dd4]21        @sed '/^#==>$$/,$$d' waf > waf2 && mv waf2 waf
[8e94af5]22        @chmod +x waf
23
[e372a0f]24configure: checkwaf
[6a6cb48]25        $(WAFCMD) configure $(WAFOPTS) $(ENABLE_DOUBLE)
[e372a0f]26
27build: configure
[3fc5696]28        $(WAFCMD) build $(WAFOPTS)
[8e94af5]29
[972a326]30build_python:
[1167631]31        python ./setup.py generate $(ENABLE_DOUBLE) build
[972a326]32
[1167631]33test_python: export LD_LIBRARY_PATH=$(PWD)/build/src
[69212a0]34test_python:
[1167631]35        pip install -v -r requirements.txt
36        pip install -v .
37        nose2 --verbose
38        pip uninstall -y -v aubio
[39122f0]39
40test_python_osx:
[1167631]41        # create links from ~/lib/lib* to build/src/lib*
[4c38b62]42        [ -f build/src/libaubio.[0-9].dylib ] && ( mkdir -p ~/lib && cp -prv build/src/libaubio.[0-9].dylib ~/lib ) || true
[1167631]43        # then run the tests
44        pip install --user -v -r requirements.txt
45        pip install --user -v .
46        nose2 --verbose
47        pip uninstall -y -v aubio
[69212a0]48
[972a326]49clean_python:
[1167631]50        ./setup.py clean
[972a326]51
[f465088]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
[c69c219]58        [ "$(TRAVIS_OS_NAME)" == "osx" ] && easy_install --user dist/*.egg || \
59                easy_install dist/*.egg
[f465088]60        nose2 -N 4
61        pip uninstall -v -y aubio
62
63test_pure_python_wheel:
64        -pip uninstall -v -y aubio
65        -rm -rf build/ python/gen/
66        -rm -f dist/*.whl
67        -pip install -v -r requirements.txt
68        -pip install -v wheel
69        CFLAGS=-Os python setup.py bdist_wheel --universal
70        wheel install dist/*.whl
71        nose2 -N 4
72        pip uninstall -v -y aubio
73
[a2ae70a]74build_python3:
[1167631]75        python3 ./setup.py generate $(ENABLE_DOUBLE) build
[a2ae70a]76
77clean_python3:
[1167631]78        python3 ./setup.py clean
[a2ae70a]79
[ddd9861]80clean:
[81ad577]81        $(WAFCMD) clean
[ddd9861]82
[e372a0f]83distcheck: checkwaf
[7aed123]84        $(WAFCMD) distcheck $(WAFOPTS) $(ENABLE_DOUBLE)
[8e94af5]85
86help:
[81ad577]87        $(WAFCMD) --help
[be06e53]88
89create_test_sounds:
[3a7b7c6]90        -[ -z `which $(SOX)` ] && ( echo $(SOX) could not be found) || true
91        -mkdir -p $(TESTSOUNDS)
[ceb884d]92        -$(SOX) -r 44100 -b 16 -n "$(TESTSOUNDS)/44100Hz_1f_silence.wav"      synth 1s   silence 0
93        -$(SOX) -r 22050 -b 16 -n "$(TESTSOUNDS)/22050Hz_5s_brownnoise.wav"   synth 5    brownnoise      vol 0.9
94        -$(SOX) -r 32000 -b 16 -n "$(TESTSOUNDS)/32000Hz_127f_sine440.wav"    synth 127s sine 440        vol 0.9
95        -$(SOX) -r  8000 -b 16 -n "$(TESTSOUNDS)/8000Hz_30s_silence.wav"      synth 30   silence 0       vol 0.9
96        -$(SOX) -r 48000 -b 32 -n "$(TESTSOUNDS)/48000Hz_60s_sweep.wav"       synth 60   sine 100-20000  vol 0.9
Note: See TracBrowser for help on using the repository browser.