From f56e085ba3d74f595c7708047dd082ef31e828cd Mon Sep 17 00:00:00 2001 From: Todd Zullinger Date: Sun, 10 May 2009 22:53:57 -0400 Subject: Fix 'make distcheck' for python bindings This should also make the python bindings install in the correct location on 64-bit architectures. Signed-off-by: Matt Colyer --- swig/Makefile.am | 27 ++++++++++++++++++++------- 1 file changed, 20 insertions(+), 7 deletions(-) (limited to 'swig/Makefile.am') diff --git a/swig/Makefile.am b/swig/Makefile.am index 7f88b40..726014b 100644 --- a/swig/Makefile.am +++ b/swig/Makefile.am @@ -1,18 +1,31 @@ INCLUDES = -I$(top_srcdir)/include $(libplist_CFLAGS) -I$(includedir) -BUILT_SOURCES = $(srcdir)/iphone_wrap.c +BUILT_SOURCES = iphone_wrap.c SWIG_SOURCES = iphone.i +CLEANFILES = \ + *.pyc \ + *.pyo \ + _iPhone.so \ + iPhone.py \ + iphone_wrap.c + +EXTRA_DIST = \ + __init__.py \ + iphone.i + swigincludedir =$(includedir)/libiphone/swig swiginclude_HEADERS = $(SWIG_SOURCES) -pkgpython_PYTHON = iPhone.py __init__.py -pkgpyexec_LTLIBRARIES = _iPhone.la -_iPhone_la_SOURCES = $(srcdir)/iphone_wrap.c $(SWIG_SOURCES) +iPhonedir = $(pyexecdir)/libiphone +iPhone_PYTHON = __init__.py +nodist_iPhone_PYTHON = iPhone.py +iPhone_LTLIBRARIES = _iPhone.la +nodist__iPhone_la_SOURCES = iphone_wrap.c $(SWIG_SOURCES) _iPhone_la_CFLAGS = $(PYTHON_CPPFLAGS) -I$(top_srcdir)/src -_iPhone_la_LDFLAGS = -module $(PYTHON_LDFLAGS) -_iPhone_la_LIBADD = ../src/libiphone.la +_iPhone_la_LDFLAGS = -module -avoid-version $(PYTHON_LDFLAGS) +_iPhone_la_LIBADD = $(top_builddir)/src/libiphone.la -$(srcdir)/iphone_wrap.c : $(SWIG_SOURCES) +iphone_wrap.c : $(SWIG_SOURCES) $(SWIG) $(SWIG_PYTHON_OPT) $(INCLUDES) -I$(top_srcdir)/src -o $@ $< -- cgit v1.1-32-gdbae