Changes in / [b63b322:55e9018]


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Makefile.am

    rb63b322 r55e9018  
    44        fvec.h \
    55        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 \
    167        utils/hist.h \
    17         utils/scale.h
    18 
    19 pkgincludetemporal_HEADERS = \
     8        utils/scale.h \
    209        temporal/resample.h \
    2110        temporal/biquad.h \
    22         temporal/filter.h
    23 
    24 pkgincludespectral_HEADERS = \
     11        temporal/filter.h \
    2512        spectral/filterbank.h \
    26         spectral/mfcc.h \
     13        spectral/mfcc.c \
    2714        spectral/phasevoc.h \
    2815        spectral/fft.h \
    2916        spectral/tss.h \
    30         spectral/spectral_centroid.h
    31 
    32 pkgincludepitch_HEADERS = \
     17        spectral/spectral_centroid.h \
    3318        pitch/pitchdetection.h \
    3419        pitch/pitchmcomb.h \
     
    3621        pitch/pitchschmitt.h \
    3722        pitch/pitchfcomb.h \
    38         pitch/pitchyinfft.h
    39 
    40 pkgincludeonset_HEADERS =       \
     23        pitch/pitchyinfft.h \
    4124        onset/onset.h \
    4225        onset/onsetdetection.h \
    43         onset/peakpick.h
    44 
    45 pkgincludetempo_HEADERS =       \
     26        onset/peakpick.h \
    4627        tempo/tempo.h \
    4728        tempo/beattracking.h
    4829
     30nodist_pkginclude_HEADERS = config.h
     31
    4932lib_LTLIBRARIES = libaubio.la
    50 libaubio_la_SOURCES = \
    51   fvec.c \
     33libaubio_la_SOURCES = aubio.h \
     34        types.h \
     35        fvec.c \
     36        fvec.h \
    5237        cvec.c \
     38        cvec.h \
    5339        mathutils.c \
     40        mathutils.h \
    5441        utils/hist.c \
     42        utils/hist.h \
    5543        utils/scale.c \
     44        utils/scale.h \
    5645        temporal/resample.c \
     46        temporal/resample.h \
    5747        temporal/biquad.c \
     48        temporal/biquad.h \
    5849        temporal/filter.c \
     50        temporal/filter.h \
    5951        spectral/filterbank.c \
     52        spectral/filterbank.h \
     53        spectral/mfcc.h \
    6054        spectral/mfcc.c \
    6155        spectral/phasevoc.c \
     56        spectral/phasevoc.h \
    6257        spectral/fft.c \
     58        spectral/fft.h \
    6359        spectral/tss.c \
     60        spectral/tss.h \
    6461        spectral/spectral_centroid.c \
     62        spectral/spectral_centroid.h \
    6563        pitch/pitchdetection.c \
     64        pitch/pitchdetection.h \
    6665        pitch/pitchmcomb.c \
     66        pitch/pitchmcomb.h \
    6767        pitch/pitchyin.c \
     68        pitch/pitchyin.h \
    6869        pitch/pitchschmitt.c \
     70        pitch/pitchschmitt.h \
    6971        pitch/pitchfcomb.c \
     72        pitch/pitchfcomb.h \
    7073        pitch/pitchyinfft.c \
     74        pitch/pitchyinfft.h \
    7175        onset/onset.c \
     76        onset/onset.h \
    7277        onset/onsetdetection.c \
     78        onset/onsetdetection.h \
    7379        onset/peakpick.c \
     80        onset/peakpick.h \
    7481        tempo/tempo.c \
    75         tempo/beattracking.c
     82        tempo/tempo.h \
     83        tempo/beattracking.c \
     84        tempo/beattracking.h
    7685
    7786AM_CFLAGS = @AUBIO_CFLAGS@ @FFTWLIB_CFLAGS@ @SAMPLERATE_CFLAGS@
Note: See TracChangeset for help on using the changeset viewer.