diff options
| author | 2009-05-11 17:30:03 +0200 | |
|---|---|---|
| committer | 2009-05-11 17:30:03 +0200 | |
| commit | f671b8174d1c55a54e736aa73de385dd5d7e2cb9 (patch) | |
| tree | 948a7e32d16a624371ad340da62686c710d9a2db /swig/Makefile.am | |
| parent | e449f1b3699f356b4e3238ca287e371656c4136c (diff) | |
| parent | 6c25d6104412dcbbc50096878c69f648aeae345d (diff) | |
| download | libimobiledevice-f671b8174d1c55a54e736aa73de385dd5d7e2cb9.tar.gz libimobiledevice-f671b8174d1c55a54e736aa73de385dd5d7e2cb9.tar.bz2 | |
Merge branch 'master' of git://github.com/MattColyer/libiphone into martin
Diffstat (limited to 'swig/Makefile.am')
| -rw-r--r-- | swig/Makefile.am | 27 |
1 files changed, 20 insertions, 7 deletions
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 @@ | |||
| 1 | INCLUDES = -I$(top_srcdir)/include $(libplist_CFLAGS) -I$(includedir) | 1 | INCLUDES = -I$(top_srcdir)/include $(libplist_CFLAGS) -I$(includedir) |
| 2 | 2 | ||
| 3 | BUILT_SOURCES = $(srcdir)/iphone_wrap.c | 3 | BUILT_SOURCES = iphone_wrap.c |
| 4 | SWIG_SOURCES = iphone.i | 4 | SWIG_SOURCES = iphone.i |
| 5 | 5 | ||
| 6 | CLEANFILES = \ | ||
| 7 | *.pyc \ | ||
| 8 | *.pyo \ | ||
| 9 | _iPhone.so \ | ||
| 10 | iPhone.py \ | ||
| 11 | iphone_wrap.c | ||
| 12 | |||
| 13 | EXTRA_DIST = \ | ||
| 14 | __init__.py \ | ||
| 15 | iphone.i | ||
| 16 | |||
| 6 | swigincludedir =$(includedir)/libiphone/swig | 17 | swigincludedir =$(includedir)/libiphone/swig |
| 7 | swiginclude_HEADERS = $(SWIG_SOURCES) | 18 | swiginclude_HEADERS = $(SWIG_SOURCES) |
| 8 | 19 | ||
| 9 | pkgpython_PYTHON = iPhone.py __init__.py | 20 | iPhonedir = $(pyexecdir)/libiphone |
| 10 | pkgpyexec_LTLIBRARIES = _iPhone.la | 21 | iPhone_PYTHON = __init__.py |
| 11 | _iPhone_la_SOURCES = $(srcdir)/iphone_wrap.c $(SWIG_SOURCES) | 22 | nodist_iPhone_PYTHON = iPhone.py |
| 23 | iPhone_LTLIBRARIES = _iPhone.la | ||
| 24 | nodist__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) | 29 | iphone_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 | ||
