source: Makefile @ 9a1df7f

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

[build] use pytest to run tests

  • Property mode set to 100644
File size: 7.0 KB
RevLine 
[c0c3f33]1#!/usr/bin/make -f
2# -*- makefile -*-
[4e56c55]3#
4# This makefile contains simple rules to prepare, compile, test, and install
5# aubio. Try one of the following rules:
6#
7# $ make configure
8# $ make build
9# $ make install
10# $ make test_python
[c0c3f33]11
[81ad577]12WAFCMD=python waf
[6a6cb48]13
[5d9693c]14#WAFOPTS:=
15# turn on verbose mode
[1b2669a]16WAFOPTS += --verbose
[5d9693c]17# build wafopts
18WAFOPTS += --destdir $(DESTDIR)
19# multiple jobs
20WAFOPTS += --jobs 4
[3d14829]21# if HAVE_AUBIO_DOUBLE is defined, pass --enable-double to waf
22# python/lib/moresetuptools.py also checks for HAVE_AUBIO_DOUBLE
23WAFOPTS += $(shell [ -z $(HAVE_AUBIO_DOUBLE) ] || echo --enable-double )
[5d9693c]24
[c0c3f33]25PIPOPTS += --verbose
26
[5d9693c]27DESTDIR:=$(PWD)/build/dist
28PYDESTDIR:=$(PWD)/build/pydist
29
30# default install locations
31PREFIX?=/usr/local
32EXEC_PREFIX?=$(PREFIX)
33LIBDIR?=$(PREFIX)/lib
34INCLUDEDIR?=$(PREFIX)/include
35DATAROOTDIR?=$(PREFIX)/share
36MANDIR?=$(DATAROOTDIR)/man
37
[9a1df7f]38# default python test command
39PYTEST?=pytest --verbose
[8991aaf]40
[be06e53]41SOX=sox
42
[ceb884d]43TESTSOUNDS := python/tests/sounds
[6a6cb48]44
[8e94af5]45all: build
46
47checkwaf:
48        @[ -f waf ] || make getwaf
49
50getwaf:
[bab8e3d]51        ./scripts/get_waf.sh
52
53expandwaf: getwaf
54        [ -d wafilb ] || rm -fr waflib
55        $(WAFCMD) --help > /dev/null
56        mv .waf*/waflib . && rm -fr .waf*
57        sed '/^#==>$$/,$$d' waf > waf2 && mv waf2 waf
[5d9b03b]58        chmod +x waf && chmod -R go-w waflib
[bab8e3d]59
60cleanwaf:
61        rm -rf waf waflib .waf*
[8e94af5]62
[e372a0f]63configure: checkwaf
[3d14829]64        $(WAFCMD) configure $(WAFOPTS)
[e372a0f]65
66build: configure
[3fc5696]67        $(WAFCMD) build $(WAFOPTS)
[8e94af5]68
[5d9693c]69install:
70        # install
71        $(WAFCMD) install $(WAFOPTS)
[972a326]72
[5d9693c]73list_installed:
[f1fc216]74        find $(DESTDIR) -ls | sed 's|$(DESTDIR)|/«destdir»|'
[5d9693c]75
76list_installed_python:
[1b2669a]77        pip show -f aubio
78
79list_all_installed: list_installed list_installed_python
[5d9693c]80
81uninstall:
82        # uninstall
83        $(WAFCMD) uninstall $(WAFOPTS)
84
85delete_install:
86        rm -rf $(PWD)/dist/test
87
88build_python:
89        # build python-aubio, using locally built libaubio if found
[3d14829]90        python ./setup.py build
[5d9693c]91
92build_python_extlib:
93        # build python-aubio using (locally) installed libaubio
94        [ -f $(DESTDIR)/$(INCLUDEDIR)/aubio/aubio.h ]
95        [ -d $(DESTDIR)/$(LIBDIR) ]
96        [ -f $(DESTDIR)/$(LIBDIR)/pkgconfig/aubio.pc ]
97        PKG_CONFIG_PATH=$(DESTDIR)/$(LIBDIR)/pkgconfig \
[1b2669a]98        CFLAGS="-I$(DESTDIR)/$(INCLUDEDIR)" \
99        LDFLAGS="-L$(DESTDIR)/$(LIBDIR)" \
[5d9693c]100                make build_python
101
102deps_python:
103        # install or upgrade python requirements
[c0c3f33]104        pip install $(PIPOPTS) --requirement requirements.txt
[5d9693c]105
106# use pip or distutils?
[4e56c55]107install_python: install_python_with_pip
[5d9693c]108uninstall_python: uninstall_python_with_pip
[4e56c55]109#install_python: install_python_with_distutils
[5d9693c]110#uninstall_python: uninstall_python_with_distutils
111
112install_python_with_pip:
[e56ac16]113        # install package
[c0c3f33]114        pip install $(PIPOPTS) .
[5d9693c]115
116uninstall_python_with_pip:
[e56ac16]117        # uninstall package
[3762cdb]118        ( pip show aubio | grep -l aubio > /dev/null ) && \
119        pip uninstall -y -v aubio || echo "info: aubio package is not installed"
[5d9693c]120
121install_python_with_distutils:
[c0c3f33]122        ./setup.py install $(PIPOPTS) $(DISTUTILSOPTS)
[5d9693c]123
124uninstall_python_with_distutils:
125        #./setup.py uninstall
126        [ -d $(PYDESTDIR)/$(LIBDIR) ] && echo Warning: did not clean $(PYDESTDIR)/$(LIBDIR) || true
127
128force_uninstall_python:
129        # ignore failure if not installed
130        -make uninstall_python
[39122f0]131
[e56ac16]132local_dylib:
[5d9693c]133        # DYLD_LIBRARY_PATH is no more on mac os
[1167631]134        # create links from ~/lib/lib* to build/src/lib*
[5d9693c]135        [ -f $(PWD)/build/src/libaubio.[0-9].dylib ] && ( mkdir -p ~/lib && cp -prv build/src/libaubio.[0-9].dylib ~/lib ) || true
[e56ac16]136
[5d9693c]137test_python: export LD_LIBRARY_PATH=$(DESTDIR)/$(LIBDIR)
138test_python: export PYTHONPATH=$(PYDESTDIR)/$(LIBDIR)
139test_python: local_dylib
[e56ac16]140        # run test with installed package
[9a1df7f]141        $(PYTEST)
[f465088]142
[5d9693c]143clean_python:
144        ./setup.py clean
[a2ae70a]145
[5d9693c]146check_clean_python:
147        # check cleaning a second time works
148        make clean_python
149        make clean_python
[a2ae70a]150
[0799252]151clean: checkwaf
[5d9693c]152        # optionnaly clean before build
153        -$(WAFCMD) clean
[1b2669a]154        # remove possible left overs
155        -rm -rf doc/_build
[5d9693c]156
157check_clean:
158        # check cleaning after build works
159        $(WAFCMD) clean
160        # check cleaning a second time works
[81ad577]161        $(WAFCMD) clean
[ddd9861]162
[5864b43]163distclean:
164        $(WAFCMD) distclean
[e9df0108]165        -rm -rf doc/_build/
166        -rm -rf doc/web/
[5864b43]167
[5d9693c]168check_distclean:
169        make distclean
170
[e372a0f]171distcheck: checkwaf
[3d14829]172        $(WAFCMD) distcheck $(WAFOPTS)
[8e94af5]173
174help:
[81ad577]175        $(WAFCMD) --help
[be06e53]176
177create_test_sounds:
[3a7b7c6]178        -[ -z `which $(SOX)` ] && ( echo $(SOX) could not be found) || true
179        -mkdir -p $(TESTSOUNDS)
[90581a8]180        -$(SOX) -r 44100 -b 16 -n "$(TESTSOUNDS)/44100Hz_1f_silence.wav"      trim 0 1s
[ceb884d]181        -$(SOX) -r 22050 -b 16 -n "$(TESTSOUNDS)/22050Hz_5s_brownnoise.wav"   synth 5    brownnoise      vol 0.9
182        -$(SOX) -r 32000 -b 16 -n "$(TESTSOUNDS)/32000Hz_127f_sine440.wav"    synth 127s sine 440        vol 0.9
[90581a8]183        -$(SOX) -r  8000 -b 16 -n "$(TESTSOUNDS)/8000Hz_30s_silence.wav"      trim 0 30
[ceb884d]184        -$(SOX) -r 48000 -b 32 -n "$(TESTSOUNDS)/48000Hz_60s_sweep.wav"       synth 60   sine 100-20000  vol 0.9
[9e36acd]185        -$(SOX) -r 44100 -b 16 -n "$(TESTSOUNDS)/44100Hz_44100f_sine441.wav"  synth 44100s   sine 441   vol 0.9
186        -$(SOX) -r 44100 -b 16 -n "$(TESTSOUNDS)/44100Hz_100f_sine441.wav"    synth 100s sine 441       vol 0.9
[e48b072]187
[5d9693c]188# build only libaubio, no python-aubio
[1b2669a]189test_lib_only: clean distclean configure build install list_installed
[5d9693c]190# additionally, clean after a fresh build
191test_lib_only_clean: test_lib_only uninstall check_clean check_distclean
192
193# build libaubio, build and test python-aubio against it
194test_lib_python: force_uninstall_python deps_python \
195        clean_python clean distclean \
196        configure build build_python \
197        install install_python \
[1b2669a]198        test_python \
199        list_all_installed
[5d9693c]200
201test_lib_python_clean: test_lib_python \
202        uninstall_python uninstall \
203        check_clean_python \
204        check_clean \
205        check_distclean
206
207# build libaubio, install it, build python-aubio against it
208test_lib_install_python: force_uninstall_python deps_python \
209        clean_python distclean \
210        configure build \
211        install \
212        build_python_extlib \
213        install_python \
[1b2669a]214        test_python \
215        list_all_installed
[5d9693c]216
217test_lib_install_python_clean: test_lib_install_python \
218        uninstall_python \
219        delete_install \
220        check_clean_python \
221        check_distclean
222
223# build a python-aubio that includes libaubio
224test_python_only: force_uninstall_python deps_python \
225        clean_python clean distclean \
226        build_python \
227        install_python \
[1b2669a]228        test_python \
229        list_installed_python
[5d9693c]230
231test_python_only_clean: test_python_only \
232        uninstall_python \
233        check_clean_python
234
[639bf5e]235coverage: export CFLAGS=--coverage
236coverage: export LDFLAGS=--coverage
[d85e16f]237coverage: export PYTHONPATH=$(PWD)/python/lib
[a2b6523]238coverage: export LD_LIBRARY_PATH=$(PWD)/build/src
[639bf5e]239coverage: force_uninstall_python deps_python \
[a2b6523]240        clean_python clean distclean build local_dylib
241        lcov --capture --no-external --directory . --output-file build/coverage_lib.info
[639bf5e]242        pip install -v -e .
[9a1df7f]243        coverage run `which pytest`
[a2b6523]244        lcov --capture --no-external --directory . --output-file build/coverage_python.info
245        lcov -a build/coverage_python.info -a build/coverage_lib.info -o build/coverage.info
[639bf5e]246
247coverage_report: coverage
248        genhtml build/coverage.info --output-directory lcov_html
249        mkdir -p gcovr_html/
250        gcovr -r . --html --html-details \
251                --output gcovr_html/index.html \
252                --exclude ".*tests/.*" --exclude ".*examples/.*"
253        coverage report
254        coverage html
255
[f1fc216]256sphinx: configure
257        $(WAFCMD) sphinx $(WAFOPTS)
258
259doxygen: configure
260        $(WAFCMD) doxygen $(WAFOPTS)
261
262manpages: configure
263        $(WAFCMD) manpages $(WAFOPTS)
264
265html: doxygen sphinx
[5d9693c]266
[f1fc216]267docs: html manpages
[e48b072]268
269dist: distclean expandwaf
270        $(WAFCMD) dist
Note: See TracBrowser for help on using the repository browser.