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/api/genapi/Makefile

13 lines
280 B

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