jx/Makefile
Matthew Rich 638f34e2e2
Some checks failed
Declarative Tests / test (push) Waiting to run
Lint / golangci-lint (push) Has been cancelled
update readme with testing steps
2024-03-27 16:08:13 -07:00

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 ./...