11 lines
89 B
Makefile
11 lines
89 B
Makefile
|
|
.PHONY: build run format
|
||
|
|
|
||
|
|
build:
|
||
|
|
cargo build
|
||
|
|
|
||
|
|
run: build
|
||
|
|
cargo run
|
||
|
|
|
||
|
|
format:
|
||
|
|
cargo fmt
|