From 9ae4315557c894b211e1d47e77a846066ebff5bb Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Tue, 30 Sep 2025 20:45:13 -0400 Subject: kern: Add initial pirho compiler sources The pirho compiler is a ring-0 compiler used to compile core parts of the kernel during updates and installs from the initramfs. Signed-off-by: Ian Moffett --- src/sys/os/Makefile | 1 + 1 file changed, 1 insertion(+) (limited to 'src/sys/os') diff --git a/src/sys/os/Makefile b/src/sys/os/Makefile index 0cd7817..67965ec 100644 --- a/src/sys/os/Makefile +++ b/src/sys/os/Makefile @@ -13,6 +13,7 @@ CFILES += $(shell find ../io -name "*.c") CFILES += $(shell find ../acpi -name "*.c") CFILES += $(shell find ../compat -name "*.c") CFILES += $(shell find ../fs -name "*.c") +CFILES += $(shell find ../np -name "*.c") DEPS = $(CFILES:.c=.d) OBJECTS = $(CFILES:%.c=%.o) -- cgit v1.2.3