| 1 | lib_LTLIBRARIES = libcec.la |
| 2 | library_includedir=$(includedir)/libcec |
| 3 | library_include_HEADERS = ../../include/cec.h \ |
| 4 | ../../include/cecc.h \ |
| 5 | ../../include/cectypes.h \ |
| 6 | ../../include/cecloader.h |
| 7 | |
| 8 | pkgconfigdir = $(libdir)/pkgconfig |
| 9 | pkgconfig_DATA = libcec.pc |
| 10 | |
| 11 | libcec_la_SOURCES = AdapterCommunication.cpp \ |
| 12 | AdapterCommunication.h \ |
| 13 | AdapterDetection.cpp \ |
| 14 | AdapterDetection.h \ |
| 15 | CECProcessor.cpp \ |
| 16 | CECProcessor.h \ |
| 17 | LibCEC.cpp \ |
| 18 | LibCEC.h \ |
| 19 | LibCECC.cpp \ |
| 20 | util/StdString.h \ |
| 21 | devices/CECAudioSystem.h \ |
| 22 | devices/CECAudioSystem.cpp \ |
| 23 | devices/CECBusDevice.cpp \ |
| 24 | devices/CECBusDevice.h \ |
| 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 \ |
| 33 | implementations/ANCommandHandler.cpp \ |
| 34 | implementations/ANCommandHandler.h \ |
| 35 | implementations/CECCommandHandler.cpp \ |
| 36 | implementations/CECCommandHandler.h \ |
| 37 | implementations/SLCommandHandler.cpp \ |
| 38 | implementations/SLCommandHandler.h \ |
| 39 | implementations/VLCommandHandler.cpp \ |
| 40 | implementations/VLCommandHandler.h \ |
| 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 |
| 49 | |
| 50 | libcec_la_LDFLAGS = @LIBS@ -version-info @VERSION@ |
| 51 | libcec_la_CPPFLAGS = -I@abs_top_srcdir@/include |