source: src/Makefile.am @ 7abfc82

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

src/Makefile.am: use nobase_ to simplify headers installation

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