source: src/Makefile.am @ 7873363

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

merge with aubio-mfcc branch, adding filterbank and mfcc first draft. thank you Amaury

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