diff options
author | Ian Moffett <ian@osmora.org> | 2025-09-20 20:51:50 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-09-20 20:51:50 -0400 |
commit | 954389acc4fdda1b6dbd3e9c3cf6d5767af40a84 (patch) | |
tree | 4785238f8b1f97a2f57e5b9ea521ef4671c000ae /src/sys/os/Makefile | |
parent | aac5073d768926322ec38ca7153fd8f14e20a88e (diff) |
kern: proc: Move sys_exit() to sys/compat/unix/*
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 ed8ac6e..de73afd 100644 --- a/src/sys/os/Makefile +++ b/src/sys/os/Makefile @@ -11,6 +11,7 @@ CFILES += $(shell find ../vm -name "*.c") CFILES += $(shell find ../lib -name "*.c") CFILES += $(shell find ../io -name "*.c") CFILES += $(shell find ../acpi -name "*.c") +CFILES += $(shell find ../compat -name "*.c") DEPS = $(CFILES:.c=.d) OBJECTS = $(CFILES:%.c=%.o) |