source: python/aubio/Makefile.am @ 740f06b

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since 740f06b was 740f06b, checked in by Paul Brossier <piem@piem.org>, 15 years ago

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

  • Property mode set to 100644
File size: 1.5 KB
RevLine 
[13e23b8]1nobase_pkgpython_PYTHON = \
[37541b9]2        __init__.py \
3        onsetcompare.py \
4        gnuplot.py \
5        median.py \
6        txtfile.py \
[13e23b8]7        aubioclass.py \
[37541b9]8        task/__init__.py \
9        task/params.py \
10        task/onset.py \
11        task/silence.py \
12        task/cut.py \
13        task/beat.py \
14        task/task.py \
15        task/pitch.py \
[13e23b8]16        task/notes.py \
[37541b9]17        bench/__init__.py \
18        bench/broadcast.py \
19        bench/config.py \
20        bench/node.py \
[13e23b8]21        bench/onset.py \
[37541b9]22        plot/__init__.py \
[13e23b8]23        plot/keyboard.py \
[37541b9]24        web/__init__.py \
25        web/browser.py \
26        web/html.py
[cdebe31]27
[77494e7]28nodist_pkgpython_PYTHON = aubiowrapper.py _aubiowrapper.so
29
[be929a5]30_aubiowrapper.so: _aubiowrapper.la
31
32if MINGW
[f33fec1]33SWLDFLAGS = -L${prefix}/bin -lpython${PYTHON_VERSION}
[be929a5]34else
35if DARWIN
[19bc85a]36SWLDFLAGS = -bundle -framework Python
[be929a5]37else
[19bc85a]38SWLDFLAGS = -shared
[be929a5]39endif
40endif
[77494e7]41
[be929a5]42CLEANFILES = *.pyc *.so *.o aubio_wrap.c aubiowrapper.py
[77494e7]43
[78e1c18]44NOWARN_CFLAGS = -Wno-missing-prototypes -Wno-missing-declarations \
45        -Wno-strict-aliasing
46
[740f06b]47AM_CFLAGS = @AUBIO_CFLAGS@ @SNDFILE_CFLAGS@ \
48        $(NOWARN_CFLAGS) $(SWCFLAGS) \
49        -I$(top_builddir)/src -I$(top_srcdir)/src \
50        -I$(top_srcdir)/examples \
[3050cb8]51        -I/usr/include/python${PYTHON_VERSION} \
52        -I${prefix}/include/python${PYTHON_VERSION} \
53        -I/usr/include \
54        -I${prefix}/include
55
[be929a5]56AUBIO_LDFLAGS = $(SWLDFLAGS) \
[740f06b]57        @SNDFILE_LIBS@ \
[f33fec1]58        -L$(top_builddir)/src -laubio
[96fb8ad]59
[d0dbc56]60pkgpyexec_LTLIBRARIES = _aubiowrapper.la
[be929a5]61
[f33fec1]62_aubiowrapper_la_LDFLAGS = -module -avoid-version $(AUBIO_LDFLAGS)
[740f06b]63_aubiowrapper_la_SOURCES = aubio_wrap.c $(top_srcdir)/examples/sndfileio.c
[96fb8ad]64
[be929a5]65aubio_wrap.c aubiowrapper.py:
66        $(SWIG) -outdir . -o aubio_wrap.c -python $(top_srcdir)/swig/aubio.i
Note: See TracBrowser for help on using the repository browser.