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

5
kern/libkern/include.mk Normal file
View file

@ -0,0 +1,5 @@
LIBKERN_SRC := $(wildcard kern/libkern/*.c)
LIBKERN_SRC += $(wildcard kern/libkern/*.S)
LIBKERN_OBJ := $(LIBKERN_SRC:.c=.o)
LIBKERN_OBJ := $(LIBKERN_OBJ:.S=.o)