Files
wolfssl/wrapper/rust/wolfssl-wolfcrypt/Makefile
T

18 lines
223 B
Makefile
Raw Normal View History

2025-09-10 15:30:03 -04:00
.PHONY: all
all:
cargo build
cargo clippy
cargo doc
.PHONY: test
test:
2026-02-03 08:38:47 -05:00
cargo test -- --test-threads=1
.PHONY: testfips
testfips:
cargo test --lib --bins --tests -- --test-threads=1
2025-09-10 15:30:03 -04:00
.PHONY: clean
clean:
cargo clean