Skip to content
Snippets Groups Projects
go.mk 616 B
Newer Older
#############################################################################################
#############################################################################################
##
## COMMANDS GO
##
#############################################################################################
#############################################################################################

# path and binaries
GO               := go

EXECUTABLES = $(EXECUTABLES:-) $(GO); 

ifeq ($(shell command -v $(GO) 2> /dev/null),)
  $(error "go is not installed. Please install go <https://go.dev/doc/install>")
endif