ref: b63b3226985a6eb2d0a48e693f209f22e7067118
parent: 55e9018db39f3f8719cdf3fd3deff5e85c0e7ac5
parent: 554a9cb640b0a69fdb8942b7f69cf01ec33f1563
author: Paul Brossier <piem@piem.org>
date: Sat Dec 1 11:00:37 EST 2007
src/Makefile.am: define subdirectories to install headers in
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -3,85 +3,76 @@
types.h \
fvec.h \
cvec.h \
- mathutils.h \
+ mathutils.h
+
+pkgincludeutilsdir = $(pkgincludedir)/utils
+pkgincludetemporaldir = $(pkgincludedir)/temporal
+pkgincludespectraldir = $(pkgincludedir)/spectral
+pkgincludepitchdir = $(pkgincludedir)/pitch
+pkgincludeonsetdir = $(pkgincludedir)/onset
+pkgincludetempodir = $(pkgincludedir)/tempo
+
+pkgincludeutils_HEADERS = \
utils/hist.h \
- utils/scale.h \
+ utils/scale.h
+
+pkgincludetemporal_HEADERS = \
temporal/resample.h \
temporal/biquad.h \
- temporal/filter.h \
+ temporal/filter.h
+
+pkgincludespectral_HEADERS = \
spectral/filterbank.h \
- spectral/mfcc.c \
+ spectral/mfcc.h \
spectral/phasevoc.h \
spectral/fft.h \
spectral/tss.h \
- spectral/spectral_centroid.h \
+ spectral/spectral_centroid.h
+
+pkgincludepitch_HEADERS = \
pitch/pitchdetection.h \
pitch/pitchmcomb.h \
pitch/pitchyin.h \
pitch/pitchschmitt.h \
pitch/pitchfcomb.h \
- pitch/pitchyinfft.h \
+ pitch/pitchyinfft.h
+
+pkgincludeonset_HEADERS = \
onset/onset.h \
onset/onsetdetection.h \
- onset/peakpick.h \
+ onset/peakpick.h
+
+pkgincludetempo_HEADERS = \
tempo/tempo.h \
tempo/beattracking.h
-nodist_pkginclude_HEADERS = config.h
-
lib_LTLIBRARIES = libaubio.la
-libaubio_la_SOURCES = aubio.h \
- types.h \
- fvec.c \
- fvec.h \
+libaubio_la_SOURCES = \
+ fvec.c \
cvec.c \
- cvec.h \
mathutils.c \
- mathutils.h \
utils/hist.c \
- utils/hist.h \
utils/scale.c \
- utils/scale.h \
temporal/resample.c \
- temporal/resample.h \
temporal/biquad.c \
- temporal/biquad.h \
temporal/filter.c \
- temporal/filter.h \
spectral/filterbank.c \
- spectral/filterbank.h \
- spectral/mfcc.h \
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/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@