1
0

refactore(MP/kernel): use just module

This commit is contained in:
2026-05-29 16:46:38 +00:00
parent 84cebb07a1
commit 79480a37ef
2 changed files with 18 additions and 4 deletions

View File

@@ -1,10 +1,13 @@
mod kernel
@default:
just --list
@build:
make
just kernel::build
@clean:
rm -rf build
rm -rf .obj
rm -f -- mini-project
just kernel::clean
rm -rf build
rm -rf .obj
rm -f -- mini-project

View File

@@ -0,0 +1,11 @@
@default:
just --list
@build:
make
@install:
make install
@clean:
make clean