diff options
author | Ian Moffett <ian@osmora.org> | 2025-09-15 01:50:08 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-09-15 01:50:08 -0400 |
commit | 51727d06791a071f1b5d69f6a91345da9776b081 (patch) | |
tree | 8ba879f4ed49352cda38dafb51a7e99226a145bf /src/sys/os/Makefile | |
parent | 93e112d3d419ed2cb63cd3d3fa049d0a797aa3e1 (diff) |
kern: io: Implement initial console logic
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 f5d1530..c5de3ed 100644 --- a/src/sys/os/Makefile +++ b/src/sys/os/Makefile @@ -8,6 +8,7 @@ CFLAGS = -I../include/ -I../include/lib/ -I../target/header/ $(MI_CFLAGS) -O0 CFILES = $(shell find . -name "*.c") CFILES += $(shell find ../vm -name "*.c") CFILES += $(shell find ../lib -name "*.c") +CFILES += $(shell find ../io -name "*.c") DEPS = $(CFILES:.c=.d) OBJECTS = $(CFILES:%.c=%.o) |