14 lines
119 B
Makefile
14 lines
119 B
Makefile
BUILD=cargo build
|
|
build:
|
|
$(BUILD)
|
|
|
|
test:
|
|
cargo test
|
|
|
|
release:
|
|
$(BUILD) --release
|
|
|
|
run:
|
|
# Running server
|
|
cargo run
|