source: Makefile @ 9e36acd

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

Makefile: generate more test sounds

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