summaryrefslogtreecommitdiff
path: root/sys/kern
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2025-11-15 15:57:46 -0500
committerIan Moffett <ian@osmora.org>2025-11-15 15:57:46 -0500
commit4fbce6328476345d62998e19187e6076feb02515 (patch)
tree2a907ed602a758c4d3f1c2955eab271966564837 /sys/kern
parent303435c6727a37f78ce58749518a039332bf613e (diff)
kern: lib: Add OSMORA base libs
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/kern')
-rw-r--r--sys/kern/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/kern/Makefile b/sys/kern/Makefile
index ed0380a..c5cc820 100644
--- a/sys/kern/Makefile
+++ b/sys/kern/Makefile
@@ -2,6 +2,7 @@
override PROMPT := printf "%s\t\t%s\n"
CFILES = $(shell find . -name "*.c")
+CFILES += $(shell find ../lib -name "*.c")
OFILES = $(CFILES:.c=.o)
CC =
SYS_CFLAGS =
@@ -11,4 +12,4 @@ all: $(OFILES)
%.o: %.c
$(PROMPT) " [CC] " $<
- $(CC) -c $< $(SYS_CFLAGS) -I../inc/ -o $@
+ $(CC) -c $< $(SYS_CFLAGS) -I../inc/ -I../inc/lib -o $@