14 lines
336 B
Makefile
14 lines
336 B
Makefile
default:
|
|
@just --list --justfile {{justfile()}}
|
|
|
|
build: build-core build-cli
|
|
|
|
build-core:
|
|
cargo build --manifest-path "core/Cargo.toml" --target-dir "target"
|
|
|
|
build-cli: build-core
|
|
cargo build --manifest-path "cli/Cargo.toml" --target-dir "target"
|
|
|
|
run:
|
|
cargo run --manifest-path "cli/Cargo.toml" --target-dir "target"
|