frostfs-sdk-java/Makefile

22 lines
396 B
Makefile
Raw Normal View History

2024-10-25 13:43:50 +00:00
#!/usr/bin/make -f
SHELL=bash
include help.mk
.PHONY: verify
# Regenerate documentation for proto files:
verify:
mvn clean verify
# Activate pre-commit hooks
pre-commit:
pre-commit install --hook-type pre-commit
# Deactivate pre-commit hooks
unpre-commit:
pre-commit uninstall --hook-type pre-commit
# Run pre-commit hooks
pre-commit-run:
@pre-commit run --all-files --hook-stage manual