17 lines
168 B
Makefile
17 lines
168 B
Makefile
default:
|
|
list
|
|
|
|
run:
|
|
RUST_LOG=debug cargo run
|
|
|
|
build:
|
|
cargo build
|
|
|
|
watch:
|
|
RUST_LOG=debug cargo watch -- cargo run
|
|
|
|
|
|
|
|
alias r := run
|
|
alias b := build
|