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 | ||
2b44051c | 11 | ## libCEC core |
ef7696f5 | 12 | libcec_la_SOURCES = CECProcessor.cpp \ |
2abe74eb | 13 | LibCEC.cpp \ |
2abe74eb | 14 | LibCECC.cpp \ |
004b8382 | 15 | CECClient.cpp \ |
2b44051c | 16 | adapter/AdapterFactory.cpp \ |
ef7696f5 | 17 | devices/CECAudioSystem.cpp \ |
eafa9d46 | 18 | devices/CECBusDevice.cpp \ |
004b8382 | 19 | devices/CECDeviceMap.cpp \ |
51b2a094 | 20 | devices/CECPlaybackDevice.cpp \ |
ef7696f5 | 21 | devices/CECRecordingDevice.cpp \ |
51b2a094 | 22 | devices/CECTuner.cpp \ |
51b2a094 | 23 | devices/CECTV.cpp \ |
1b5cc4a2 | 24 | implementations/ANCommandHandler.cpp \ |
1b5cc4a2 | 25 | implementations/CECCommandHandler.cpp \ |
1b5cc4a2 | 26 | implementations/SLCommandHandler.cpp \ |
bb5b4874 | 27 | implementations/VLCommandHandler.cpp \ |
ecc633c5 | 28 | implementations/RLCommandHandler.cpp \ |
1d6f4558 | 29 | implementations/PHCommandHandler.cpp \ |
d9de2aae LOK |
30 | implementations/RHCommandHandler.cpp \ |
31 | implementations/AQCommandHandler.cpp | |
2b44051c LOK |
32 | |
33 | ## server sockets, currently unused | |
34 | ##libcec_la_SOURCES += platform/posix/serversocket.cpp | |
35 | ||
36 | ## Pulse-Eight USB-CEC support | |
37 | if USE_P8_USB | |
38 | libcec_la_SOURCES += adapter/Pulse-Eight/USBCECAdapterMessage.cpp \ | |
39 | adapter/Pulse-Eight/USBCECAdapterCommands.cpp \ | |
40 | adapter/Pulse-Eight/USBCECAdapterCommunication.cpp \ | |
41 | adapter/Pulse-Eight/USBCECAdapterMessageQueue.cpp \ | |
42 | adapter/Pulse-Eight/USBCECAdapterDetection.cpp \ | |
43 | platform/posix/serialport.cpp \ | |
44 | platform/posix/os-edid.cpp \ | |
45 | platform/adl/adl-edid.cpp \ | |
46 | platform/nvidia/nv-edid.cpp | |
47 | endif | |
48 | ||
29104708 LOK |
49 | ## Raspberry Pi support |
50 | if USE_RPI_API | |
51 | libcec_la_SOURCES += adapter/RPi/RPiCECAdapterDetection.cpp \ | |
52 | adapter/RPi/RPiCECAdapterCommunication.cpp \ | |
53 | adapter/RPi/RPiCECAdapterMessageQueue.cpp | |
54 | endif | |
55 | ||
4d3a7562 | 56 | ## CuBox (NXP) support |
51b611bc | 57 | if USE_TDA995X_API |
79e50026 LOK |
58 | libcec_la_SOURCES += adapter/TDA995x/TDA995xCECAdapterDetection.cpp \ |
59 | adapter/TDA995x/TDA995xCECAdapterCommunication.cpp | |
4d3a7562 | 60 | endif |
61 | ||
62 | ||
6ea2515b | 63 | libcec_la_LDFLAGS = @LIBS_LIBCEC@ -version-info @VERSION@ |