Makefile 768 B

12345678910111213141516171819202122232425262728
  1. target_core_mod-y := target_core_configfs.o \
  2. target_core_device.o \
  3. target_core_fabric_configfs.o \
  4. target_core_fabric_lib.o \
  5. target_core_hba.o \
  6. target_core_pr.o \
  7. target_core_alua.o \
  8. target_core_tmr.o \
  9. target_core_tpg.o \
  10. target_core_transport.o \
  11. target_core_cdb.o \
  12. target_core_ua.o \
  13. target_core_rd.o \
  14. target_core_stat.o
  15. obj-$(CONFIG_TARGET_CORE) += target_core_mod.o
  16. # Subsystem modules
  17. obj-$(CONFIG_TCM_IBLOCK) += target_core_iblock.o
  18. obj-$(CONFIG_TCM_FILEIO) += target_core_file.o
  19. obj-$(CONFIG_TCM_PSCSI) += target_core_pscsi.o
  20. # Fabric modules
  21. obj-$(CONFIG_LOOPBACK_TARGET) += loopback/
  22. obj-$(CONFIG_TCM_FC) += tcm_fc/
  23. obj-$(CONFIG_ISCSI_TARGET) += iscsi/