mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-09 19:36:47 +00:00
18 lines
176 B
Makefile
18 lines
176 B
Makefile
|
|
CFLAGS += -I .
|
|
|
|
|
|
kernel_fs_fat32_objs:= $(shell find ./*.c)
|
|
|
|
|
|
ECHO:
|
|
@echo "$@"
|
|
|
|
|
|
$(kernel_fs_fat32_objs): ECHO
|
|
$(CC) $(CFLAGS) -c $@ -o $@.o
|
|
|
|
|
|
all: $(kernel_fs_fat32_objs)
|
|
|