mirror of
https://github.com/darkrenaissance/darkfi.git
synced 2026-04-28 03:00:18 -04:00
18 lines
256 B
Makefile
18 lines
256 B
Makefile
.POSIX:
|
|
|
|
CARGO = cargo
|
|
|
|
all:
|
|
$(CARGO) build --release --all-features
|
|
|
|
test:
|
|
$(CARGO) test --release --all-features
|
|
|
|
fix:
|
|
$(CARGO) fix --release --all-features --allow-dirty
|
|
|
|
clippy:
|
|
$(CARGO) clippy --release --all-features
|
|
|
|
.PHONY: all test fix clippy
|