7 lines
96 B
Makefile
7 lines
96 B
Makefile
|
.PHONY: build
|
||
|
|
||
|
BINARY="ke"
|
||
|
|
||
|
build:
|
||
|
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o ${BINARY}
|