source: src/Makefile.am @ 349e455

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

src/spectral/: added statistics.c, containing some cuidado spectral shape descriptors

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