Commit | Line | Data |
---|---|---|
abbca718 LOK |
1 | lib_LTLIBRARIES = libcec.la |
2 | library_includedir=$(includedir)/libcec | |
761dcc45 LOK |
3 | library_include_HEADERS = ../../include/cec.h \ |
4 | ../../include/cecc.h \ | |
5 | ../../include/cectypes.h \ | |
6 | ../../include/cecloader.h | |
abbca718 LOK |
7 | |
8 | pkgconfigdir = $(libdir)/pkgconfig | |
9 | pkgconfig_DATA = libcec.pc | |
10 | ||
2abe74eb | 11 | libcec_la_SOURCES = AdapterCommunication.cpp \ |
828682d3 | 12 | AdapterCommunication.h \ |
2abe74eb LOK |
13 | AdapterDetection.cpp \ |
14 | AdapterDetection.h \ | |
15 | CECProcessor.cpp \ | |
16 | CECProcessor.h \ | |
17 | LibCEC.cpp \ | |
18 | LibCEC.h \ | |
19 | LibCECC.cpp \ | |
abbca718 | 20 | util/StdString.h \ |
51b2a094 LOK |
21 | devices/CECAudioSystem.h \ |
22 | devices/CECAudioSystem.cpp \ | |
eafa9d46 LOK |
23 | devices/CECBusDevice.cpp \ |
24 | devices/CECBusDevice.h \ | |
51b2a094 LOK |
25 | devices/CECPlaybackDevice.h \ |
26 | devices/CECPlaybackDevice.cpp \ | |
27 | devices/CECRecordingDevice.h \ | |
28 | devices/CECRecordingDevice.cpp \ | |
29 | devices/CECTuner.h \ | |
30 | devices/CECTuner.cpp \ | |
31 | devices/CECTV.h \ | |
32 | devices/CECTV.cpp \ | |
1b5cc4a2 LOK |
33 | implementations/ANCommandHandler.cpp \ |
34 | implementations/ANCommandHandler.h \ | |
35 | implementations/CECCommandHandler.cpp \ | |
36 | implementations/CECCommandHandler.h \ | |
37 | implementations/SLCommandHandler.cpp \ | |
38 | implementations/SLCommandHandler.h \ | |
bb5b4874 LOK |
39 | implementations/VLCommandHandler.cpp \ |
40 | implementations/VLCommandHandler.h \ | |
b9187cc6 LOK |
41 | platform/timeutils.h \ |
42 | platform/baudrate.h \ | |
43 | platform/os-dependent.h \ | |
44 | platform/linux/os_posix.h \ | |
45 | platform/linux/serialport.cpp \ | |
46 | platform/serialport.h \ | |
47 | platform/threads.cpp \ | |
48 | platform/threads.h | |
abbca718 | 49 | |
3e703e8e | 50 | libcec_la_LDFLAGS = @LIBS@ -version-info @VERSION@ |
354ded4d | 51 | libcec_la_CPPFLAGS = -I@abs_top_srcdir@/include |