source: python/aubio/Makefile.am @ d09cad2

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

added configure rules to check presence of swig, python,

puredata and docbook-to-man.
deleted autotools generated files
activated threading in midi_alsa_seq.c

  • Property mode set to 100644
File size: 810 bytes
Line 
1pkgpython_PYTHON = __init__.py onsetcompare.py\
2        gnuplot.py median.py txtfile.py aubioclass.py
3       
4nodist_pkgpython_PYTHON = aubiowrapper.py _aubiowrapper.so
5
6CLEANFILES = *.pyc *.so *.o aubio_wrap.c aubiowrapper.py
7
8all: _aubiowrapper.so
9
10# removed -Wall -Wmissing-prototypes -Wmissing-declarations
11SWCFLAGS = -DJACK_SUPPORT -Werror -Wno-char-subscripts -Wno-unknown-pragmas \
12        -I../../src -I../../ext \
13        -I/usr/include/python${PYTHON_VERSION} \
14        -I${prefix}/include/python${PYTHON_VERSION} \
15        -I/usr/include \
16        -I${prefix}/include
17
18SWLDFLAGS = -shared -L../../ext/.libs -laubioext -L../../src/.libs -laubio
19
20aubio_wrap.c:
21        $(SWIG) -outdir . -o aubio_wrap.c -python ../../swig/aubio.i
22
23_aubiowrapper.so: aubio_wrap.c
24        $(CC)   $(SWCFLAGS) -c aubio_wrap.c
25        $(CC)   $(SWLDFLAGS) aubio_wrap.o -o _aubiowrapper.so
Note: See TracBrowser for help on using the repository browser.