source:
python/aubio/Makefile.am
@
d57c879
Last change on this file since d57c879 was 13e23b8, checked in by , 17 years ago | |
---|---|
|
|
File size: 1.4 KB |
Rev | Line | |
---|---|---|
[13e23b8] | 1 | nobase_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/utils.py \ | |
11 | task/onset.py \ | |
12 | task/silence.py \ | |
13 | task/cut.py \ | |
14 | task/beat.py \ | |
15 | task/task.py \ | |
16 | task/pitch.py \ | |
[13e23b8] | 17 | task/notes.py \ |
[37541b9] | 18 | bench/__init__.py \ |
19 | bench/broadcast.py \ | |
20 | bench/config.py \ | |
21 | bench/node.py \ | |
[13e23b8] | 22 | bench/onset.py \ |
[37541b9] | 23 | plot/__init__.py \ |
[13e23b8] | 24 | plot/keyboard.py \ |
[37541b9] | 25 | web/__init__.py \ |
26 | web/browser.py \ | |
27 | web/html.py | |
[cdebe31] | 28 | |
[77494e7] | 29 | nodist_pkgpython_PYTHON = aubiowrapper.py _aubiowrapper.so |
30 | ||
[be929a5] | 31 | _aubiowrapper.so: _aubiowrapper.la |
32 | ||
33 | if MINGW | |
[f33fec1] | 34 | SWLDFLAGS = -L${prefix}/bin -lpython${PYTHON_VERSION} |
[be929a5] | 35 | else |
36 | if DARWIN | |
[19bc85a] | 37 | SWLDFLAGS = -bundle -framework Python |
[be929a5] | 38 | else |
[19bc85a] | 39 | SWLDFLAGS = -shared |
[be929a5] | 40 | endif |
41 | endif | |
[77494e7] | 42 | |
[be929a5] | 43 | CLEANFILES = *.pyc *.so *.o aubio_wrap.c aubiowrapper.py |
[77494e7] | 44 | |
[78e1c18] | 45 | NOWARN_CFLAGS = -Wno-missing-prototypes -Wno-missing-declarations \ |
46 | -Wno-strict-aliasing | |
47 | ||
[be929a5] | 48 | AM_CFLAGS = @AUBIO_CFLAGS@ $(NOWARN_CFLAGS) $(SWCFLAGS) \ |
[6ff2870] | 49 | -I$(top_builddir)/src -I$(top_srcdir)/src -I$(top_srcdir)/ext \ |
[3050cb8] | 50 | -I/usr/include/python${PYTHON_VERSION} \ |
51 | -I${prefix}/include/python${PYTHON_VERSION} \ | |
52 | -I/usr/include \ | |
53 | -I${prefix}/include | |
54 | ||
[be929a5] | 55 | AUBIO_LDFLAGS = $(SWLDFLAGS) \ |
[f33fec1] | 56 | -L$(top_builddir)/ext -laubioext \ |
57 | -L$(top_builddir)/src -laubio | |
[96fb8ad] | 58 | |
[d0dbc56] | 59 | pkgpyexec_LTLIBRARIES = _aubiowrapper.la |
[be929a5] | 60 | |
[f33fec1] | 61 | _aubiowrapper_la_LDFLAGS = -module -avoid-version $(AUBIO_LDFLAGS) |
[be929a5] | 62 | _aubiowrapper_la_SOURCES = aubio_wrap.c |
[96fb8ad] | 63 | |
[be929a5] | 64 | aubio_wrap.c aubiowrapper.py: |
65 | $(SWIG) -outdir . -o aubio_wrap.c -python $(top_srcdir)/swig/aubio.i |
Note: See TracBrowser
for help on using the repository browser.