mirror of
https://github.com/scroll-tech/scroll.git
synced 2026-01-09 14:08:03 -05:00
17 lines
283 B
Makefile
17 lines
283 B
Makefile
.PHONY: help fmt clippy test test-ci test-all
|
|
|
|
build:
|
|
@cargo build --release
|
|
@mkdir -p ../lib
|
|
@cp -f target/release/libzkp.so ../lib/
|
|
|
|
fmt:
|
|
@cargo fmt --all -- --check
|
|
|
|
clean:
|
|
@rm -f ../lib/libzkp.so
|
|
|
|
clippy:
|
|
@cargo check --all-features
|
|
@cargo clippy --release -- -D warnings
|