mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2026-07-05 09:30:51 +02:00
18 lines
223 B
Makefile
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
|