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 \ |
b9187cc6 LOK |
21 | platform/timeutils.h \ |
22 | platform/baudrate.h \ | |
23 | platform/os-dependent.h \ | |
24 | platform/linux/os_posix.h \ | |
25 | platform/linux/serialport.cpp \ | |
26 | platform/serialport.h \ | |
27 | platform/threads.cpp \ | |
28 | platform/threads.h | |
abbca718 | 29 | |
3e703e8e | 30 | libcec_la_LDFLAGS = @LIBS@ -version-info @VERSION@ |
354ded4d | 31 | libcec_la_CPPFLAGS = -I@abs_top_srcdir@/include |