Files
wolfssl/wrapper/rust/wolfssl-wolfcrypt/Makefile
T
2026-02-04 14:32:05 -05:00

18 lines
223 B
Makefile

.PHONY: all
all:
cargo build
cargo clippy
cargo doc
.PHONY: test
test:
cargo test -- --test-threads=1
.PHONY: testfips
testfips:
cargo test --lib --bins --tests -- --test-threads=1
.PHONY: clean
clean:
cargo clean