source: src/Makefile.am @ 32d6958

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

src/: more moving and splitting

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