summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2025-09-30 20:45:13 -0400
committerIan Moffett <ian@osmora.org>2025-09-30 20:54:02 -0400
commit9ae4315557c894b211e1d47e77a846066ebff5bb (patch)
treeb2fea372da42f6bafa7f585c23dba177c7053324 /src/Makefile
parentd5884fab8d7f0556db4d1f0635107238be82c0dc (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/Makefile')
-rw-r--r--src/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile
index 9a2409c..5b6f727 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -39,10 +39,12 @@ lib:
root:
mkdir -p $(SYSROOT)/
mkdir -p $(SYSROOT)/boot/
+ mkdir -p $(SYSROOT)/boot/np/
mkdir -p $(SYSROOT)/usr/include/
mkdir -p $(SYSROOT)/usr/bin/
mkdir -p sys/target/header/
rsync -av sys/include/arch/$(TARGET)/ sys/target/header/machine/
+ rsync -av sys/np/sample/*.np $(SYSROOT)/boot/np/
.PHONY: sysroot
image: