blob: 9f956b66c078734c4975c48d3ecd6c71d0682f42 (
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
|
AM_CPPFLAGS = \
-I$(top_srcdir) \
-I$(top_srcdir)/include \
-include Python.h \
-include $(top_builddir)/enigma2_config.h
AM_CXXFLAGS = \
$(LIBXINE_CFLAGS)
noinst_LIBRARIES = libenigma_service.a
libenigma_service_a_SOURCES = \
event.cpp \
listboxservice.cpp \
service.cpp \
servicedvb.cpp \
servicedvbrecord.cpp \
servicefs.cpp \
servicemp3.cpp \
servicem2ts.cpp
serviceincludedir = $(pkgincludedir)/lib/service
serviceinclude_HEADERS = \
event.h \
iservice.h \
listboxservice.h \
service.h \
servicedvb.h \
servicedvbrecord.h \
servicefs.h \
servicemp3.h \
servicem2ts.h
if HAVE_LIBXINE
libenigma_service_a_SOURCES += \
servicexine.cpp
serviceinclude_HEADERS += \
servicexine.h
endif
|