Vendor things
This commit is contained in:
parent
5deceec006
commit
977e3c17e5
19434 changed files with 10682014 additions and 0 deletions
32
third-party/vendor/debugid/Makefile
vendored
Normal file
32
third-party/vendor/debugid/Makefile
vendored
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
all: style lint test
|
||||
.PHONY: all
|
||||
|
||||
check: style lint
|
||||
.PHONY: check
|
||||
|
||||
build:
|
||||
@cargo build
|
||||
.PHONY: build
|
||||
|
||||
doc:
|
||||
@cargo doc
|
||||
.PHONY: doc
|
||||
|
||||
test:
|
||||
@cargo test
|
||||
.PHONY: test
|
||||
|
||||
style:
|
||||
@rustup component add rustfmt --toolchain stable 2> /dev/null
|
||||
cargo +stable fmt -- --check
|
||||
.PHONY: style
|
||||
|
||||
format:
|
||||
@rustup component add rustfmt --toolchain stable 2> /dev/null
|
||||
@cargo +stable fmt
|
||||
.PHONY: format
|
||||
|
||||
lint:
|
||||
@rustup component add clippy --toolchain stable 2> /dev/null
|
||||
@cargo +stable clippy --tests -- -D clippy::all
|
||||
.PHONY: lint
|
||||
Loading…
Add table
Add a link
Reference in a new issue