blob: 72191edce9efdec7b2d11899e412f85b78eeb936 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
AM_CPPFLAGS = \
-I$(top_srcdir)/include \
-I$(top_srcdir)/src
SUBDIRS = Components Tools Screens Plugins
noinst_LIBRARIES = libenigma_python.a
libenigma_python_a_SOURCES = \
python.cpp enigma_python_wrap.cxx connections.cpp
enigma_python_wrap.cxx: enigma_python.i
swig -I$(top_srcdir)/ -c++ -python -O -nortti -nothreads enigma_python.i
python enigma_py_patcher.py
enigma.py: enigma_python_wrap.cxx
CLEANFILES = enigma.py enigma_python_wrap.cxx
installdir = $(pkglibdir)/python
install_PYTHON = \
enigma.py
|