diff options
author | Ian Moffett <ian@osmora.org> | 2025-09-14 15:01:34 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-09-14 15:01:34 -0400 |
commit | 1c0dfd67e7c181951f490f4e58693582f2c3871a (patch) | |
tree | 76fd404af48d6fca09d91afff450e4005bf56d49 /src/sys/os/Makefile | |
parent | 5c5212939765f421e5bb39f93b67430f8dfab6ae (diff) |
build: Do not have per subsystem libs
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'src/sys/os/Makefile')
-rw-r--r-- | src/sys/os/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sys/os/Makefile b/src/sys/os/Makefile index 47211b3..c0bd363 100644 --- a/src/sys/os/Makefile +++ b/src/sys/os/Makefile @@ -6,6 +6,7 @@ override PROMPT := printf "%s\t\t%s\n" TARGET_LIB = ../target/libkern.a CFLAGS = -I../include/ -I../include/lib/ -I../target/header/ $(MI_CFLAGS) -O0 CFILES = $(shell find . -name "*.c") +CFILES += $(shell find ../lib -name "*.c") DEPS = $(CFILES:.c=.d) OBJECTS = $(CFILES:%.c=%.o) |