Files
u-boot/fs/fat/Makefile
Simon Glass cb30dcb8b6 fat: Separate fat.c from fat_write.c
Currently fat_write.c includes fat.c directly, which is unusual and
makes the code harder to maintain. Use the internal header file to hold
shared functions, to avoid this.

Co-developed-by: Claude <noreply@anthropic.com>
Signed-off-by: Simon Glass <simon.glass@canonical.com>
2025-11-12 18:39:11 -07:00

6 lines
125 B
Makefile

# SPDX-License-Identifier: GPL-2.0+
#
obj-$(CONFIG_$(PHASE_)FS_FAT) = fat.o
obj-$(CONFIG_$(PHASE_)FAT_WRITE) += fat_write.o