diff options
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 | |||
