jx/Makefile
Matthew Rich 9f168cff85
Some checks failed
Lint / golangci-lint (push) Failing after 10m6s
Declarative Tests / test (push) Successful in 1m13s
fix lint errors
2024-04-21 23:24:38 -07:00

11 lines
147 B
Makefile

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