21 lines
265 B
Makefile
21 lines
265 B
Makefile
default:
|
|
just --list
|
|
|
|
|
|
# Build from scratch
|
|
build:
|
|
cargo build --release
|
|
make nms
|
|
|
|
|
|
# Clean all project files
|
|
clean:
|
|
rm -rf obj
|
|
rm -rf bin
|
|
cargo clean
|
|
|
|
|
|
# A sample run of the program
|
|
sample_run *args:
|
|
cat Cargo.toml | ./bin/nms {{args}}
|