Changeset 740f06b for python


Ignore:
Timestamp:
Oct 17, 2009, 12:43:00 AM (15 years ago)
Author:
Paul Brossier <piem@piem.org>
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:
858cfa7
Parents:
6107f4c
Message:

ext/, examples/, swig/, python/, tests/: remove libaubioext, make libsamplerate optional

Location:
python/aubio
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • python/aubio/Makefile.am

    r6107f4c r740f06b  
    4545        -Wno-strict-aliasing
    4646
    47 AM_CFLAGS = @AUBIO_CFLAGS@ $(NOWARN_CFLAGS) $(SWCFLAGS) \
    48         -I$(top_builddir)/src -I$(top_srcdir)/src -I$(top_srcdir)/ext \
     47AM_CFLAGS = @AUBIO_CFLAGS@ @SNDFILE_CFLAGS@ \
     48        $(NOWARN_CFLAGS) $(SWCFLAGS) \
     49        -I$(top_builddir)/src -I$(top_srcdir)/src \
     50        -I$(top_srcdir)/examples \
    4951        -I/usr/include/python${PYTHON_VERSION} \
    5052        -I${prefix}/include/python${PYTHON_VERSION} \
     
    5355
    5456AUBIO_LDFLAGS = $(SWLDFLAGS) \
    55         -L$(top_builddir)/ext -laubioext \
     57        @SNDFILE_LIBS@ \
    5658        -L$(top_builddir)/src -laubio
    5759
     
    5961
    6062_aubiowrapper_la_LDFLAGS = -module -avoid-version $(AUBIO_LDFLAGS)
    61 _aubiowrapper_la_SOURCES = aubio_wrap.c
     63_aubiowrapper_la_SOURCES = aubio_wrap.c $(top_srcdir)/examples/sndfileio.c
    6264
    6365aubio_wrap.c aubiowrapper.py:
  • python/aubio/wscript_build

    r6107f4c r740f06b  
     1bld.new_task_gen(features = 'cc',
     2    includes = '../../examples ../../src',
     3    source = ['../../examples/sndfileio.c'],
     4    uselib = ['JACK'],
     5    target = 'sndfileio')
     6
    17pyaubio = bld.new_task_gen(name = 'python-aubio',
    28  features = 'cc cshlib pyext',
    39  source = '../../swig/aubio.i',
     10  add_objects = 'sndfileio',
    411  target = '_aubiowrapper',
    5   uselib_local = ['aubio', 'aubioext'],
     12  uselib_local = ['aubio'],
     13  uselib = ['SNDFILE'],
    614  swig_flags = '-python -Wall',
    7   includes = '. ../../src ../../ext')
     15  includes = '. ../../src ../../examples')
    816pyaubio.install_path = '${PYTHONDIR}/${PACKAGE}'
    917
Note: See TracChangeset for help on using the changeset viewer.