Changes in / [55e9018:b63b322]


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Makefile.am

    r55e9018 rb63b322  
    44        fvec.h \
    55        cvec.h \
    6         mathutils.h \
     6        mathutils.h
     7
     8pkgincludeutilsdir = $(pkgincludedir)/utils
     9pkgincludetemporaldir = $(pkgincludedir)/temporal
     10pkgincludespectraldir = $(pkgincludedir)/spectral
     11pkgincludepitchdir = $(pkgincludedir)/pitch
     12pkgincludeonsetdir = $(pkgincludedir)/onset
     13pkgincludetempodir = $(pkgincludedir)/tempo
     14
     15pkgincludeutils_HEADERS = \
    716        utils/hist.h \
    8         utils/scale.h \
     17        utils/scale.h
     18
     19pkgincludetemporal_HEADERS = \
    920        temporal/resample.h \
    1021        temporal/biquad.h \
    11         temporal/filter.h \
     22        temporal/filter.h
     23
     24pkgincludespectral_HEADERS = \
    1225        spectral/filterbank.h \
    13         spectral/mfcc.c \
     26        spectral/mfcc.h \
    1427        spectral/phasevoc.h \
    1528        spectral/fft.h \
    1629        spectral/tss.h \
    17         spectral/spectral_centroid.h \
     30        spectral/spectral_centroid.h
     31
     32pkgincludepitch_HEADERS = \
    1833        pitch/pitchdetection.h \
    1934        pitch/pitchmcomb.h \
     
    2136        pitch/pitchschmitt.h \
    2237        pitch/pitchfcomb.h \
    23         pitch/pitchyinfft.h \
     38        pitch/pitchyinfft.h
     39
     40pkgincludeonset_HEADERS =       \
    2441        onset/onset.h \
    2542        onset/onsetdetection.h \
    26         onset/peakpick.h \
     43        onset/peakpick.h
     44
     45pkgincludetempo_HEADERS =       \
    2746        tempo/tempo.h \
    2847        tempo/beattracking.h
    2948
    30 nodist_pkginclude_HEADERS = config.h
    31 
    3249lib_LTLIBRARIES = libaubio.la
    33 libaubio_la_SOURCES = aubio.h \
    34         types.h \
    35         fvec.c \
    36         fvec.h \
     50libaubio_la_SOURCES = \
     51  fvec.c \
    3752        cvec.c \
    38         cvec.h \
    3953        mathutils.c \
    40         mathutils.h \
    4154        utils/hist.c \
    42         utils/hist.h \
    4355        utils/scale.c \
    44         utils/scale.h \
    4556        temporal/resample.c \
    46         temporal/resample.h \
    4757        temporal/biquad.c \
    48         temporal/biquad.h \
    4958        temporal/filter.c \
    50         temporal/filter.h \
    5159        spectral/filterbank.c \
    52         spectral/filterbank.h \
    53         spectral/mfcc.h \
    5460        spectral/mfcc.c \
    5561        spectral/phasevoc.c \
    56         spectral/phasevoc.h \
    5762        spectral/fft.c \
    58         spectral/fft.h \
    5963        spectral/tss.c \
    60         spectral/tss.h \
    6164        spectral/spectral_centroid.c \
    62         spectral/spectral_centroid.h \
    6365        pitch/pitchdetection.c \
    64         pitch/pitchdetection.h \
    6566        pitch/pitchmcomb.c \
    66         pitch/pitchmcomb.h \
    6767        pitch/pitchyin.c \
    68         pitch/pitchyin.h \
    6968        pitch/pitchschmitt.c \
    70         pitch/pitchschmitt.h \
    7169        pitch/pitchfcomb.c \
    72         pitch/pitchfcomb.h \
    7370        pitch/pitchyinfft.c \
    74         pitch/pitchyinfft.h \
    7571        onset/onset.c \
    76         onset/onset.h \
    7772        onset/onsetdetection.c \
    78         onset/onsetdetection.h \
    7973        onset/peakpick.c \
    80         onset/peakpick.h \
    8174        tempo/tempo.c \
    82         tempo/tempo.h \
    83         tempo/beattracking.c \
    84         tempo/beattracking.h
     75        tempo/beattracking.c
    8576
    8677AM_CFLAGS = @AUBIO_CFLAGS@ @FFTWLIB_CFLAGS@ @SAMPLERATE_CFLAGS@
Note: See TracChangeset for help on using the changeset viewer.