Changeset 78e1c18 for python/aubio
- Timestamp:
- Jun 3, 2006, 6:00:13 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:
- 6ff2870
- Parents:
- c9b33bb
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/aubio/Makefile.am
rc9b33bb r78e1c18 45 45 all: _aubiowrapper.so 46 46 47 # removed -Wall -Wmissing-prototypes -Wmissing-declarations 48 CFLAGS = -fPIC -DJACK_SUPPORT -Werror -Wno-char-subscripts \ 49 -Wno-unknown-pragmas $(SWCFLAGS) \ 47 NOWARN_CFLAGS = -Wno-missing-prototypes -Wno-missing-declarations \ 48 -Wno-strict-aliasing 49 50 AM_CFLAGS = $(SWCFLAGS) -fPIC -DPIC \ 50 51 -I../../src -I$(srcdir)/../../src -I$(srcdir)/../../ext \ 51 52 -I/usr/include/python${PYTHON_VERSION} \ … … 54 55 -I${prefix}/include 55 56 56 LDFLAGS = $(SWLDFLAGS) -L../../ext/.libs -laubioext -L../../src/.libs -laubio57 AM_LDFLAGS = $(SWLDFLAGS) -L../../ext/.libs -laubioext -L../../src/.libs -laubio 57 58 58 59 aubio_wrap.c: … … 60 61 61 62 _aubiowrapper.so: aubio_wrap.c 62 $(CC) $(CFLAGS) -c aubio_wrap.c 63 $(CC) $(LDFLAGS) aubio_wrap.o -o _aubiowrapper.so 64 63 $(CC) $(AM_CFLAGS) $(CFLAGS) $(NOWARN_CFLAGS) -c aubio_wrap.c 64 $(CC) $(AM_LDFLAGS) $(LDFLAGS) aubio_wrap.o -o _aubiowrapper.so
Note: See TracChangeset
for help on using the changeset viewer.