summaryrefslogtreecommitdiff
path: root/src/sys/os/Makefile
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2025-10-14 19:55:36 -0400
committerIan Moffett <ian@osmora.org>2025-10-14 19:55:36 -0400
commit458e7c3bf593489440ddbfdd82d2fb108eae3a6f (patch)
treea59252c9c5117ddc40e9773533ce9fd24dd2ce54 /src/sys/os/Makefile
parent86e794c18be111aed29d20fdd95fdbcbd6cf7320 (diff)
kern: Add initial DMS framework
DMS stands for Disk Management and Supervision, drivers can register themselves to DMS so that they can be looked up and operated on. Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'src/sys/os/Makefile')
-rw-r--r--src/sys/os/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sys/os/Makefile b/src/sys/os/Makefile
index 67965ec..56543e5 100644
--- a/src/sys/os/Makefile
+++ b/src/sys/os/Makefile
@@ -14,6 +14,7 @@ CFILES += $(shell find ../acpi -name "*.c")
CFILES += $(shell find ../compat -name "*.c")
CFILES += $(shell find ../fs -name "*.c")
CFILES += $(shell find ../np -name "*.c")
+CFILES += $(shell find ../dms -name "*.c")
DEPS = $(CFILES:.c=.d)
OBJECTS = $(CFILES:%.c=%.o)