source: src/Makefile.am @ fc6c831

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

moved spectral_centroid to new file

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