Changes in / [b63b322:55e9018]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Makefile.am
rb63b322 r55e9018 4 4 fvec.h \ 5 5 cvec.h \ 6 mathutils.h 7 8 pkgincludeutilsdir = $(pkgincludedir)/utils 9 pkgincludetemporaldir = $(pkgincludedir)/temporal 10 pkgincludespectraldir = $(pkgincludedir)/spectral 11 pkgincludepitchdir = $(pkgincludedir)/pitch 12 pkgincludeonsetdir = $(pkgincludedir)/onset 13 pkgincludetempodir = $(pkgincludedir)/tempo 14 15 pkgincludeutils_HEADERS = \ 6 mathutils.h \ 16 7 utils/hist.h \ 17 utils/scale.h 18 19 pkgincludetemporal_HEADERS = \ 8 utils/scale.h \ 20 9 temporal/resample.h \ 21 10 temporal/biquad.h \ 22 temporal/filter.h 23 24 pkgincludespectral_HEADERS = \ 11 temporal/filter.h \ 25 12 spectral/filterbank.h \ 26 spectral/mfcc. h\13 spectral/mfcc.c \ 27 14 spectral/phasevoc.h \ 28 15 spectral/fft.h \ 29 16 spectral/tss.h \ 30 spectral/spectral_centroid.h 31 32 pkgincludepitch_HEADERS = \ 17 spectral/spectral_centroid.h \ 33 18 pitch/pitchdetection.h \ 34 19 pitch/pitchmcomb.h \ … … 36 21 pitch/pitchschmitt.h \ 37 22 pitch/pitchfcomb.h \ 38 pitch/pitchyinfft.h 39 40 pkgincludeonset_HEADERS = \ 23 pitch/pitchyinfft.h \ 41 24 onset/onset.h \ 42 25 onset/onsetdetection.h \ 43 onset/peakpick.h 44 45 pkgincludetempo_HEADERS = \ 26 onset/peakpick.h \ 46 27 tempo/tempo.h \ 47 28 tempo/beattracking.h 48 29 30 nodist_pkginclude_HEADERS = config.h 31 49 32 lib_LTLIBRARIES = libaubio.la 50 libaubio_la_SOURCES = \ 51 fvec.c \ 33 libaubio_la_SOURCES = aubio.h \ 34 types.h \ 35 fvec.c \ 36 fvec.h \ 52 37 cvec.c \ 38 cvec.h \ 53 39 mathutils.c \ 40 mathutils.h \ 54 41 utils/hist.c \ 42 utils/hist.h \ 55 43 utils/scale.c \ 44 utils/scale.h \ 56 45 temporal/resample.c \ 46 temporal/resample.h \ 57 47 temporal/biquad.c \ 48 temporal/biquad.h \ 58 49 temporal/filter.c \ 50 temporal/filter.h \ 59 51 spectral/filterbank.c \ 52 spectral/filterbank.h \ 53 spectral/mfcc.h \ 60 54 spectral/mfcc.c \ 61 55 spectral/phasevoc.c \ 56 spectral/phasevoc.h \ 62 57 spectral/fft.c \ 58 spectral/fft.h \ 63 59 spectral/tss.c \ 60 spectral/tss.h \ 64 61 spectral/spectral_centroid.c \ 62 spectral/spectral_centroid.h \ 65 63 pitch/pitchdetection.c \ 64 pitch/pitchdetection.h \ 66 65 pitch/pitchmcomb.c \ 66 pitch/pitchmcomb.h \ 67 67 pitch/pitchyin.c \ 68 pitch/pitchyin.h \ 68 69 pitch/pitchschmitt.c \ 70 pitch/pitchschmitt.h \ 69 71 pitch/pitchfcomb.c \ 72 pitch/pitchfcomb.h \ 70 73 pitch/pitchyinfft.c \ 74 pitch/pitchyinfft.h \ 71 75 onset/onset.c \ 76 onset/onset.h \ 72 77 onset/onsetdetection.c \ 78 onset/onsetdetection.h \ 73 79 onset/peakpick.c \ 80 onset/peakpick.h \ 74 81 tempo/tempo.c \ 75 tempo/beattracking.c 82 tempo/tempo.h \ 83 tempo/beattracking.c \ 84 tempo/beattracking.h 76 85 77 86 AM_CFLAGS = @AUBIO_CFLAGS@ @FFTWLIB_CFLAGS@ @SAMPLERATE_CFLAGS@
Note: See TracChangeset
for help on using the changeset viewer.