blob: 64569c2cc6d563732a259c237db0ac7d52060bc9 [file] [log] [blame]
Tom Rini47f7bca2012-08-13 12:03:19 -07001#
2# (C) Copyright 2012
3# Texas Instruments Incorporated - http://www.ti.com/
4# Aneesh V <aneesh@ti.com>
5#
Wolfgang Denk1a459662013-07-08 09:37:19 +02006# SPDX-License-Identifier: GPL-2.0+
Tom Rini47f7bca2012-08-13 12:03:19 -07007#
8# Based on common/Makefile.
9#
10
Tom Rini47f7bca2012-08-13 12:03:19 -070011ifdef CONFIG_SPL_BUILD
Masahiro Yamada0ccf54c2013-10-17 17:34:59 +090012obj-$(CONFIG_SPL_FRAMEWORK) += spl.o
13obj-$(CONFIG_SPL_NOR_SUPPORT) += spl_nor.o
14obj-$(CONFIG_SPL_YMODEM_SUPPORT) += spl_ymodem.o
15obj-$(CONFIG_SPL_NAND_SUPPORT) += spl_nand.o
16obj-$(CONFIG_SPL_ONENAND_SUPPORT) += spl_onenand.o
17obj-$(CONFIG_SPL_NET_SUPPORT) += spl_net.o
18obj-$(CONFIG_SPL_MMC_SUPPORT) += spl_mmc.o
Dan Murphy8cffe5b2014-01-16 11:23:30 -060019obj-$(CONFIG_SPL_USB_SUPPORT) += spl_usb.o
Dan Murphy773b5942014-01-16 11:23:29 -060020obj-$(CONFIG_SPL_FAT_SUPPORT) += spl_fat.o
Dan Murphyfff40a72014-02-03 06:59:01 -060021obj-$(CONFIG_SPL_SATA_SUPPORT) += spl_sata.o
Tom Rini47f7bca2012-08-13 12:03:19 -070022endif