source: src/Makefile.am @ d9c45df

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

src/vecutils.{c,h}: add a bunch of function to modify fvec and cvec, defined with some magic macros

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