You've already forked interchange
mirror of
https://github.com/trussed-dev/interchange.git
synced 2026-06-20 04:16:35 -07:00
10 lines
192 B
Makefile
10 lines
192 B
Makefile
.PHONY= test, clippy
|
|
|
|
test:
|
|
cargo t
|
|
RUSTFLAGS='--cfg loom' cargo t loom
|
|
|
|
clippy:
|
|
cargo clippy --all-targets --all-features
|
|
RUSTFLAGS='--cfg loom' cargo clippy --all-targets --all-features
|