7 lines
125 B
Makefile
7 lines
125 B
Makefile
|
GIN := jsoniter
|
||
|
BIN := node-status
|
||
|
|
||
|
.PHONY: build
|
||
|
build:
|
||
|
CGO_ENABLED=0 go build -tags=${GIN} -o ${BIN} cmd/node-status/*.go
|