diff options
author | Ian Moffett <ian@osmora.org> | 2025-09-30 20:45:13 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-09-30 20:54:02 -0400 |
commit | 9ae4315557c894b211e1d47e77a846066ebff5bb (patch) | |
tree | b2fea372da42f6bafa7f585c23dba177c7053324 /src/sys/os | |
parent | d5884fab8d7f0556db4d1f0635107238be82c0dc (diff) |
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 <ian@osmora.org>
Diffstat (limited to 'src/sys/os')
-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 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) |