src/spectral/specdesc.{c,h}: rename aubio_onsetdetection to aubio_specdesc
[aubio.git] / src / Makefile.am
index 1431d8cdf320c5c392208ada79fc92cbc3465346..931557e59d36e9fb53b9f313741c5abde450cb86 100644 (file)
@@ -1,28 +1,36 @@
-noinst_HEADERS = aubio_priv.h
-pkginclude_HEADERS = aubio.h \
+noinst_HEADERS = \
+       aubio_priv.h
+
+nobase_pkginclude_HEADERS = \
+       aubio.h \
        types.h \
        fvec.h \
+       lvec.h \
        cvec.h \
        mathutils.h \
+       vecutils.h \
        utils/hist.h \
        utils/scale.h \
-       temporal/resample.h \
+       temporal/resampler.h \
        temporal/biquad.h \
        temporal/filter.h \
+       temporal/a_weighting.h \
+       temporal/c_weighting.h \
        spectral/filterbank.h \
-       spectral/mfcc.c \
+       spectral/filterbank_mel.h \
+       spectral/mfcc.h \
        spectral/phasevoc.h \
        spectral/fft.h \
        spectral/tss.h \
+       spectral/specdesc.h \
        spectral/spectral_centroid.h \
-       pitch/pitchdetection.h \
+       pitch/pitch.h \
        pitch/pitchmcomb.h \
        pitch/pitchyin.h \
        pitch/pitchschmitt.h \
        pitch/pitchfcomb.h \
        pitch/pitchyinfft.h \
        onset/onset.h \
-       onset/onsetdetection.h \
        onset/peakpick.h \
        tempo/tempo.h \
        tempo/beattracking.h
@@ -30,58 +38,37 @@ pkginclude_HEADERS = aubio.h \
 nodist_pkginclude_HEADERS = config.h
 
 lib_LTLIBRARIES = libaubio.la 
-libaubio_la_SOURCES = aubio.h \
-       types.h \
+libaubio_la_SOURCES = \
        fvec.c \
-       fvec.h \
+       lvec.c \
        cvec.c \
-       cvec.h \
        mathutils.c \
-       mathutils.h \
+       vecutils.c \
        utils/hist.c \
-       utils/hist.h \
        utils/scale.c \
-       utils/scale.h \
-       temporal/resample.c \
-       temporal/resample.h \
+       temporal/resampler.c \
        temporal/biquad.c \
-       temporal/biquad.h \
        temporal/filter.c \
-       temporal/filter.h \
+       temporal/a_weighting.c \
+       temporal/c_weighting.c \
        spectral/filterbank.c \
-       spectral/filterbank.h \
-       spectral/mfcc.h \
+       spectral/filterbank_mel.c \
        spectral/mfcc.c \
        spectral/phasevoc.c \
-       spectral/phasevoc.h \
        spectral/fft.c \
-       spectral/fft.h \
        spectral/tss.c \
-       spectral/tss.h \
        spectral/spectral_centroid.c \
-       spectral/spectral_centroid.h \
-       pitch/pitchdetection.c \
-       pitch/pitchdetection.h \
+       pitch/pitch.c \
        pitch/pitchmcomb.c \
-       pitch/pitchmcomb.h \
        pitch/pitchyin.c \
-       pitch/pitchyin.h \
        pitch/pitchschmitt.c \
-       pitch/pitchschmitt.h \
        pitch/pitchfcomb.c \
-       pitch/pitchfcomb.h \
        pitch/pitchyinfft.c \
-       pitch/pitchyinfft.h \
        onset/onset.c \
-       onset/onset.h \
        onset/onsetdetection.c \
-       onset/onsetdetection.h \
        onset/peakpick.c \
-       onset/peakpick.h \
        tempo/tempo.c \
-       tempo/tempo.h \
-       tempo/beattracking.c \
-       tempo/beattracking.h
+       tempo/beattracking.c
 
 AM_CFLAGS = @AUBIO_CFLAGS@ @FFTWLIB_CFLAGS@ @SAMPLERATE_CFLAGS@
 libaubio_la_LIBADD = @FFTWLIB_LIBS@ @SAMPLERATE_LIBS@ @LTLIBOBJS@