Files
gingko/justfile
2026-04-27 23:45:02 +00:00

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"