Makefile 410 B

1234567891011121314151617181920
  1. # SPDX-License-Identifier: GPL-2.0+
  2. #
  3. # (C) Copyright 2000-2007
  4. # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  5. ifndef CONFIG_SPL_BUILD
  6. obj-$(CONFIG_DM_SCSI) += scsi-uclass.o
  7. obj-$(CONFIG_SCSI) += scsi.o
  8. endif
  9. ifdef CONFIG_SPL_BUILD
  10. ifdef CONFIG_SPL_SATA
  11. obj-$(CONFIG_DM_SCSI) += scsi-uclass.o
  12. obj-$(CONFIG_SCSI) += scsi.o
  13. endif
  14. endif
  15. ifdef CONFIG_SCSI
  16. obj-$(CONFIG_SANDBOX) += sandbox_scsi.o
  17. endif