Files
MSE-CSEL/src/06-mini-project/justfile
T
2026-06-06 22:17:05 +02:00

23 lines
292 B
Makefile

mod kernel
mod daemon
mod cli
@default:
just --list
@build:
just kernel::build
just daemon::build
just cli::build
@install:
just kernel::install
just cli::install
@clean:
just kernel::clean
just daemon::clean
just cli::clean
@all: clean build install