blob: 88d9bec5418d94b293553e4e8fef9a2829a078ed (
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
|
AM_CPPFLAGS = \
-I$(top_srcdir) \
-I$(top_srcdir)/include \
-include Python.h \
-include $(top_builddir)/enigma2_config.h
noinst_LIBRARIES = libenigma_driver.a
libenigma_driver_a_SOURCES = \
avswitch.cpp \
etimezone.cpp \
misc_options.cpp \
rc.cpp \
rcconsole.cpp \
rcinput.cpp \
rfmod.cpp
driverincludedir = $(pkgincludedir)/lib/driver
driverinclude_HEADERS = \
avswitch.h \
etimezone.h \
input_fake.h \
misc_options.h \
rc.h \
rcconsole.h \
rcdbox.h \
rcdreambox2.h \
rcinput.h \
rfmod.h
|