diff options
Diffstat (limited to 'src/roms/u-boot/fs/fat/Makefile')
-rw-r--r-- | src/roms/u-boot/fs/fat/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/roms/u-boot/fs/fat/Makefile b/src/roms/u-boot/fs/fat/Makefile new file mode 100644 index 0000000..b60e848 --- /dev/null +++ b/src/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 |