source: src/Makefile.am @ 729a3c0

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

add support for ooura so that aubio can be build without fftw

  • Property mode set to 100644
File size: 1.6 KB
Line 
1noinst_HEADERS = \
2        aubio_priv.h
3
4nobase_pkginclude_HEADERS = \
5        aubio.h \
6        types.h \
7        fvec.h \
8        fmat.h \
9        lvec.h \
10        cvec.h \
11        musicutils.h \
12        mathutils.h \
13        vecutils.h \
14        utils/hist.h \
15        utils/scale.h \
16        temporal/resampler.h \
17        temporal/biquad.h \
18        temporal/filter.h \
19        temporal/a_weighting.h \
20        temporal/c_weighting.h \
21        spectral/filterbank.h \
22        spectral/filterbank_mel.h \
23        spectral/mfcc.h \
24        spectral/phasevoc.h \
25        spectral/fft.h \
26        spectral/tss.h \
27        spectral/specdesc.h \
28        pitch/pitch.h \
29        pitch/pitchmcomb.h \
30        pitch/pitchyin.h \
31        pitch/pitchschmitt.h \
32        pitch/pitchfcomb.h \
33        pitch/pitchyinfft.h \
34        onset/onset.h \
35        onset/peakpicker.h \
36        tempo/tempo.h \
37        tempo/beattracking.h
38
39nodist_noinst_HEADERS = config.h
40
41lib_LTLIBRARIES = libaubio.la
42libaubio_la_SOURCES = \
43        fvec.c \
44        fmat.c \
45        lvec.c \
46        cvec.c \
47        mathutils.c \
48        vecutils.c \
49        utils/hist.c \
50        utils/scale.c \
51        temporal/resampler.c \
52        temporal/biquad.c \
53        temporal/filter.c \
54        temporal/a_weighting.c \
55        temporal/c_weighting.c \
56        spectral/filterbank.c \
57        spectral/filterbank_mel.c \
58        spectral/mfcc.c \
59        spectral/phasevoc.c \
60        spectral/fft.c \
61        spectral/ooura_fft8g.c \
62        spectral/tss.c \
63        spectral/specdesc.c \
64        spectral/statistics.c \
65        pitch/pitch.c \
66        pitch/pitchmcomb.c \
67        pitch/pitchyin.c \
68        pitch/pitchschmitt.c \
69        pitch/pitchfcomb.c \
70        pitch/pitchyinfft.c \
71        onset/onset.c \
72        onset/peakpicker.c \
73        tempo/tempo.c \
74        tempo/beattracking.c
75
76AM_CFLAGS = @AUBIO_CFLAGS@ @FFTWLIB_CFLAGS@ @SAMPLERATE_CFLAGS@
77libaubio_la_LIBADD = @FFTWLIB_LIBS@ @SAMPLERATE_LIBS@ @LTLIBOBJS@
78libaubio_la_LDFLAGS = -version-info @SHARED_VERSION_INFO@
Note: See TracBrowser for help on using the repository browser.