17 lines
360 B
Makefile
17 lines
360 B
Makefile
|
# SPDX-License-Identifier: GPL-2.0+
|
||
|
#
|
||
|
# (C) Copyright 2000-2007
|
||
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
||
|
|
||
|
obj-$(CONFIG_$(SPL_)BLK) += blk-uclass.o
|
||
|
|
||
|
ifndef CONFIG_$(SPL_)BLK
|
||
|
obj-y += blk_legacy.o
|
||
|
endif
|
||
|
|
||
|
ifndef CONFIG_SPL_BUILD
|
||
|
obj-$(CONFIG_IDE) += ide.o
|
||
|
endif
|
||
|
obj-$(CONFIG_SANDBOX) += sandbox.o
|
||
|
obj-$(CONFIG_$(SPL_TPL_)BLOCK_CACHE) += blkcache.o
|