Makefile 249 B

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