11 lines
153 B
Makefile
11 lines
153 B
Makefile
LDFLAGS?=--ldflags '-extldflags "-static"'
|
|
export CGO_ENABLED=0
|
|
|
|
build: decl
|
|
|
|
decl:
|
|
go build -o decl $(LDFLAGS) ./cmd/cli/main.go
|
|
|
|
test:
|
|
go test ./...
|