source: python/aubio/Makefile.am @ 77494e7

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

bumping to 0.1.8

  • Property mode set to 100644
File size: 728 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
10SWIG = swig
11# removed -Wall -Wmissing-prototypes -Wmissing-declarations
12SWCFLAGS = -DJACK_SUPPORT -Werror -Wno-char-subscripts -Wno-unknown-pragmas -I/usr/include/python2.3 -I../../src -I../../ext -I/usr/include
13SWLDFLAGS = -shared -L../../ext/.libs -laubioext -L../../src/.libs -laubio
14
15aubio_wrap.c:
16        $(SWIG) -outdir . -o aubio_wrap.c -python ../../swig/aubio.i
17
18_aubiowrapper.so: aubio_wrap.c
19        $(CC)   $(SWCFLAGS) -c aubio_wrap.c
20        $(CC)   $(SWLDFLAGS) aubio_wrap.o -o _aubiowrapper.so
Note: See TracBrowser for help on using the repository browser.