source: Makefile.am @ 4621cd6

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

interfaces/java: moved to java-aubio branch

  • Property mode set to 100644
File size: 1.1 KB
Line 
1if DOCBOOKFOUND
2DOC = doc
3endif
4
5if SWIGFOUND
6SWIGDIR = swig
7if PYTHONFOUND
8PYTHONDIR = python
9endif
10endif
11
12
13SUBDIRS = src examples sounds $(PYTHONDIR) $(SWIGDIR) $(DOC) tests
14EXTRA_DIST = bootstrap VERSION
15
16docs:
17        cd doc && make update-docs && cd ..
18
19doc-devel:
20        cd doc && make doc-devel && cd ..
21
22doc-user:
23        cd doc && make doc-user && cd ..
24
25doc-examples:
26        cd doc && make doc-examples && cd ..
27
28install-pkgconfig:
29        $(mkinstalldirs) "$(DESTDIR)$(libdir)/pkgconfig"
30        $(INSTALL_DATA) aubio.pc "$(DESTDIR)$(libdir)/pkgconfig/aubio.pc"
31
32uninstall-pkgconfig:
33        $(RM) "$(DESTDIR)$(libdir)/pkgconfig/aubio.pc"
34        -rmdir "$(DESTDIR)$(libdir)/pkgconfig"
35
36install-data-hook: install-pkgconfig
37uninstall-hook: uninstall-pkgconfig
38
39lcov: all
40        mkdir -p $(top_builddir)/lcov
41        lcov --directory $(top_builddir) --output-file $(top_builddir)/lcov/aubio.info --compat-libtool --zerocounters
42        cd tests/python && ./run_all_tests -v || echo "some tests failed"
43        lcov --directory $(top_builddir) --output-file $(top_builddir)/lcov/aubio.info --compat-libtool --capture
44        genhtml --output-directory $(top_builddir)/lcov $(top_builddir)/lcov/aubio.info
Note: See TracBrowser for help on using the repository browser.