blob: a19b8b1b8b6c7924efcf899f2a631a3497cf4cbf (
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
|
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 \
event.h \
iservice.h \
listboxservice.cpp \
listboxservice.h \
service.cpp \
service.h \
servicedvb.cpp \
servicedvb.h \
servicedvbrecord.cpp \
servicedvbrecord.h \
servicefs.cpp \
servicefs.h \
servicemp3.cpp \
servicemp3.h
if HAVE_LIBXINE
libenigma_service_a_SOURCES += \
servicexine.cpp \
servicexine.h
endif
|