VictoriaMetrics/vendor/github.com/urfave/cli/v2/Makefile

27 lines
848 B
Makefile
Raw Normal View History

2022-05-20 11:45:24 +00:00
# NOTE: this Makefile is meant to provide a simplified entry point for humans to
# run all of the critical steps to verify one's changes are harmonious in
# nature. Keeping target bodies to one line each and abstaining from make magic
# are very important so that maintainers and contributors can focus their
# attention on files that are primarily Go.
2022-09-13 13:44:44 +00:00
GO_RUN_BUILD := go run internal/build/build.go
2022-05-20 11:45:24 +00:00
.PHONY: all
2022-10-10 19:03:45 +00:00
all: generate vet test check-binary-size gfmrun yamlfmt v2diff
2022-05-20 11:45:24 +00:00
# NOTE: this is a special catch-all rule to run any of the commands
# defined in internal/build/build.go with optional arguments passed
# via GFLAGS (global flags) and FLAGS (command-specific flags), e.g.:
#
# $ make test GFLAGS='--packages cli'
%:
2022-09-13 13:44:44 +00:00
$(GO_RUN_BUILD) $(GFLAGS) $* $(FLAGS)
2022-05-20 11:45:24 +00:00
.PHONY: docs
docs:
mkdocs build
.PHONY: serve-docs
serve-docs:
mkdocs serve