blob: cfadc69b613e92ca71d20d8643670577066c8fd4 (
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
38
39
40
41
42
43
44
45
|
AM_CPPFLAGS = \
-I$(top_srcdir) \
-I$(top_srcdir)/include \
-include Python.h \
-include $(top_builddir)/enigma2_config.h
SUBDIRS = Components Tools Screens Plugins
noinst_LIBRARIES = libenigma_python.a
libenigma_python_a_SOURCES = \
connections.cpp \
python.cpp
pythonincludedir = $(pkgincludedir)/lib/python
pythoninclude_HEADERS = \
connections.h \
python.h \
swig.h
nodist_libenigma_python_a_SOURCES = \
enigma_python.cpp
noinst_PYTHON = \
enigma_py_patcher.py
EXTRA_DIST = \
enigma_python.i
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/enigma_python.Pcpp@am__quote@
.i.cpp:
$(AM_V_GEN)$(SWIG) $(AX_SWIG_PYTHON_OPT) -MT $@ -MD -MF $(DEPDIR)/$*.Tpo -I$(top_srcdir) -O -nortti -nothreads -o $@ $<
$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Pcpp
$(AM_V_at)$(PYTHON) $(srcdir)/enigma_py_patcher.py
enigma.py: enigma_python.cpp
CLEANFILES = enigma.py enigma_python.cpp
installdir = $(pkglibdir)/python
install_PYTHON = \
enigma.py
|