source: src/Makefile.am @ 651cac8

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

add lvec object to store double precision vectors

  • Property mode set to 100644
File size: 1.9 KB
Line 
1noinst_HEADERS = \
2        aubio_priv.h \
3        temporal/filter_priv.h
4
5pkginclude_HEADERS = aubio.h \
6        types.h \
7        fvec.h \
8        lvec.h \
9        cvec.h \
10        mathutils.h
11
12pkgincludeutilsdir = $(pkgincludedir)/utils
13pkgincludetemporaldir = $(pkgincludedir)/temporal
14pkgincludespectraldir = $(pkgincludedir)/spectral
15pkgincludepitchdir = $(pkgincludedir)/pitch
16pkgincludeonsetdir = $(pkgincludedir)/onset
17pkgincludetempodir = $(pkgincludedir)/tempo
18
19pkgincludeutils_HEADERS = \
20        utils/hist.h \
21        utils/scale.h
22
23pkgincludetemporal_HEADERS = \
24        temporal/resample.h \
25        temporal/biquad.h \
26        temporal/filter.h \
27        temporal/adesign.h \
28        temporal/cdesign.h
29
30pkgincludespectral_HEADERS = \
31        spectral/filterbank.h \
32        spectral/mfcc.h \
33        spectral/phasevoc.h \
34        spectral/fft.h \
35        spectral/tss.h \
36        spectral/spectral_centroid.h
37
38pkgincludepitch_HEADERS = \
39        pitch/pitchdetection.h \
40        pitch/pitchmcomb.h \
41        pitch/pitchyin.h \
42        pitch/pitchschmitt.h \
43        pitch/pitchfcomb.h \
44        pitch/pitchyinfft.h
45
46pkgincludeonset_HEADERS =       \
47        onset/onset.h \
48        onset/onsetdetection.h \
49        onset/peakpick.h
50
51pkgincludetempo_HEADERS =       \
52        tempo/tempo.h \
53        tempo/beattracking.h
54
55lib_LTLIBRARIES = libaubio.la
56libaubio_la_SOURCES = \
57        fvec.c \
58        lvec.c \
59        cvec.c \
60        mathutils.c \
61        utils/hist.c \
62        utils/scale.c \
63        temporal/resample.c \
64        temporal/biquad.c \
65        temporal/filter.c \
66        temporal/adesign.c \
67        temporal/cdesign.c \
68        spectral/filterbank.c \
69        spectral/mfcc.c \
70        spectral/phasevoc.c \
71        spectral/fft.c \
72        spectral/tss.c \
73        spectral/spectral_centroid.c \
74        pitch/pitchdetection.c \
75        pitch/pitchmcomb.c \
76        pitch/pitchyin.c \
77        pitch/pitchschmitt.c \
78        pitch/pitchfcomb.c \
79        pitch/pitchyinfft.c \
80        onset/onset.c \
81        onset/onsetdetection.c \
82        onset/peakpick.c \
83        tempo/tempo.c \
84        tempo/beattracking.c
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.