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