blob: 3c213a172aac4d800ab9c629bde98af3bdccd753 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
AM_CPPFLAGS = \
-I$(top_srcdir) \
-I$(top_srcdir)/include \
-include Python.h \
-include $(top_builddir)/enigma2_config.h
SUBDIRS = Components Tools Screens Plugins
noinst_LTLIBRARIES = libenigma_python.la
libenigma_python_la_SOURCES = \
connections.cpp \
connections.h \
python.cpp \
python.h \
swig.h
nodist_libenigma_python_la_SOURCES = \
enigma_python_wrap.cxx
EXTRA_DIST = \
enigma_py_patcher.py \
enigma_python.i
enigma_python_wrap.cxx: $(srcdir)/enigma_python.i
$(SWIG) $(AX_SWIG_PYTHON_OPT) -I$(top_srcdir) -O -nortti -nothreads -o $@ $<
$(PYTHON) $(srcdir)/enigma_py_patcher.py
enigma.py: enigma_python_wrap.cxx
CLEANFILES = enigma.py enigma_python_wrap.cxx
installdir = $(pkglibdir)/python
install_PYTHON = \
enigma.py
|