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