no-more-secrets-rust/justfile

21 lines
265 B
Makefile
Raw Normal View History

2023-07-23 11:01:31 -07:00
default:
just --list
2023-07-23 19:52:25 -07:00
# Build from scratch
2023-07-23 11:01:31 -07:00
build:
cargo build --release
make nms
2023-07-23 19:52:25 -07:00
# 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}}