Vendor things

This commit is contained in:
John Doty 2024-03-08 11:03:01 -08:00
parent 5deceec006
commit 977e3c17e5
19434 changed files with 10682014 additions and 0 deletions

32
third-party/vendor/debugid/Makefile vendored Normal file
View 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