Makefile 316 B

1234567891011121314151617
  1. # SPDX-License-Identifier: GPL-2.0
  2. cec-objs := cec-core.o cec-adap.o cec-api.o
  3. ifeq ($(CONFIG_CEC_NOTIFIER),y)
  4. cec-objs += cec-notifier.o
  5. endif
  6. ifeq ($(CONFIG_CEC_PIN),y)
  7. cec-objs += cec-pin.o
  8. endif
  9. ifeq ($(CONFIG_CEC_PIN_ERROR_INJ),y)
  10. cec-objs += cec-pin-error-inj.o
  11. endif
  12. obj-$(CONFIG_CEC_CORE) += cec.o