- Timestamp:
- Sep 29, 2006, 4:18:53 PM (18 years ago)
- 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:
- 237f632
- Parents:
- 5a405dd
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/aubio/Makefile.am
r5a405dd rbe929a5 41 41 nodist_pkgpython_PYTHON = aubiowrapper.py _aubiowrapper.so 42 42 43 _aubiowrapper.so: _aubiowrapper.la 44 45 if MINGW 46 SWLDFLAGS = "" 47 else 48 if DARWIN 49 SWLDFLAGS = "-bundle -framework Python" 50 else 51 SWLDFLAGS = "-shared" 52 endif 53 endif 54 43 55 CLEANFILES = *.pyc *.so *.o aubio_wrap.c aubiowrapper.py 44 45 all: _aubiowrapper.so46 56 47 57 NOWARN_CFLAGS = -Wno-missing-prototypes -Wno-missing-declarations \ 48 58 -Wno-strict-aliasing 49 59 50 AM_CFLAGS = $(SWCFLAGS) -fPIC -DPIC\60 AM_CFLAGS = @AUBIO_CFLAGS@ $(NOWARN_CFLAGS) $(SWCFLAGS) \ 51 61 -I$(top_builddir)/src -I$(top_srcdir)/src -I$(top_srcdir)/ext \ 52 62 -I/usr/include/python${PYTHON_VERSION} \ … … 55 65 -I${prefix}/include 56 66 57 A M_LDFLAGS = $(SWLDFLAGS) \67 AUBIO_LDFLAGS = $(SWLDFLAGS) \ 58 68 -L$(top_builddir)/ext/.libs -laubioext \ 59 69 -L$(top_builddir)/src/.libs -laubio 60 70 61 aubio_wrap.c: 71 python_DATA = aubiowrapper.py 72 python_LTLIBRARIES = _aubiowrapper.la 73 74 _aubiowrapper_la_LDFLAGS = -no-undefined -module -avoid-version $(AUBIO_LDFLAGS) 75 _aubiowrapper_la_SOURCES = aubio_wrap.c 76 77 aubio_wrap.c aubiowrapper.py: 62 78 $(SWIG) -outdir . -o aubio_wrap.c -python $(top_srcdir)/swig/aubio.i 63 64 _aubiowrapper.so: aubio_wrap.c65 $(CC) $(AM_CFLAGS) $(CFLAGS) $(NOWARN_CFLAGS) -c aubio_wrap.c66 $(CC) $(AM_LDFLAGS) $(LDFLAGS) aubio_wrap.o -o _aubiowrapper.so
Note: See TracChangeset
for help on using the changeset viewer.