mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-09 15:26:47 +00:00
20 lines
334 B
Makefile
20 lines
334 B
Makefile
|
|
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."
|