jx/Makefile

11 lines
153 B
Makefile
Raw Normal View History

2024-03-27 20:46:17 +00:00
LDFLAGS?=--ldflags '-extldflags "-static"'
export CGO_ENABLED=0
build: decl
decl:
go build -o decl $(LDFLAGS) ./cmd/cli/main.go
2024-03-27 23:08:13 +00:00
test:
go test ./...