summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--AUTHORS1
-rw-r--r--configure.ac6
-rw-r--r--swig/Makefile.am27
3 files changed, 24 insertions, 10 deletions
diff --git a/AUTHORS b/AUTHORS
index 80c4ddf..8671482 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -8,3 +8,4 @@ Paul Sladen
8Patrick Walton 8Patrick Walton
9Zoltan Balaton 9Zoltan Balaton
10Nikias Bassen 10Nikias Bassen
11Todd Zullinger
diff --git a/configure.ac b/configure.ac
index 210105a..4f0fff2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,10 +2,10 @@
2# Process this file with autoconf to produce a configure script. 2# Process this file with autoconf to produce a configure script.
3 3
4AC_PREREQ(2.61) 4AC_PREREQ(2.61)
5AC_INIT(libiphone, 0.1.0, nospam@nowhere.com) 5AC_INIT(libiphone, 0.9.1, nospam@nowhere.com)
6AM_INIT_AUTOMAKE(libiphone, 0.9.1) 6AM_INIT_AUTOMAKE([dist-bzip2 no-dist-gzip])
7AC_CONFIG_SRCDIR([src/]) 7AC_CONFIG_SRCDIR([src/])
8AC_CONFIG_HEADER([config.h]) 8AC_CONFIG_HEADERS([config.h])
9AC_CONFIG_MACRO_DIR([m4]) 9AC_CONFIG_MACRO_DIR([m4])
10 10
11AC_PROG_LIBTOOL 11AC_PROG_LIBTOOL
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 @@
1INCLUDES = -I$(top_srcdir)/include $(libplist_CFLAGS) -I$(includedir) 1INCLUDES = -I$(top_srcdir)/include $(libplist_CFLAGS) -I$(includedir)
2 2
3BUILT_SOURCES = $(srcdir)/iphone_wrap.c 3BUILT_SOURCES = iphone_wrap.c
4SWIG_SOURCES = iphone.i 4SWIG_SOURCES = iphone.i
5 5
6CLEANFILES = \
7 *.pyc \
8 *.pyo \
9 _iPhone.so \
10 iPhone.py \
11 iphone_wrap.c
12
13EXTRA_DIST = \
14 __init__.py \
15 iphone.i
16
6swigincludedir =$(includedir)/libiphone/swig 17swigincludedir =$(includedir)/libiphone/swig
7swiginclude_HEADERS = $(SWIG_SOURCES) 18swiginclude_HEADERS = $(SWIG_SOURCES)
8 19
9pkgpython_PYTHON = iPhone.py __init__.py 20iPhonedir = $(pyexecdir)/libiphone
10pkgpyexec_LTLIBRARIES = _iPhone.la 21iPhone_PYTHON = __init__.py
11_iPhone_la_SOURCES = $(srcdir)/iphone_wrap.c $(SWIG_SOURCES) 22nodist_iPhone_PYTHON = iPhone.py
23iPhone_LTLIBRARIES = _iPhone.la
24nodist__iPhone_la_SOURCES = iphone_wrap.c $(SWIG_SOURCES)
12_iPhone_la_CFLAGS = $(PYTHON_CPPFLAGS) -I$(top_srcdir)/src 25_iPhone_la_CFLAGS = $(PYTHON_CPPFLAGS) -I$(top_srcdir)/src
13_iPhone_la_LDFLAGS = -module $(PYTHON_LDFLAGS) 26_iPhone_la_LDFLAGS = -module -avoid-version $(PYTHON_LDFLAGS)
14_iPhone_la_LIBADD = ../src/libiphone.la 27_iPhone_la_LIBADD = $(top_builddir)/src/libiphone.la
15 28
16$(srcdir)/iphone_wrap.c : $(SWIG_SOURCES) 29iphone_wrap.c : $(SWIG_SOURCES)
17 $(SWIG) $(SWIG_PYTHON_OPT) $(INCLUDES) -I$(top_srcdir)/src -o $@ $< 30 $(SWIG) $(SWIG_PYTHON_OPT) $(INCLUDES) -I$(top_srcdir)/src -o $@ $<
18 31