- Timestamp:
- Dec 1, 2007, 3:57:09 PM (17 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
- Children:
- b63b322
- Parents:
- e7fb07e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Makefile.am
re7fb07e r554a9cb 4 4 fvec.h \ 5 5 cvec.h \ 6 mathutils.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 = \ 7 16 utils/hist.h \ 8 utils/scale.h \ 17 utils/scale.h 18 19 pkgincludetemporal_HEADERS = \ 9 20 temporal/resample.h \ 10 21 temporal/biquad.h \ 11 temporal/filter.h \ 22 temporal/filter.h 23 24 pkgincludespectral_HEADERS = \ 12 25 spectral/filterbank.h \ 13 spectral/mfcc. c\26 spectral/mfcc.h \ 14 27 spectral/phasevoc.h \ 15 28 spectral/fft.h \ 16 29 spectral/tss.h \ 17 spectral/spectral_centroid.h \ 30 spectral/spectral_centroid.h 31 32 pkgincludepitch_HEADERS = \ 18 33 pitch/pitchdetection.h \ 19 34 pitch/pitchmcomb.h \ … … 21 36 pitch/pitchschmitt.h \ 22 37 pitch/pitchfcomb.h \ 23 pitch/pitchyinfft.h \ 38 pitch/pitchyinfft.h 39 40 pkgincludeonset_HEADERS = \ 24 41 onset/onset.h \ 25 42 onset/onsetdetection.h \ 26 onset/peakpick.h \ 43 onset/peakpick.h 44 45 pkgincludetempo_HEADERS = \ 27 46 tempo/tempo.h \ 28 47 tempo/beattracking.h 29 48 30 nodist_pkginclude_HEADERS = config.h31 32 49 lib_LTLIBRARIES = libaubio.la 33 libaubio_la_SOURCES = aubio.h \ 34 types.h \ 35 fvec.c \ 36 fvec.h \ 50 libaubio_la_SOURCES = \ 51 fvec.c \ 37 52 cvec.c \ 38 cvec.h \39 53 mathutils.c \ 40 mathutils.h \41 54 utils/hist.c \ 42 utils/hist.h \43 55 utils/scale.c \ 44 utils/scale.h \45 56 temporal/resample.c \ 46 temporal/resample.h \47 57 temporal/biquad.c \ 48 temporal/biquad.h \49 58 temporal/filter.c \ 50 temporal/filter.h \51 59 spectral/filterbank.c \ 52 spectral/filterbank.h \53 spectral/mfcc.h \54 60 spectral/mfcc.c \ 55 61 spectral/phasevoc.c \ 56 spectral/phasevoc.h \57 62 spectral/fft.c \ 58 spectral/fft.h \59 63 spectral/tss.c \ 60 spectral/tss.h \61 64 spectral/spectral_centroid.c \ 62 spectral/spectral_centroid.h \63 65 pitch/pitchdetection.c \ 64 pitch/pitchdetection.h \65 66 pitch/pitchmcomb.c \ 66 pitch/pitchmcomb.h \67 67 pitch/pitchyin.c \ 68 pitch/pitchyin.h \69 68 pitch/pitchschmitt.c \ 70 pitch/pitchschmitt.h \71 69 pitch/pitchfcomb.c \ 72 pitch/pitchfcomb.h \73 70 pitch/pitchyinfft.c \ 74 pitch/pitchyinfft.h \75 71 onset/onset.c \ 76 onset/onset.h \77 72 onset/onsetdetection.c \ 78 onset/onsetdetection.h \79 73 onset/peakpick.c \ 80 onset/peakpick.h \81 74 tempo/tempo.c \ 82 tempo/tempo.h \ 83 tempo/beattracking.c \ 84 tempo/beattracking.h 75 tempo/beattracking.c 85 76 86 77 AM_CFLAGS = @AUBIO_CFLAGS@ @FFTWLIB_CFLAGS@ @SAMPLERATE_CFLAGS@
Note: See TracChangeset
for help on using the changeset viewer.