diff options
| author | 2009-01-13 18:57:52 +0100 | |
|---|---|---|
| committer | 2009-01-13 18:57:52 +0100 | |
| commit | d4694679f918750e920a2238d891cd2fbb741a90 (patch) | |
| tree | ea52b9d253993b31ec71cbad35280d7c5eeab957 /swig/Makefile.am | |
| parent | 564aebf941f2f0c5fb57d2f86091b37d6331b9d9 (diff) | |
| download | libimobiledevice-d4694679f918750e920a2238d891cd2fbb741a90.tar.gz libimobiledevice-d4694679f918750e920a2238d891cd2fbb741a90.tar.bz2 | |
Add parts of a python binding to libiphone that also include libplist (using SWIG).
Diffstat (limited to 'swig/Makefile.am')
| -rw-r--r-- | swig/Makefile.am | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/swig/Makefile.am b/swig/Makefile.am new file mode 100644 index 0000000..e47356b --- /dev/null +++ b/swig/Makefile.am | |||
| @@ -0,0 +1,18 @@ | |||
| 1 | INCLUDES = -I$(top_srcdir)/include $(libplist_CFLAGS) | ||
| 2 | |||
| 3 | BUILT_SOURCES = $(srcdir)/iphone_wrap.c | ||
| 4 | SWIG_SOURCES = iphone.i | ||
| 5 | |||
| 6 | swigincludedir =$(includedir)/libiphone/swig | ||
| 7 | swiginclude_HEADERS = $(SWIG_SOURCES) | ||
| 8 | |||
| 9 | pkgpython_PYTHON = iPhone.py __init__.py | ||
| 10 | pkgpyexec_LTLIBRARIES = _iPhone.la | ||
| 11 | _iPhone_la_SOURCES = $(srcdir)/iphone_wrap.c $(SWIG_SOURCES) | ||
| 12 | _iPhone_la_CFLAGS = $(PYTHON_CPPFLAGS) -I$(top_srcdir)/src | ||
| 13 | _iPhone_la_LDFLAGS = -module $(PYTHON_LDFLAGS) | ||
| 14 | _iPhone_la_LIBADD = ../src/libiphone.la | ||
| 15 | |||
| 16 | $(srcdir)/iphone_wrap.c : $(SWIG_SOURCES) | ||
| 17 | $(SWIG) $(SWIG_PYTHON_OPT) $(INCLUDES) -I$(top_srcdir)/src -o $@ $< | ||
| 18 | |||
