You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/internal/cmd/gencli/Makefile

13 lines
298 B

# Determine this makefile's path.
# Be sure to place this BEFORE `include` directives, if any.
THIS_FILE := $(lastword $(MAKEFILE_LIST))
export CLI_GEN_BASEPATH := ${GEN_BASEPATH}/internal/cmd/commands
cli:
go run .
goimports -w ${CLI_GEN_BASEPATH}
gofumpt -w ${CLI_GEN_BASEPATH}
.PHONY: cli