mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-21 00:06:32 +00:00
将分配簇的功能单独独立成一个函数
This commit is contained in:
20
kernel/filesystem/Makefile
Normal file
20
kernel/filesystem/Makefile
Normal file
@ -0,0 +1,20 @@
|
||||
|
||||
CFLAGS += -I .
|
||||
|
||||
all: fat32.o MBR.o VFS.o fat_ent.o
|
||||
|
||||
|
||||
fat32.o: fat32/fat32.c
|
||||
gcc $(CFLAGS) -c fat32/fat32.c -o fat32/fat32.o
|
||||
|
||||
MBR.o: MBR.c
|
||||
gcc $(CFLAGS) -c MBR.c -o MBR.o
|
||||
|
||||
VFS.o: VFS/VFS.c
|
||||
gcc $(CFLAGS) -c VFS/VFS.c -o VFS/VFS.o
|
||||
|
||||
fat_ent.o: fat32/fat_ent.c
|
||||
gcc $(CFLAGS) -c fat32/fat_ent.c -o fat32/fat_ent.o
|
||||
|
||||
clean:
|
||||
echo "Done."
|
Reference in New Issue
Block a user