12 lines
369 B
Makefile
12 lines
369 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright (C) 2012 Samsung Electronics
|
|
# Lukasz Majewski <l.majewski@samsung.com>
|
|
|
|
obj-$(CONFIG_$(SPL_)DFU) += dfu.o
|
|
obj-$(CONFIG_$(SPL_)DFU_MMC) += dfu_mmc.o
|
|
obj-$(CONFIG_$(SPL_)DFU_NAND) += dfu_nand.o
|
|
obj-$(CONFIG_$(SPL_)DFU_RAM) += dfu_ram.o
|
|
obj-$(CONFIG_$(SPL_)DFU_SF) += dfu_sf.o
|
|
obj-$(CONFIG_$(SPL_)DFU_TFTP) += dfu_tftp.o
|