| 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 = CECProcessor.cpp \ |
| 12 | LibCEC.cpp \ |
| 13 | LibCECC.cpp \ |
| 14 | adapter/USBCECAdapterCommunication.cpp \ |
| 15 | adapter/USBCECAdapterDetection.cpp \ |
| 16 | devices/CECAudioSystem.cpp \ |
| 17 | devices/CECBusDevice.cpp \ |
| 18 | devices/CECPlaybackDevice.cpp \ |
| 19 | devices/CECRecordingDevice.cpp \ |
| 20 | devices/CECTuner.cpp \ |
| 21 | devices/CECTV.cpp \ |
| 22 | implementations/ANCommandHandler.cpp \ |
| 23 | implementations/CECCommandHandler.cpp \ |
| 24 | implementations/SLCommandHandler.cpp \ |
| 25 | implementations/VLCommandHandler.cpp \ |
| 26 | platform/posix/serialport.cpp |
| 27 | |
| 28 | libcec_la_LDFLAGS = @LIBS@ -version-info @VERSION@ |
| 29 | libcec_la_CPPFLAGS = -I@abs_top_srcdir@/include |