source: src/Makefile.am @ 0380645

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

src/Makefile.am: define subdirectories to install headers in

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