Ignore:
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 
     1noinst_HEADERS = aubio_priv.h
    52pkginclude_HEADERS = aubio.h \
    63        types.h \
    74        fvec.h \
    8         lvec.h \
    95        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 \
    207        utils/hist.h \
    21         utils/scale.h
    22 
    23 pkgincludetemporal_HEADERS = \
     8        utils/scale.h \
    249        temporal/resample.h \
    2510        temporal/biquad.h \
    2611        temporal/filter.h \
    27         temporal/adesign.h \
    28         temporal/cdesign.h
    29 
    30 pkgincludespectral_HEADERS = \
    3112        spectral/filterbank.h \
    32         spectral/mfcc.h \
     13        spectral/mfcc.c \
    3314        spectral/phasevoc.h \
    3415        spectral/fft.h \
    3516        spectral/tss.h \
    36         spectral/spectral_centroid.h
    37 
    38 pkgincludepitch_HEADERS = \
     17        spectral/spectral_centroid.h \
    3918        pitch/pitchdetection.h \
    4019        pitch/pitchmcomb.h \
     
    4221        pitch/pitchschmitt.h \
    4322        pitch/pitchfcomb.h \
    44         pitch/pitchyinfft.h
    45 
    46 pkgincludeonset_HEADERS =       \
     23        pitch/pitchyinfft.h \
    4724        onset/onset.h \
    4825        onset/onsetdetection.h \
    49         onset/peakpick.h
    50 
    51 pkgincludetempo_HEADERS =       \
     26        onset/peakpick.h \
    5227        tempo/tempo.h \
    5328        tempo/beattracking.h
    5429
     30nodist_pkginclude_HEADERS = config.h
     31
    5532lib_LTLIBRARIES = libaubio.la
    56 libaubio_la_SOURCES = \
     33libaubio_la_SOURCES = aubio.h \
     34        types.h \
    5735        fvec.c \
    58         lvec.c \
     36        fvec.h \
    5937        cvec.c \
     38        cvec.h \
    6039        mathutils.c \
     40        mathutils.h \
    6141        utils/hist.c \
     42        utils/hist.h \
    6243        utils/scale.c \
     44        utils/scale.h \
    6345        temporal/resample.c \
     46        temporal/resample.h \
    6447        temporal/biquad.c \
     48        temporal/biquad.h \
    6549        temporal/filter.c \
    66         temporal/adesign.c \
    67         temporal/cdesign.c \
     50        temporal/filter.h \
    6851        spectral/filterbank.c \
     52        spectral/filterbank.h \
     53        spectral/mfcc.h \
    6954        spectral/mfcc.c \
    7055        spectral/phasevoc.c \
     56        spectral/phasevoc.h \
    7157        spectral/fft.c \
     58        spectral/fft.h \
    7259        spectral/tss.c \
     60        spectral/tss.h \
    7361        spectral/spectral_centroid.c \
     62        spectral/spectral_centroid.h \
    7463        pitch/pitchdetection.c \
     64        pitch/pitchdetection.h \
    7565        pitch/pitchmcomb.c \
     66        pitch/pitchmcomb.h \
    7667        pitch/pitchyin.c \
     68        pitch/pitchyin.h \
    7769        pitch/pitchschmitt.c \
     70        pitch/pitchschmitt.h \
    7871        pitch/pitchfcomb.c \
     72        pitch/pitchfcomb.h \
    7973        pitch/pitchyinfft.c \
     74        pitch/pitchyinfft.h \
    8075        onset/onset.c \
     76        onset/onset.h \
    8177        onset/onsetdetection.c \
     78        onset/onsetdetection.h \
    8279        onset/peakpick.c \
     80        onset/peakpick.h \
    8381        tempo/tempo.c \
    84         tempo/beattracking.c
     82        tempo/tempo.h \
     83        tempo/beattracking.c \
     84        tempo/beattracking.h
    8585
    8686AM_CFLAGS = @AUBIO_CFLAGS@ @FFTWLIB_CFLAGS@ @SAMPLERATE_CFLAGS@
Note: See TracChangeset for help on using the changeset viewer.