jx/Makefile
Matthew Rich 6e21966737
Some checks failed
Lint / golangci-lint (push) Failing after 10m10s
Declarative Tests / test (push) Failing after 1m8s
add basic build steps
2024-03-27 13:46:17 -07:00

8 lines
131 B
Makefile

LDFLAGS?=--ldflags '-extldflags "-static"'
export CGO_ENABLED=0
build: decl
decl:
go build -o decl $(LDFLAGS) ./cmd/cli/main.go