1
proto/Makefile

26 lines
440 B
Makefile
Raw Normal View History

2023-12-29 20:01:47 +00:00
define HELP_TEXT
Welcome!
Targets:
help provides help text
deps resolve dependencies
lint lint source for errors or breaking changes
legal prepends license to source code
endef
export HELP_TEXT
help:
@echo "$$HELP_TEXT"
deps:
buf mod update
2023-12-28 23:45:50 +00:00
lint:
buf lint
addlicense -check -f ./legal/header.txt -skip yaml -skip yml -skip xml .
legal: .legal
.legal:
addlicense -f ./legal/header.txt -skip yaml -skip yml -skip xml .