22 lines
396 B
Makefile
22 lines
396 B
Makefile
|
#!/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
|