diff options
Diffstat (limited to 'qemu/roms/u-boot/fs/fat/Makefile')
-rw-r--r-- | qemu/roms/u-boot/fs/fat/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/qemu/roms/u-boot/fs/fat/Makefile b/qemu/roms/u-boot/fs/fat/Makefile new file mode 100644 index 000000000..b60e8486c --- /dev/null +++ b/qemu/roms/u-boot/fs/fat/Makefile @@ -0,0 +1,11 @@ +# +# +# SPDX-License-Identifier: GPL-2.0+ +# + +obj-$(CONFIG_FS_FAT) := fat.o +obj-$(CONFIG_FAT_WRITE):= fat_write.o + +ifndef CONFIG_SPL_BUILD +obj-$(CONFIG_FS_FAT) += file.o +endif |