source: src/Makefile.am @ bcf38fe

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

src/: move tempo files to src/tempo, continue moving pitch and onset files

  • Property mode set to 100644
File size: 1.5 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        tss.h \
14        biquad.h \
15        pitch/pitchdetection.h \
16        pitch/pitchmcomb.h \
17        pitch/pitchyin.h \
18        pitch/pitchschmitt.h \
19        pitch/pitchfcomb.h \
20        pitch/pitchyinfft.h \
21        onset/onset.h \
22        onset/onsetdetection.h \
23        onset/peakpick.h \
24        tempo/tempo.h \
25        tempo/beattracking.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        tss.c \
52        tss.h \
53        biquad.c \
54        biquad.h \
55        pitch/pitchdetection.c \
56        pitch/pitchdetection.h \
57        pitch/pitchmcomb.c \
58        pitch/pitchmcomb.h \
59        pitch/pitchyin.c \
60        pitch/pitchyin.h \
61        pitch/pitchschmitt.c \
62        pitch/pitchschmitt.h \
63        pitch/pitchfcomb.c \
64        pitch/pitchfcomb.h \
65        pitch/pitchyinfft.c \
66        pitch/pitchyinfft.h \
67        onset/onset.c \
68        onset/onset.h \
69        onset/onsetdetection.c \
70        onset/onsetdetection.h \
71        onset/peakpick.c \
72        onset/peakpick.h \
73        tempo/tempo.c \
74        tempo/tempo.h \
75        tempo/beattracking.c \
76        tempo/beattracking.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.