Makefile 386 B

12345678910111213141516
  1. # SPDX-License-Identifier: GPL-2.0+
  2. #
  3. # (C) Copyright 2000-2007
  4. # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  5. obj-$(CONFIG_$(SPL_)BLK) += blk-uclass.o
  6. ifndef CONFIG_$(SPL_)BLK
  7. obj-$(CONFIG_HAVE_BLOCK_DEVICE) += blk_legacy.o
  8. endif
  9. ifndef CONFIG_SPL_BUILD
  10. obj-$(CONFIG_IDE) += ide.o
  11. endif
  12. obj-$(CONFIG_SANDBOX) += sandbox.o
  13. obj-$(CONFIG_$(SPL_TPL_)BLOCK_CACHE) += blkcache.o