diff options
Diffstat (limited to 'src/roms/u-boot/drivers/dfu/Makefile')
-rw-r--r-- | src/roms/u-boot/drivers/dfu/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/roms/u-boot/drivers/dfu/Makefile b/src/roms/u-boot/drivers/dfu/Makefile new file mode 100644 index 0000000..def628d --- /dev/null +++ b/src/roms/u-boot/drivers/dfu/Makefile @@ -0,0 +1,11 @@ +# +# Copyright (C) 2012 Samsung Electronics +# Lukasz Majewski <l.majewski@samsung.com> +# +# SPDX-License-Identifier: GPL-2.0+ +# + +obj-$(CONFIG_DFU_FUNCTION) += dfu.o +obj-$(CONFIG_DFU_MMC) += dfu_mmc.o +obj-$(CONFIG_DFU_NAND) += dfu_nand.o +obj-$(CONFIG_DFU_RAM) += dfu_ram.o |