containerd/vendor/github.com/mistifyio/go-zfs/v3/Makefile
Akihiro Suda 778defa31f
Add back ZFS snapshotter
Fix issue 10889

Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
2024-10-25 00:10:20 +09:00

20 lines
517 B
Makefile

help: ## Print this help
@grep --no-filename -E '^[a-zA-Z0-9_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sed 's/:.*## /·/' | sort | column -t -W 2 -s '·' -c $(shell tput cols)
all: test ## Run tests
-include rules.mk
-include lint.mk
test: ## Run tests
go test ./...
verify: gofumpt prettier lint ## Verify code style, is lint free, freshness ...
git diff | (! grep .)
fix: gofumpt-fix prettier-fix ## Fix code formatting errors
tools: ${toolsBins} ## Build Go based build tools
.PHONY: all help test tools verify