link to libpython on windows, remove useless .libs, remove -no-undefined
authorPaul Brossier <piem@altern.org>
Thu, 5 Oct 2006 12:01:07 +0000 (12:01 +0000)
committerPaul Brossier <piem@altern.org>
Thu, 5 Oct 2006 12:01:07 +0000 (12:01 +0000)
link to libpython on windows, remove useless .libs, remove -no-undefined

python/aubio/Makefile.am

index 41be254f90043ec1ae190884f04a0ce76816b087..bd6b81e03578a8d4510f82fa4825e60332cede47 100644 (file)
@@ -43,7 +43,7 @@ nodist_pkgpython_PYTHON = aubiowrapper.py _aubiowrapper.so
 _aubiowrapper.so: _aubiowrapper.la
 
 if MINGW
-SWLDFLAGS = -lpython${PYTHON_VERSION}
+SWLDFLAGS = -L${prefix}/bin -lpython${PYTHON_VERSION}
 else
 if DARWIN
 SWLDFLAGS = -bundle -framework Python
@@ -65,13 +65,13 @@ AM_CFLAGS = @AUBIO_CFLAGS@ $(NOWARN_CFLAGS) $(SWCFLAGS) \
        -I${prefix}/include
 
 AUBIO_LDFLAGS = $(SWLDFLAGS) \
-       -L$(top_builddir)/ext/.libs -laubioext \
-       -L$(top_builddir)/src/.libs -laubio
+       -L$(top_builddir)/ext -laubioext \
+       -L$(top_builddir)/src -laubio
 
 python_DATA = aubiowrapper.py
 python_LTLIBRARIES = _aubiowrapper.la
 
-_aubiowrapper_la_LDFLAGS = -no-undefined -module -avoid-version $(AUBIO_LDFLAGS) 
+_aubiowrapper_la_LDFLAGS = -module -avoid-version $(AUBIO_LDFLAGS) 
 _aubiowrapper_la_SOURCES = aubio_wrap.c
 
 aubio_wrap.c aubiowrapper.py: