Makefile 284 B

123456789101112131415
  1. # SPDX-License-Identifier: GPL-2.0
  2. #
  3. # Makefile for the Linux NFC NCI layer.
  4. #
  5. obj-$(CONFIG_NFC_NCI) += nci.o
  6. nci-objs := core.o data.o lib.o ntf.o rsp.o hci.o
  7. nci_spi-y += spi.o
  8. obj-$(CONFIG_NFC_NCI_SPI) += nci_spi.o
  9. nci_uart-y += uart.o
  10. obj-$(CONFIG_NFC_NCI_UART) += nci_uart.o