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>
6 lines
125 B
Makefile
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
|