将具体磁盘类型与fat32文件系统进行分离

This commit is contained in:
fslongjin
2022-09-06 14:10:17 +08:00
parent 0fcba99282
commit 339053a20e
23 changed files with 307 additions and 138 deletions

View File

@ -0,0 +1,17 @@
CFLAGS += -I .
kernel_fs_rootfs_objs:= $(shell find ./*.c)
ECHO:
@echo "$@"
$(kernel_fs_rootfs_objs): ECHO
gcc $(CFLAGS) -c $@ -o $@.o
all: $(kernel_fs_rootfs_objs)