aboutsummaryrefslogtreecommitdiffstats
path: root/roms/u-boot/drivers/dfu/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'roms/u-boot/drivers/dfu/Makefile')
-rw-r--r--roms/u-boot/drivers/dfu/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/roms/u-boot/drivers/dfu/Makefile b/roms/u-boot/drivers/dfu/Makefile
new file mode 100644
index 000000000..dfbf64da6
--- /dev/null
+++ b/roms/u-boot/drivers/dfu/Makefile
@@ -0,0 +1,13 @@
+# 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_MTD) += dfu_mtd.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_WRITE_ALT) += dfu_alt.o
+obj-$(CONFIG_$(SPL_)DFU_VIRT) += dfu_virt.o