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