tagger/Makefile
2024-04-04 13:30:41 -07:00

12 lines
203 B
Makefile

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