Makefile 574 B

123456789101112131415161718192021222324
  1. #
  2. # Makefile for kernel SPI drivers.
  3. #
  4. ifeq ($(CONFIG_SPI_DEBUG),y)
  5. EXTRA_CFLAGS += -DDEBUG
  6. endif
  7. # small core, mostly translating board-specific
  8. # config declarations into driver model code
  9. obj-$(CONFIG_SPI_MASTER) += spi.o
  10. # SPI master controller drivers (bus)
  11. obj-$(CONFIG_SPI_BITBANG) += spi_bitbang.o
  12. # ... add above this line ...
  13. # SPI protocol drivers (device/link on bus)
  14. # ... add above this line ...
  15. # SPI slave controller drivers (upstream link)
  16. # ... add above this line ...
  17. # SPI slave drivers (protocol for that link)
  18. # ... add above this line ...