source: Makefile @ ceb884d

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

Makefile: improve test sounds creation

  • Property mode set to 100644
File size: 1.9 KB
Line 
1WAFCMD=python waf
2
3SOX=sox
4
5ENABLE_DOUBLE := $(shell [ -z $(HAVE_DOUBLE) ] || echo --enable-double )
6TESTSOUNDS := python/tests/sounds
7
8all: build
9
10checkwaf:
11        @[ -f waf ] || make getwaf
12
13getwaf:
14        curl https://waf.io/waf-1.8.20 > waf
15        @chmod +x waf
16
17expandwaf:
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
24configure: checkwaf
25        $(WAFCMD) configure $(WAFOPTS) $(ENABLE_DOUBLE)
26
27build: configure
28        $(WAFCMD) build $(WAFOPTS)
29
30build_python:
31        cd python && python ./setup.py generate $(ENABLE_DOUBLE) build
32
33test_python:
34        cd python && pip install -v .
35        cd python && LD_LIBRARY_PATH=$(PWD)/build/src nose2 --verbose
36        cd python && pip uninstall -y -v aubio
37
38test_python_osx:
39        cd python && pip install --user -v .
40        [ -f build/src/libaubio.[0-9].dylib ] && ( mkdir -p ~/lib && cp -prv build/src/libaubio.4.dylib ~/lib ) || true
41        cd python && nose2 --verbose
42        cd python && pip uninstall -y -v aubio
43
44clean_python:
45        cd python && ./setup.py clean
46
47build_python3:
48        cd python && python3 ./setup.py generate $(ENABLE_DOUBLE) build
49
50clean_python3:
51        cd python && python3 ./setup.py clean
52
53clean:
54        $(WAFCMD) clean
55
56distcheck: checkwaf
57        $(WAFCMD) distcheck
58
59help:
60        $(WAFCMD) --help
61
62create_test_sounds:
63        -[ -z `which $(SOX)` ] && ( echo $(SOX) could not be found) || true
64        -mkdir -p $(TESTSOUNDS)
65        -$(SOX) -r 44100 -b 16 -n "$(TESTSOUNDS)/44100Hz_1f_silence.wav"      synth 1s   silence 0
66        -$(SOX) -r 22050 -b 16 -n "$(TESTSOUNDS)/22050Hz_5s_brownnoise.wav"   synth 5    brownnoise      vol 0.9
67        -$(SOX) -r 32000 -b 16 -n "$(TESTSOUNDS)/32000Hz_127f_sine440.wav"    synth 127s sine 440        vol 0.9
68        -$(SOX) -r  8000 -b 16 -n "$(TESTSOUNDS)/8000Hz_30s_silence.wav"      synth 30   silence 0       vol 0.9
69        -$(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.