source: Makefile @ 95af88b

sampler
Last change on this file since 95af88b was 80e9efc, checked in by Paul Brossier <piem@piem.org>, 7 years ago

scripts/get_waf.sh: really bump to 1.9.6, remove unused variable in Makefile

  • Property mode set to 100644
File size: 6.2 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
13
14#WAFOPTS:=
15# turn on verbose mode
16WAFOPTS += --verbose
17# build wafopts
18WAFOPTS += --destdir $(DESTDIR)
19# multiple jobs
20WAFOPTS += --jobs 4
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 )
24
25PIPOPTS += --verbose
26
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
38SOX=sox
39
40TESTSOUNDS := python/tests/sounds
41
42all: build
43
44checkwaf:
45        @[ -f waf ] || make getwaf
46
47getwaf:
48        ./scripts/get_waf.sh
49
50expandwaf: getwaf
51        [ -d wafilb ] || rm -fr waflib
52        $(WAFCMD) --help > /dev/null
53        mv .waf*/waflib . && rm -fr .waf*
54        sed '/^#==>$$/,$$d' waf > waf2 && mv waf2 waf
55        chmod +x waf && chmod -R go-w waflib
56
57cleanwaf:
58        rm -rf waf waflib .waf*
59
60configure: checkwaf
61        $(WAFCMD) configure $(WAFOPTS)
62
63build: configure
64        $(WAFCMD) build $(WAFOPTS)
65
66install:
67        # install
68        $(WAFCMD) install $(WAFOPTS)
69
70list_installed:
71        find $(DESTDIR) -ls | sed 's|$(DESTDIR)|/«destdir»|'
72
73list_installed_python:
74        pip show -f aubio
75
76list_all_installed: list_installed list_installed_python
77
78uninstall:
79        # uninstall
80        $(WAFCMD) uninstall $(WAFOPTS)
81
82delete_install:
83        rm -rf $(PWD)/dist/test
84
85build_python:
86        # build python-aubio, using locally built libaubio if found
87        python ./setup.py build
88
89build_python_extlib:
90        # build python-aubio using (locally) installed libaubio
91        [ -f $(DESTDIR)/$(INCLUDEDIR)/aubio/aubio.h ]
92        [ -d $(DESTDIR)/$(LIBDIR) ]
93        [ -f $(DESTDIR)/$(LIBDIR)/pkgconfig/aubio.pc ]
94        PKG_CONFIG_PATH=$(DESTDIR)/$(LIBDIR)/pkgconfig \
95        CFLAGS="-I$(DESTDIR)/$(INCLUDEDIR)" \
96        LDFLAGS="-L$(DESTDIR)/$(LIBDIR)" \
97                make build_python
98
99deps_python:
100        # install or upgrade python requirements
101        pip install $(PIPOPTS) --requirement requirements.txt
102
103# use pip or distutils?
104install_python: install_python_with_pip
105uninstall_python: uninstall_python_with_pip
106#install_python: install_python_with_distutils
107#uninstall_python: uninstall_python_with_distutils
108
109install_python_with_pip:
110        # install package
111        pip install $(PIPOPTS) .
112
113uninstall_python_with_pip:
114        # uninstall package
115        ( pip show aubio | grep -l aubio > /dev/null ) && \
116        pip uninstall -y -v aubio || echo "info: aubio package is not installed"
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        -rm -rf doc/_build/
165        -rm -rf doc/web/
166
167check_distclean:
168        make distclean
169
170distcheck: checkwaf
171        $(WAFCMD) distcheck $(WAFOPTS)
172
173help:
174        $(WAFCMD) --help
175
176create_test_sounds:
177        -[ -z `which $(SOX)` ] && ( echo $(SOX) could not be found) || true
178        -mkdir -p $(TESTSOUNDS)
179        -$(SOX) -r 44100 -b 16 -n "$(TESTSOUNDS)/44100Hz_1f_silence.wav"      trim 0 1s
180        -$(SOX) -r 22050 -b 16 -n "$(TESTSOUNDS)/22050Hz_5s_brownnoise.wav"   synth 5    brownnoise      vol 0.9
181        -$(SOX) -r 32000 -b 16 -n "$(TESTSOUNDS)/32000Hz_127f_sine440.wav"    synth 127s sine 440        vol 0.9
182        -$(SOX) -r  8000 -b 16 -n "$(TESTSOUNDS)/8000Hz_30s_silence.wav"      trim 0 30
183        -$(SOX) -r 48000 -b 32 -n "$(TESTSOUNDS)/48000Hz_60s_sweep.wav"       synth 60   sine 100-20000  vol 0.9
184        -$(SOX) -r 44100 -b 16 -n "$(TESTSOUNDS)/44100Hz_44100f_sine441.wav"  synth 44100s   sine 441   vol 0.9
185        -$(SOX) -r 44100 -b 16 -n "$(TESTSOUNDS)/44100Hz_100f_sine441.wav"    synth 100s sine 441       vol 0.9
186
187# build only libaubio, no python-aubio
188test_lib_only: clean distclean configure build install list_installed
189# additionally, clean after a fresh build
190test_lib_only_clean: test_lib_only uninstall check_clean check_distclean
191
192# build libaubio, build and test python-aubio against it
193test_lib_python: force_uninstall_python deps_python \
194        clean_python clean distclean \
195        configure build build_python \
196        install install_python \
197        test_python \
198        list_all_installed
199
200test_lib_python_clean: test_lib_python \
201        uninstall_python uninstall \
202        check_clean_python \
203        check_clean \
204        check_distclean
205
206# build libaubio, install it, build python-aubio against it
207test_lib_install_python: force_uninstall_python deps_python \
208        clean_python distclean \
209        configure build \
210        install \
211        build_python_extlib \
212        install_python \
213        test_python \
214        list_all_installed
215
216test_lib_install_python_clean: test_lib_install_python \
217        uninstall_python \
218        delete_install \
219        check_clean_python \
220        check_distclean
221
222# build a python-aubio that includes libaubio
223test_python_only: force_uninstall_python deps_python \
224        clean_python clean distclean \
225        build_python \
226        install_python \
227        test_python \
228        list_installed_python
229
230test_python_only_clean: test_python_only \
231        uninstall_python \
232        check_clean_python
233
234sphinx: configure
235        $(WAFCMD) sphinx $(WAFOPTS)
236
237doxygen: configure
238        $(WAFCMD) doxygen $(WAFOPTS)
239
240manpages: configure
241        $(WAFCMD) manpages $(WAFOPTS)
242
243html: doxygen sphinx
244
245docs: html manpages
246
247dist: distclean expandwaf
248        $(WAFCMD) dist
Note: See TracBrowser for help on using the repository browser.