source:
src/Makefile.am
@
b061ef8
Last change on this file since b061ef8 was 4f4d892, checked in by , 17 years ago | |
---|---|
|
|
File size: 1.9 KB |
Rev | Line | |
---|---|---|
[4f4d892] | 1 | noinst_HEADERS = \ |
2 | aubio_priv.h \ | |
3 | temporal/filter_priv.h | |
4 | ||
[96fb8ad] | 5 | pkginclude_HEADERS = aubio.h \ |
6 | types.h \ | |
[d1ec8cb] | 7 | fvec.h \ |
8 | cvec.h \ | |
[554a9cb] | 9 | mathutils.h |
10 | ||
11 | pkgincludeutilsdir = $(pkgincludedir)/utils | |
12 | pkgincludetemporaldir = $(pkgincludedir)/temporal | |
13 | pkgincludespectraldir = $(pkgincludedir)/spectral | |
14 | pkgincludepitchdir = $(pkgincludedir)/pitch | |
15 | pkgincludeonsetdir = $(pkgincludedir)/onset | |
16 | pkgincludetempodir = $(pkgincludedir)/tempo | |
17 | ||
18 | pkgincludeutils_HEADERS = \ | |
[32d6958] | 19 | utils/hist.h \ |
[554a9cb] | 20 | utils/scale.h |
21 | ||
22 | pkgincludetemporal_HEADERS = \ | |
[32d6958] | 23 | temporal/resample.h \ |
24 | temporal/biquad.h \ | |
[4f4d892] | 25 | temporal/filter.h \ |
26 | temporal/adesign.h \ | |
27 | temporal/cdesign.h | |
[554a9cb] | 28 | |
29 | pkgincludespectral_HEADERS = \ | |
[32d6958] | 30 | spectral/filterbank.h \ |
[554a9cb] | 31 | spectral/mfcc.h \ |
[32d6958] | 32 | spectral/phasevoc.h \ |
33 | spectral/fft.h \ | |
34 | spectral/tss.h \ | |
[554a9cb] | 35 | spectral/spectral_centroid.h |
36 | ||
37 | pkgincludepitch_HEADERS = \ | |
[bcf38fe] | 38 | pitch/pitchdetection.h \ |
[2d8cffa] | 39 | pitch/pitchmcomb.h \ |
40 | pitch/pitchyin.h \ | |
41 | pitch/pitchschmitt.h \ | |
42 | pitch/pitchfcomb.h \ | |
[554a9cb] | 43 | pitch/pitchyinfft.h |
44 | ||
45 | pkgincludeonset_HEADERS = \ | |
[bcf38fe] | 46 | onset/onset.h \ |
47 | onset/onsetdetection.h \ | |
[554a9cb] | 48 | onset/peakpick.h |
49 | ||
50 | pkgincludetempo_HEADERS = \ | |
[bcf38fe] | 51 | tempo/tempo.h \ |
[32d6958] | 52 | tempo/beattracking.h |
[71d3bf0] | 53 | |
[96fb8ad] | 54 | lib_LTLIBRARIES = libaubio.la |
[554a9cb] | 55 | libaubio_la_SOURCES = \ |
56 | fvec.c \ | |
[d1ec8cb] | 57 | cvec.c \ |
[32d6958] | 58 | mathutils.c \ |
59 | utils/hist.c \ | |
60 | utils/scale.c \ | |
61 | temporal/resample.c \ | |
62 | temporal/biquad.c \ | |
63 | temporal/filter.c \ | |
[4f4d892] | 64 | temporal/adesign.c \ |
65 | temporal/cdesign.c \ | |
[32d6958] | 66 | spectral/filterbank.c \ |
67 | spectral/mfcc.c \ | |
68 | spectral/phasevoc.c \ | |
69 | spectral/fft.c \ | |
70 | spectral/tss.c \ | |
[fc6c831] | 71 | spectral/spectral_centroid.c \ |
[bcf38fe] | 72 | pitch/pitchdetection.c \ |
[2d8cffa] | 73 | pitch/pitchmcomb.c \ |
74 | pitch/pitchyin.c \ | |
75 | pitch/pitchschmitt.c \ | |
76 | pitch/pitchfcomb.c \ | |
77 | pitch/pitchyinfft.c \ | |
[bcf38fe] | 78 | onset/onset.c \ |
79 | onset/onsetdetection.c \ | |
80 | onset/peakpick.c \ | |
81 | tempo/tempo.c \ | |
[554a9cb] | 82 | tempo/beattracking.c |
[96fb8ad] | 83 | |
[17db1cd] | 84 | AM_CFLAGS = @AUBIO_CFLAGS@ @FFTWLIB_CFLAGS@ @SAMPLERATE_CFLAGS@ |
[205da86] | 85 | libaubio_la_LIBADD = @FFTWLIB_LIBS@ @SAMPLERATE_LIBS@ @LTLIBOBJS@ |
[9fc2c7e] | 86 | libaubio_la_LDFLAGS = -version-info @SHARED_VERSION_INFO@ |
Note: See TracBrowser
for help on using the repository browser.