Hello user process

This commit is contained in:
2025-09-01 23:22:47 +02:00
parent 13ab117b1b
commit 2015e0e0aa
28 changed files with 744 additions and 65 deletions

View File

@ -1,7 +1,10 @@
.PHONY: all clean prepare cleanall iso base
.PHONY: clean prepare cleanall iso base kernel user
all:
make -C kernel all
kernel:
make -C kernel ROOT=$(PWD) all
user:
make -C user ROOT=$(PWD) all
prepare:
if [ ! -d limine ]; then \
@ -13,10 +16,10 @@ prepare:
cleanall:
make clean
rm -rf limine
rm -rf littlefs-fuse
clean:
make -C kernel clean
make -C user clean
rm -f mop2.iso base.img
base: