Include.mk in kern and kern/libkern

This commit is contained in:
Imbus 2025-09-02 04:03:07 +02:00
parent c38a0cbf41
commit 056ff77c55
2 changed files with 14 additions and 0 deletions

9
kern/include.mk Normal file
View file

@ -0,0 +1,9 @@
KERN_SRC := $(wildcard kern/*.c)
KERN_SRC += $(wildcard kern/*.S)
KERN_OBJ := $(KERN_SRC:.c=.o)
KERN_OBJ := $(KERN_OBJ:.S=.o)
include kern/libkern/include.mk
KERN_OBJ += $(LIBKERN_OBJ)