Skip to content

Commit

Permalink
makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
bonedaddy committed Aug 4, 2022
1 parent f1bd346 commit 52e3265
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
.PHONY: build
build:
(cargo build --bin sighashdb-cli; cp target/debug/sighashdb-cli .)
(cargo build --bin sighashdb-cli; cp target/debug/sighashdb-cli .)
.PHONY: fmt
fmt:
find -type f -name "*.rs" -not -path "*target*" -exec rustfmt --edition 2021 {} \;
.PHONY: lint
lint:
cargo +nightly clippy --fix -Z unstable-options --release --all

0 comments on commit 52e3265

Please sign in to comment.