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