source: Makefile @ dd93e80

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

Makefile: add rules for documentation, simplify listing

  • Property mode set to 100644
File size: 6.1 KB
Line 
1#!/usr/bin/make -f
2# -*- makefile -*-
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
11
12WAFCMD=python waf
13WAFURL=https://waf.io/waf-1.8.22
14
15#WAFOPTS:=
16# turn on verbose mode
17WAFOPTS += --verbose
18# build wafopts
19WAFOPTS += --destdir $(DESTDIR)
20# multiple jobs
21WAFOPTS += --jobs 4
22# if HAVE_AUBIO_DOUBLE is defined, pass --enable-double to waf
23# python/lib/moresetuptools.py also checks for HAVE_AUBIO_DOUBLE
24WAFOPTS += $(shell [ -z $(HAVE_AUBIO_DOUBLE) ] || echo --enable-double )
25
26PIPOPTS += --verbose
27
28DESTDIR:=$(PWD)/build/dist
29PYDESTDIR:=$(PWD)/build/pydist
30
31# default install locations
32PREFIX?=/usr/local
33EXEC_PREFIX?=$(PREFIX)
34LIBDIR?=$(PREFIX)/lib
35INCLUDEDIR?=$(PREFIX)/include
36DATAROOTDIR?=$(PREFIX)/share
37MANDIR?=$(DATAROOTDIR)/man
38
39SOX=sox
40
41TESTSOUNDS := python/tests/sounds
42
43all: build
44
45checkwaf:
46        @[ -f waf ] || make getwaf
47
48getwaf:
49        ./scripts/get_waf.sh
50
51expandwaf: getwaf
52        [ -d wafilb ] || rm -fr waflib
53        $(WAFCMD) --help > /dev/null
54        mv .waf*/waflib . && rm -fr .waf*
55        sed '/^#==>$$/,$$d' waf > waf2 && mv waf2 waf
56        chmod +x waf
57
58cleanwaf:
59        rm -rf waf waflib .waf*
60
61configure: checkwaf
62        $(WAFCMD) configure $(WAFOPTS)
63
64build: configure
65        $(WAFCMD) build $(WAFOPTS)
66
67install:
68        # install
69        $(WAFCMD) install $(WAFOPTS)
70
71list_installed:
72        find $(DESTDIR) -ls | sed 's|$(DESTDIR)|/«destdir»|'
73
74list_installed_python:
75        pip show -f aubio
76
77list_all_installed: list_installed list_installed_python
78
79uninstall:
80        # uninstall
81        $(WAFCMD) uninstall $(WAFOPTS)
82
83delete_install:
84        rm -rf $(PWD)/dist/test
85
86build_python:
87        # build python-aubio, using locally built libaubio if found
88        python ./setup.py build
89
90build_python_extlib:
91        # build python-aubio using (locally) installed libaubio
92        [ -f $(DESTDIR)/$(INCLUDEDIR)/aubio/aubio.h ]
93        [ -d $(DESTDIR)/$(LIBDIR) ]
94        [ -f $(DESTDIR)/$(LIBDIR)/pkgconfig/aubio.pc ]
95        PKG_CONFIG_PATH=$(DESTDIR)/$(LIBDIR)/pkgconfig \
96        CFLAGS="-I$(DESTDIR)/$(INCLUDEDIR)" \
97        LDFLAGS="-L$(DESTDIR)/$(LIBDIR)" \
98                make build_python
99
100deps_python:
101        # install or upgrade python requirements
102        pip install $(PIPOPTS) --requirement requirements.txt
103
104# use pip or distutils?
105install_python: install_python_with_pip
106uninstall_python: uninstall_python_with_pip
107#install_python: install_python_with_distutils
108#uninstall_python: uninstall_python_with_distutils
109
110install_python_with_pip:
111        # install package
112        pip install $(PIPOPTS) .
113
114uninstall_python_with_pip:
115        # uninstall package
116        pip uninstall -y -v aubio || make uninstall_python_with_distutils
117
118install_python_with_distutils:
119        ./setup.py install $(PIPOPTS) $(DISTUTILSOPTS)
120
121uninstall_python_with_distutils:
122        #./setup.py uninstall
123        [ -d $(PYDESTDIR)/$(LIBDIR) ] && echo Warning: did not clean $(PYDESTDIR)/$(LIBDIR) || true
124
125force_uninstall_python:
126        # ignore failure if not installed
127        -make uninstall_python
128
129local_dylib:
130        # DYLD_LIBRARY_PATH is no more on mac os
131        # create links from ~/lib/lib* to build/src/lib*
132        [ -f $(PWD)/build/src/libaubio.[0-9].dylib ] && ( mkdir -p ~/lib && cp -prv build/src/libaubio.[0-9].dylib ~/lib ) || true
133
134test_python: export LD_LIBRARY_PATH=$(DESTDIR)/$(LIBDIR)
135test_python: export PYTHONPATH=$(PYDESTDIR)/$(LIBDIR)
136test_python: local_dylib
137        # run test with installed package
138        ./python/tests/run_all_tests --verbose
139        # also run with nose, multiple processes
140        nose2 -N 4
141
142clean_python:
143        ./setup.py clean
144
145check_clean_python:
146        # check cleaning a second time works
147        make clean_python
148        make clean_python
149
150clean: checkwaf
151        # optionnaly clean before build
152        -$(WAFCMD) clean
153        # remove possible left overs
154        -rm -rf doc/_build
155
156check_clean:
157        # check cleaning after build works
158        $(WAFCMD) clean
159        # check cleaning a second time works
160        $(WAFCMD) clean
161
162distclean:
163        $(WAFCMD) distclean
164
165check_distclean:
166        make distclean
167
168distcheck: checkwaf
169        $(WAFCMD) distcheck $(WAFOPTS)
170
171help:
172        $(WAFCMD) --help
173
174create_test_sounds:
175        -[ -z `which $(SOX)` ] && ( echo $(SOX) could not be found) || true
176        -mkdir -p $(TESTSOUNDS)
177        -$(SOX) -r 44100 -b 16 -n "$(TESTSOUNDS)/44100Hz_1f_silence.wav"          synth 1s   silence 0        dcshift .01
178        -$(SOX) -r 22050 -b 16 -n "$(TESTSOUNDS)/22050Hz_5s_brownnoise.wav"   synth 5    brownnoise      vol 0.9
179        -$(SOX) -r 32000 -b 16 -n "$(TESTSOUNDS)/32000Hz_127f_sine440.wav"    synth 127s sine 440        vol 0.9
180        -$(SOX) -r  8000 -b 16 -n "$(TESTSOUNDS)/8000Hz_30s_silence.wav"      synth 30   silence 0       vol 0.9
181        -$(SOX) -r 48000 -b 32 -n "$(TESTSOUNDS)/48000Hz_60s_sweep.wav"       synth 60   sine 100-20000  vol 0.9
182        -$(SOX) -r 44100 -b 16 -n "$(TESTSOUNDS)/44100Hz_44100f_sine441.wav"  synth 44100s   sine 441   vol 0.9
183        -$(SOX) -r 44100 -b 16 -n "$(TESTSOUNDS)/44100Hz_100f_sine441.wav"    synth 100s sine 441       vol 0.9
184
185# build only libaubio, no python-aubio
186test_lib_only: clean distclean configure build install list_installed
187# additionally, clean after a fresh build
188test_lib_only_clean: test_lib_only uninstall check_clean check_distclean
189
190# build libaubio, build and test python-aubio against it
191test_lib_python: force_uninstall_python deps_python \
192        clean_python clean distclean \
193        configure build build_python \
194        install install_python \
195        test_python \
196        list_all_installed
197
198test_lib_python_clean: test_lib_python \
199        uninstall_python uninstall \
200        check_clean_python \
201        check_clean \
202        check_distclean
203
204# build libaubio, install it, build python-aubio against it
205test_lib_install_python: force_uninstall_python deps_python \
206        clean_python distclean \
207        configure build \
208        install \
209        build_python_extlib \
210        install_python \
211        test_python \
212        list_all_installed
213
214test_lib_install_python_clean: test_lib_install_python \
215        uninstall_python \
216        delete_install \
217        check_clean_python \
218        check_distclean
219
220# build a python-aubio that includes libaubio
221test_python_only: force_uninstall_python deps_python \
222        clean_python clean distclean \
223        build_python \
224        install_python \
225        test_python \
226        list_installed_python
227
228test_python_only_clean: test_python_only \
229        uninstall_python \
230        check_clean_python
231
232sphinx: configure
233        $(WAFCMD) sphinx $(WAFOPTS)
234
235doxygen: configure
236        $(WAFCMD) doxygen $(WAFOPTS)
237
238manpages: configure
239        $(WAFCMD) manpages $(WAFOPTS)
240
241html: doxygen sphinx
242
243docs: html manpages
244
245dist: distclean expandwaf
246        $(WAFCMD) dist
Note: See TracBrowser for help on using the repository browser.